diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-11-16 17:41:27 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-11-16 17:41:27 -0400 |
commit | f481591b859282e1ea5483c89552375f5570e9e5 (patch) | |
tree | 9c321bf2cf2a483d0b1a250c53d4b7cb969ad7d1 /src/content/dependencies | |
parent | 1beb0d4712962ed943a18b9aeb81b231ad26691b (diff) | |
parent | fbcfb88ea407ab76d278c28f1f0711502ab2fbf9 (diff) |
Merge branch 'commentary-entries' into album-commentary-tweaks
Diffstat (limited to 'src/content/dependencies')
-rw-r--r-- | src/content/dependencies/transformContent.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/content/dependencies/transformContent.js b/src/content/dependencies/transformContent.js index a60206c9..a85ac158 100644 --- a/src/content/dependencies/transformContent.js +++ b/src/content/dependencies/transformContent.js @@ -450,7 +450,9 @@ export default { // In inline mode, no further processing is needed! if (slots.mode === 'inline') { - return html.tags(contentFromNodes.map(node => node.data)); + return html.tags( + contentFromNodes.map(node => node.data), + {[html.joinChildren]: ''}); } // Multiline mode has a secondary processing stage where it's passed... |