blob: d464f9c8a986affde09b3c03685d67d71be52591 (
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
|
```
% pandoc -t native
(@citation
^D
[ Para
[ Str "("
, Cite
[ Citation
{ citationId = "citation"
, citationPrefix = []
, citationSuffix = []
, citationMode = AuthorInText
, citationNoteNum = 1
, citationHash = 0
}
]
[ Str "@citation" ]
]
]
```
```
% pandoc -t native
('asd')
^D
[ Para
[ Str "(" , Quoted SingleQuote [ Str "asd" ] , Str ")" ]
]
```
|