diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-03-10 09:46:32 +0100 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-03-10 09:46:32 +0100 |
commit | c46febaaeef1c203f5bbb88d845ad5554622f609 (patch) | |
tree | 18654f772bb8d50d4b9345031b3076e90340ac65 /test/command | |
parent | a088d67f0d7212c96f5b59c568f0fc61a1106be4 (diff) | |
download | pandoc-c46febaaeef1c203f5bbb88d845ad5554622f609.tar.gz |
Expand \newenvironment macros.
Closes #987.
Depends on still unreleased texmath 0.9.3.
Diffstat (limited to 'test/command')
-rw-r--r-- | test/command/987.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/command/987.md b/test/command/987.md new file mode 100644 index 000000000..f632231ef --- /dev/null +++ b/test/command/987.md @@ -0,0 +1,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 +``` |