From 451171990f86c4d454109edd54eb2b8a76e9ed89 Mon Sep 17 00:00:00 2001 From: "(quasar) nebula" Date: Fri, 4 Apr 2025 21:17:49 -0300 Subject: content: transformContent:
{2,} between lyrics stanzas Hope this doesn't break anything! --- src/content/dependencies/transformContent.js | 25 ++++++------------------- 1 file changed, 6 insertions(+), 19 deletions(-) (limited to 'src') diff --git a/src/content/dependencies/transformContent.js b/src/content/dependencies/transformContent.js index 0904069f..f56a1da9 100644 --- a/src/content/dependencies/transformContent.js +++ b/src/content/dependencies/transformContent.js @@ -709,25 +709,12 @@ export default { const markedInput = extractNonTextNodes({ - getTextNodeContents(node, index) { - // First, replace line breaks that follow text content with - //
tags. - let content = node.data.replace(/(?!^)\n/gm, '
\n'); - - // Scrap line breaks that are at the end of a verse. - content = content.replace(/
$(?=\n\n)/gm, ''); - - // If the node started with a line break, and it's not the - // very first node, then whatever came before it was inline. - // (This is an assumption based on text links being basically - // the only tag that shows up in lyrics.) Since this text is - // following content that was already inline, restore that - // initial line break. - if (node.data[0] === '\n' && index !== 0) { - content = '
' + content; - } - - return content; + getTextNodeContents(node) { + // Just insert
before every line break. The resulting + // text will appear all in one paragraph - this is expected + // for lyrics, and allows for multiple lines of proportional + // space between stanzas. + return node.data.replace(/\n/g, '
\n'); }, }); -- cgit 1.3.0-6-gf8a5