mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-13 19:15:40 +00:00
The change is in the LaTeX reader's treatment of raw commands, but it also affects the Markdown reader.
15 lines
268 B
Markdown
15 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}"]
|
|
```
|