diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-01-31 22:50:51 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-01-31 22:50:51 -0800 |
commit | e752669e50815b0c1bef62fc5b1de95c33317f89 (patch) | |
tree | 727bbcabf4878b317fe93863c7de26f1eb7316a0 /test | |
parent | 7c424b315cb814b952d9bd9d5f027beb70169bff (diff) | |
download | pandoc-e752669e50815b0c1bef62fc5b1de95c33317f89.tar.gz |
LaTeX reader: don't let `\egroup` match `{`.
`braced` now actually requires nested braces.
Otherwise some legitimate command and environment
definitions can break (see test/command/tex-group.md).
Diffstat (limited to 'test')
-rw-r--r-- | test/command/tex-group.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/command/tex-group.md b/test/command/tex-group.md new file mode 100644 index 000000000..277b32142 --- /dev/null +++ b/test/command/tex-group.md @@ -0,0 +1,12 @@ +``` +% pandoc -f latex -t html +\newenvironment{foo}% +{\emph\bgroup}% +{\egroup} + +\begin{foo} +hi +\end{foo} +^D +<p><em>hi</em></p> +``` |