Files
pandoc/test/command/4667.md
T
John MacFarlane 7119715a6a LaTeX reader rawLaTeXBlock: handle macros that resolve to a...
...`\begin` or `\end`.
Fixes #4667.
2018-05-30 12:49:01 -07:00

221 B

pandoc -t latex
---
header-includes:
- \newcommand{\blandscape}{\begin{landscape}}
- \newcommand{\elandscape}{\end{landscape}}
...

\blandscape

testing

\elandscape
^D
\begin{landscape}

testing

\end{landscape}