pandoc/test/command/987.md
John MacFarlane 5f7e7f539a Add missing % on command tests.
This prevented `--accept` from working properly.
2021-09-21 10:42:24 -07:00

12 lines
187 B
Markdown

```
% pandoc -f latex -t markdown
\documentclass{article}
\newenvironment{flubble}{FOO}{BAR}
\begin{document}
\begin{flubble}
grr
\end{flubble}
\end{document}
^D
FOO grr BAR
```