« get me outta code hell

beyond canon track art anthology!! - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/upd8.js
diff options
context:
space:
mode:
authorFlorrie <towerofnix@gmail.com>2020-06-02 12:31:23 -0300
committerFlorrie <towerofnix@gmail.com>2020-06-02 12:31:23 -0300
commit957c517dd8d0abb7bc170d8999da1dbef5068f7a (patch)
treeab46a8d415357dc3995861da1c9fc42fef2bc6fd /upd8.js
parent3ddb07b3dd88ed0c7d0d25322f15f8110daba5b7 (diff)
beyond canon track art anthology!!
Diffstat (limited to 'upd8.js')
-rw-r--r--upd8.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/upd8.js b/upd8.js
index 2687eec..7720c5e 100644
--- a/upd8.js
+++ b/upd8.js
@@ -108,6 +108,7 @@ const SITE_ABOUT = fixWS`
         <li><a href="https://www.bgreco.net/hsflash.html">bgreco.net (HQ Audio Flashes)</a>: thumbnail captures for the individual Flash animations! There were a couple captures missing that I took myself, but most Flash thumbnails are from here.</a></li>
         <li>The <a href="https://homestuck-and-mspa-music.fandom.com/wiki/Homestuck_and_MSPA_Music_Wiki">Homestuck and MSPA Music Wiki</a> on Fandom: the inspiration for this wiki! I've wanted to make a more complete and explorable wiki ever since seeing it. The Fandom wiki has also been a very handy reference in putting this together, so much thanks to everyone who's worked on it!</li>
         <li>All organizers and contributors of the <a href="https://sollay-b.tumblr.com/post/188094230423/hello-a-couple-of-years-ago-allyssinian">Homestuck Vol. 5 Anthology</a> - community-made track art for <a href="album/homestuck-vol-5/index.html">Homestuck Vol. 5</a>! All of this art is <i>excellent</i>. Each track credits its respective cover artist.</li>
+        <li>Likewise for the <a href="https://hsfanmusic.skaia.net/post/619761136023257089/unofficialmspafans-we-are-proud-to-announce-the">Beyond Canon Track Art Anthology</a>!</li>
         <li>All comments on the site: I appreciate all feedback a lot! People have shared a ton of ideas and suggestions with me, and I <i>cannot</i> emphasize enough how motivating it is to share a project with like-minded folx interested in making it better with you.</li>
     </ul>
     <p><i>Feature Acknowledgements</i></p>
@@ -318,7 +319,8 @@ function transformMultiline(text) {
     const outLines = [];
 
     let inList = false;
-    for (const line of text.split(/\r|\n|\r\n/)) {
+    for (let line of text.split(/\r|\n|\r\n/)) {
+        line = line.replace(/<img src="(.*?)">/g, '<a href="$1">$&</a>');
         if (line.startsWith('- ')) {
             if (!inList) {
                 outLines.push('<ul>');