diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-10-02 18:14:34 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-10-05 10:50:31 -0300 |
commit | 3c28c1def051da7e7a89b4660504f91696b04b3d (patch) | |
tree | 6ccaad6f8c1cfdf53ca751608fe95ad9e145c1af /src/content/dependencies | |
parent | 99d748daea7645c1ffa8eb47a67387447b53bad7 (diff) |
content: generateCommentaryEntry: no absorb in heading annotation
Diffstat (limited to 'src/content/dependencies')
-rw-r--r-- | src/content/dependencies/generateCommentaryEntry.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/content/dependencies/generateCommentaryEntry.js b/src/content/dependencies/generateCommentaryEntry.js index b51d4315..9243a89c 100644 --- a/src/content/dependencies/generateCommentaryEntry.js +++ b/src/content/dependencies/generateCommentaryEntry.js @@ -75,7 +75,10 @@ export default { if (relations.annotationContent) { workingCapsule += '.withAnnotation'; workingOptions.annotation = - relations.annotationContent.slot('mode', 'inline'); + relations.annotationContent.slots({ + mode: 'inline', + absorbPunctuationFollowingExternalLinks: false, + }); } if (workingCapsule === accentCapsule) { |