aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2025-08-16 20:56:52 -0700
committerJohn MacFarlane <[email protected]>2025-08-17 17:45:36 +0200
commit5e50e4e605e7d7695a07e80233d57c3704efa917 (patch)
tree22a6620b1cfead24f852c93f3b1a78d06af968f5 /test
parent2c857d379beea55210d7e130402e10a7e7b5e23c (diff)
Citeproc: don't move footnotes around em-dashes.
Closes #11046.
Diffstat (limited to 'test')
-rw-r--r--test/command/11046.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/command/11046.md b/test/command/11046.md
new file mode 100644
index 000000000..ee5ffcd3b
--- /dev/null
+++ b/test/command/11046.md
@@ -0,0 +1,19 @@
+```
+% pandoc --citeproc -t plain+smart --csl command/chicago-note-bibliography.csl
+---
+references:
+- id: doe
+ title: Title
+ type: book
+ date: 2006
+ author: John Doe
+...
+
+blah blah [@doe]---blah blah.
+^D
+blah blah[1]---blah blah.
+
+John Doe. Title, n.d.
+
+[1] John Doe, Title.
+```