blob: aec253ff55299a179cbf3ebea9069562d8c5735e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
```
% 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"]]
```
|