blob: 0b5dbdd24314d46cb86dd2e1d7310d44d532045f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
```
% pandoc --citeproc -t markdown-citations
---
references:
- author:
- family: Smith
given: John
id: item1
type: book
- author:
- family: Smith
given: John
id: item2
type: book
---
[@item1; @item2]
^D
(Smith, n.d.a, n.d.b)
::::: {#refs .references .csl-bib-body .hanging-indent entry-spacing="0"}
::: {#ref-item1 .csl-entry}
Smith, John. n.d.a.
:::
::: {#ref-item2 .csl-entry}
---------. n.d.b.
:::
:::::
```
|