diff options
author | (quasar) nebula <towerofnix@gmail.com> | 2020-12-11 12:52:31 -0400 |
---|---|---|
committer | (quasar) nebula <towerofnix@gmail.com> | 2020-12-11 12:52:31 -0400 |
commit | 57ed5af37ed3cd8be8b38bf9666bc5fa739ebec1 (patch) | |
tree | 3511dae642e47769846fefcb81bac374a1f685cd | |
parent | d42c5dfc610a1953f798f87a0b8861d8fa5dca9d (diff) |
plausibly final release build???
nope, not quite! getting there though!!
-rw-r--r-- | upd8.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/upd8.js b/upd8.js index 122dc600..8c3afe41 100644 --- a/upd8.js +++ b/upd8.js @@ -1761,7 +1761,9 @@ async function writeArtistPage(artist) { <h1>${name}</h1> ${note && fixWS` <p>Note:</p> - <blockquote>${note}</blockquote> + <blockquote> + ${transformMultiline(note)} + </blockquote> <hr> `} ${urls.length && `<p>Visit on ${joinNoOxford(urls.map(fancifyURL), 'or')}.</p>`} @@ -3275,7 +3277,7 @@ async function main() { await writeMiscellaneousPages(); await writeListingPages(); await writeTagPages(); - // await progressPromiseAll(`Writing album & track pages.`, queue(albumData.map(album => writeIndexAndTrackPagesForAlbum(album)).reduce((a, b) => a.concat(b)))); + await progressPromiseAll(`Writing album & track pages.`, queue(albumData.map(album => writeIndexAndTrackPagesForAlbum(album)).reduce((a, b) => a.concat(b)))); await writeArtistPages(); await writeFlashPages(); |