pandoc/test/command/7329.md
John MacFarlane 394fa9d072 Org reader: parse official org-cite citations.
We also support the older org-ref style as a fallback.
We no longer support the "markdown-style" citations.

See #7329.
2021-12-14 11:34:32 -08:00

67 lines
1.2 KiB
Markdown

```
% pandoc -f markdown -t org
- @item1
- @item1 [p. 12]
- @item1 [p.12; see also @item2]
- [@item1]
- [-@item1]
- [see @item1 p. 12]
- [see @item1, p. 12]
- [see @item1, p. 12 and *passim*]
- [@item1;@item2]
- [see @item1; @item2]
^D
- [cite/t:@item1]
- [cite/t:@item1 p. 12]
- [cite/t:@item1 p.12; see also @item2]
- [cite:@item1]
- [cite/na:@item1]
- [cite:see @item1 p. 12]
- [cite:see @item1 p. 12]
- [cite:see @item1 p. 12 and /passim/]
- [cite:@item1; @item2]
- [cite:see @item1; @item2]
```
```
% pandoc -f markdown -t org -C --bibliography command/biblio.bib
- [@item1]
^D
- [cite:@item1]
```
```
% pandoc -f markdown -t org-citations -C --bibliography command/biblio.bib
[@item1]
^D
(Doe 2005)
<<refs>>
<<ref-item1>>
Doe, John. 2005. /First Book/. Cambridge: Cambridge University Press.
```
```
% pandoc -f org -t markdown
- [cite/t:@item1]
- [cite/t:@item1 p. 12]
- [cite/t:@item1 p.12; see also @item2]
- [cite:@item1]
- [cite/na:@item1]
- [cite:see @item1 p. 12]
- [cite:see @item1 p. 12 and /passim/]
- [cite:@item1; @item2]
- [cite:see @item1; @item2]
^D
- @item1
- @item1 [p. 12]
- @item1 [p.12; see also @item2]
- [@item1]
- [-@item1]
- [see @item1 p. 12]
- [see @item1 p. 12 and *passim*]
- [@item1; @item2]
- [see @item1; @item2]
```