diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-11-16 17:38:17 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-11-16 17:38:35 -0400 |
commit | fbcfb88ea407ab76d278c28f1f0711502ab2fbf9 (patch) | |
tree | 5f27926122c751db237c3bbe42542646c186c889 /src/content/dependencies/transformContent.js | |
parent | c9c8ccfbeb6a013131dee429da0f12192364a8d0 (diff) |
content, css: quick visual fixes for commentary entries
Diffstat (limited to 'src/content/dependencies/transformContent.js')
-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 3c2c3521..dab89630 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... |