blob: f632231ef5e59cb51d505a39f97136c48240eb42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
```
pandoc -f latex -t markdown
\documentclass{article}
\newenvironment{flubble}{FOO}{BAR}
\begin{document}
\begin{flubble}
grr
\end{flubble}
\end{document}
^D
FOO grr BAR
```
|