From 5426a3182395eb0ab6bd4e02b67cef1df9af6ced Mon Sep 17 00:00:00 2001 From: 0neGal Date: Tue, 3 May 2022 15:04:14 +0200 Subject: re-implements user links in release notes (#88) Instead of updating the branch it was easier to simply add this, I don't plan to add the issue/PR support, as it's complicated with no real benefit, as NS seems to already link the PR's themselves. --- src/app/launcher.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/launcher.js b/src/app/launcher.js index ed6a513..51d3a63 100644 --- a/src/app/launcher.js +++ b/src/app/launcher.js @@ -27,6 +27,8 @@ function formatRelease(notes) { content += "# " + release.name + "\n\n" + release.body + "\n\n\n"; } + content = content.replaceAll(/\@(\S+)/g, `@$1`); + return markdown(content, { breaks: true }); -- cgit v1.2.3