aboutsummaryrefslogtreecommitdiff
path: root/test/command/pandoc-citeproc-325.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/pandoc-citeproc-325.md')
-rw-r--r--test/command/pandoc-citeproc-325.md30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/command/pandoc-citeproc-325.md b/test/command/pandoc-citeproc-325.md
new file mode 100644
index 000000000..e8f2f7e8e
--- /dev/null
+++ b/test/command/pandoc-citeproc-325.md
@@ -0,0 +1,30 @@
+```
+% pandoc --citeproc -t markdown-citations
+---
+references:
+- author:
+ - family: Smith
+ given: John
+ id: item1
+ type: book
+- author:
+ - family: Smith
+ given: John
+ id: item2
+ type: book
+---
+
+[@item1; @item2]
+^D
+(Smith, n.d.a, n.d.b)
+
+::: {#refs .references .csl-bib-body .hanging-indent}
+::: {#ref-item1 .csl-entry}
+Smith, John. n.d.a.
+:::
+
+::: {#ref-item2 .csl-entry}
+---------. n.d.b.
+:::
+:::
+```