c46febaaee
Closes #987. Depends on still unreleased texmath 0.9.3.
12 lines
185 B
Markdown
12 lines
185 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
|
|
```
|