5f7e7f539a
This prevented `--accept` from working properly.
12 lines
187 B
Markdown
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
|
|
```
|