aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2025-07-20 15:30:14 -0700
committerJohn MacFarlane <[email protected]>2025-07-20 15:30:14 -0700
commit498ef4bf24e769640863e5d81018cf53864cadb1 (patch)
treeac0498652c02d4b4fe73931ae3f3034a9c724897
parentc9c0328179a9711447b1afa0dd34a71a91a0db5c (diff)
Fix pandoc-citeproc-64 test.
It was meant to test subsequent author substitution, but the new chicago-author-date doesn't do this. So we use a different CSL.
-rw-r--r--test/command/pandoc-citeproc-64.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/command/pandoc-citeproc-64.md b/test/command/pandoc-citeproc-64.md
index a08602363..199679a2e 100644
--- a/test/command/pandoc-citeproc-64.md
+++ b/test/command/pandoc-citeproc-64.md
@@ -1,5 +1,5 @@
```
-% pandoc --citeproc -t markdown-citations
+% pandoc --citeproc -t markdown-citations --csl command/chicago-fullnote-bibliography.csl
---
bibliography:
- command/biblio.bib
@@ -7,18 +7,18 @@ nocite: '[@*]'
---
^D
-:::::: {#refs .references .csl-bib-body .hanging-indent}
-::: {#ref-item1 .csl-entry}
-Doe, John. 2005. *First Book*. Cambridge University Press.
+:::::: {#refs .references .csl-bib-body .hanging-indent entry-spacing="0"}
+::: {#ref-item2 .csl-entry}
+Doe, John. "Article." *Journal of Generic Studies* 6 (2006): 33--34.
:::
-::: {#ref-item2 .csl-entry}
-Doe, John. 2006. "Article." *Journal of Generic Studies* 6: 33--34.
+::: {#ref-item1 .csl-entry}
+---------. *First Book*. Cambridge: Cambridge University Press, 2005.
:::
::: {#ref-пункт3 .csl-entry}
-Doe, John, and Jenny Roe. 2007. "Why Water Is Wet." In *Third Book*,
-edited by Sam Smith. Oxford University Press.
+Doe, John, and Jenny Roe. "Why Water Is Wet." In *Third Book*, edited by
+Sam Smith. Oxford: Oxford University Press, 2007.
:::
::::::
```