pandoc-3.8: test/command/pandoc-citeproc-371.md
```
% pandoc --citeproc -t markdown-citations
---
references:
- author:
- family: Doe
given: Jane
id: item1
status: in press
title: Title one
type: book
- author:
- family: Doe
given: Jane
id: item2
issued:
- year: 2018
title: Title two
type: book
---
Foo [@item2; @item1].
References {#references .unnumbered}
==========
^D
Foo (Doe 2018, in press).
# References {#references .unnumbered}
::::: {#refs .references .csl-bib-body .hanging-indent}
::: {#ref-item2 .csl-entry}
Doe, Jane. 2018. *Title Two*.
:::
::: {#ref-item1 .csl-entry}
Doe, Jane. In press. *Title One*.
:::
:::::
```