7119715a6a
...`\begin` or `\end`. Fixes #4667.
20 lines
221 B
Markdown
20 lines
221 B
Markdown
```
|
|
pandoc -t latex
|
|
---
|
|
header-includes:
|
|
- \newcommand{\blandscape}{\begin{landscape}}
|
|
- \newcommand{\elandscape}{\end{landscape}}
|
|
...
|
|
|
|
\blandscape
|
|
|
|
testing
|
|
|
|
\elandscape
|
|
^D
|
|
\begin{landscape}
|
|
|
|
testing
|
|
|
|
\end{landscape}
|
|
```
|