013fd1c6b6
The change is in the LaTeX reader's treatment of raw commands, but it also affects the Markdown reader.
14 lines
268 B
Markdown
14 lines
268 B
Markdown
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}"]
|
|
```
|