blob: edc1bcb2bf9c05422a8e155ecc1d3b63bd1f98c1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
```
% pandoc -f native -t rst
[Para [Code ("",["interpreted-text"],[("role","foo")]) "text"]]
^D
:foo:`text`
```
```
% pandoc -f rst -t native
:foo:`text`
^D
[ Para
[ Code
( "" , [ "interpreted-text" ] , [ ( "role" , "foo" ) ] )
"text"
]
]
```
|