Files
pandoc/test/command/pandoc-citeproc-408.md
John MacFarlane f4eca1f3fb Use latest dev citeproc and update the default CSL...
from the latest chicago-author-date.csl. (Note that this goes
from the 17th to the 18th edition.)

Update tests.
2025-07-20 00:12:15 -07:00

619 B

% pandoc --citeproc -t markdown-citations
---
references:
- id: smith1
  type: article-journal
  author:
  - family: Smith
    given: Mary
  issued:
  - year: 2019
  title: Foo

- id: smithsmith
  type: article-journal
  author:
  - family: Smith
    given: Mary
  - family: Smith
    given: John
  issued:
  - year: 2019
  title: Foo bar
...

[@smithsmith; @smith1]
^D
(Smith and Smith 2019; Smith 2019)

::::: {#refs .references .csl-bib-body .hanging-indent}
::: {#ref-smith1 .csl-entry}
Smith, Mary. 2019. *Foo*.
:::

::: {#ref-smithsmith .csl-entry}
Smith, Mary, and John Smith. 2019. *Foo Bar*.
:::
:::::