aboutsummaryrefslogtreecommitdiff
path: root/test/command/pandoc-citeproc-13.md
blob: 7d05aee0a13da817dd6ebcd62ee8b9893f24aff2 (plain)
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
```
% pandoc --citeproc -t markdown-citations
---
csl: 'command/chicago-note-bibliography.csl'
references:
- author:
    family: Author
    given:
    - Ann
  container-title: Journal
  id: item1
  issued:
  - year: 2011
  title: Title
  type: 'article-newspaper'
---

Foo [@item1].
^D
Foo.[^1]

::: {#refs .references .csl-bib-body .hanging-indent}
::: {#ref-item1 .csl-entry}
Author, Ann. "Title." *Journal*, 2011.
:::
:::

[^1]: Author, "Title."
```