aboutsummaryrefslogtreecommitdiff
path: root/test/command/pandoc-citeproc-197.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/pandoc-citeproc-197.md')
-rw-r--r--test/command/pandoc-citeproc-197.md31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/command/pandoc-citeproc-197.md b/test/command/pandoc-citeproc-197.md
new file mode 100644
index 000000000..5713d67cc
--- /dev/null
+++ b/test/command/pandoc-citeproc-197.md
@@ -0,0 +1,31 @@
+```
+% pandoc --citeproc -t markdown-citations
+---
+csl: 'command/chicago-fullnote-bibliography.csl'
+nocite: '@test'
+references:
+- editor:
+ - family: Abelard
+ given: Peter
+ id: test
+ issued:
+ date-parts:
+ - - 1989
+ publisher: Clarendon Press
+ publisher-place: Oxford
+ title: Test
+ type: book
+---
+
+This is a test [@test].
+^D
+This is a test.[^1]
+
+::: {#refs .references .csl-bib-body .hanging-indent}
+::: {#ref-test .csl-entry}
+Abelard, Peter, ed. *Test*. Oxford: Clarendon Press, 1989.
+:::
+:::
+
+[^1]: Peter Abelard, ed., *Test* (Oxford: Clarendon Press, 1989).
+```