aboutsummaryrefslogtreecommitdiff
path: root/test/command/7329.md
blob: 9ed9c52ff9ea0c311f3b834ef5bf9579279e7529 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
```
% 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]
```