blob: 344dfc8cf508e4420d97620c9fb9417ed513d401 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | Handle \write18{..} as raw tex:
```
% pandoc -t native
\write18{git --version}
^D
[RawBlock (Format "latex") "\\write18{git --version}"]
```
```
% pandoc -f latex+raw_tex -t native
\write18{git --version}
^D
[RawBlock (Format "latex") "\\write18{git --version}"]
```
 |