5f7e7f539a
This prevented `--accept` from working properly.
20 lines
223 B
Markdown
20 lines
223 B
Markdown
```
|
|
% pandoc -t latex
|
|
---
|
|
header-includes:
|
|
- \newcommand{\blandscape}{\begin{landscape}}
|
|
- \newcommand{\elandscape}{\end{landscape}}
|
|
...
|
|
|
|
\blandscape
|
|
|
|
testing
|
|
|
|
\elandscape
|
|
^D
|
|
\begin{landscape}
|
|
|
|
testing
|
|
|
|
\end{landscape}
|
|
```
|