Files
pandoc/test/command/pandoc-citeproc-416.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

952 B

% pandoc --citeproc -t markdown-citations
Blah blah [@item1; @item2; @item3].

# References {-}

---
title: The Title
references:
- id: item1
  type: article-newspaper
  author:
  - family: Doe
    given: J.
  issued:
  - year: 2010
    month: 12
    day: 13
  title: The title
- id: item2
  type: article-newspaper
  author:
  - family: Doe
    given: J.
  issued:
  - year: 2007
    month: 12
    day: 12
  - year: 2007
    month: 12
    day: 13
  title: The title
- id: item3
  type: article-newspaper
  author:
  - family: Doe
    given: J.
  issued:
  - year: 2008
  title: The title
...
^D
Blah blah (Doe 2010, 2007, 2008).

# References {#references .unnumbered}

:::::: {#refs .references .csl-bib-body .hanging-indent}
::: {#ref-item2 .csl-entry}
Doe, J. 2007. *The Title*. December 12--13.
:::

::: {#ref-item3 .csl-entry}
Doe, J. 2008. *The Title*.
:::

::: {#ref-item1 .csl-entry}
Doe, J. 2010. *The Title*. December 13.
:::
::::::