diff options
author | 0neGal <mail@0negal.com> | 2022-08-09 08:44:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-09 08:44:30 +0200 |
commit | 5106d9ed409a3cc91a7755f961fab1bf91d8b7fb (patch) | |
tree | db6ac0c318b5a4c28d70be210ae29bf9730e11ac /src/app/launcher.js | |
parent | d124f8165f2fa690269c28770b35103eb2791a70 (diff) | |
parent | 7d84141d4cf91b02d5219a3e0f34b55e9d9f6247 (diff) | |
download | Viper-5106d9ed409a3cc91a7755f961fab1bf91d8b7fb.tar.gz Viper-5106d9ed409a3cc91a7755f961fab1bf91d8b7fb.zip |
Merge pull request #145 from Alystrasz/feat/no-internet-handling
feat: No internet handling
Diffstat (limited to 'src/app/launcher.js')
-rw-r--r-- | src/app/launcher.js | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/app/launcher.js b/src/app/launcher.js index fbeb703..e1dbbe0 100644 --- a/src/app/launcher.js +++ b/src/app/launcher.js @@ -26,13 +26,17 @@ function page(page) { function formatRelease(notes) { let content = ""; - for (let release of notes) { - if (release.prerelease) {continue} - content += "# " + release.name + "\n\n" + release.body + "\n\n\n"; + if (notes.length === 1) { + content = notes[0]; + } else { + for (let release of notes) { + if (release.prerelease) {continue} + content += "# " + release.name + "\n\n" + release.body + "\n\n\n"; + } + + content = content.replaceAll(/\@(\S+)/g, `<a href="https://github.com/$1">@$1</a>`); } - content = content.replaceAll(/\@(\S+)/g, `<a href="https://github.com/$1">@$1</a>`); - return markdown(content, { breaks: true }); |