e752669e50
`braced` now actually requires nested braces. Otherwise some legitimate command and environment definitions can break (see test/command/tex-group.md).
12 lines
130 B
Markdown
12 lines
130 B
Markdown
```
|
|
% pandoc -f latex -t html
|
|
\newenvironment{foo}%
|
|
{\emph\bgroup}%
|
|
{\egroup}
|
|
|
|
\begin{foo}
|
|
hi
|
|
\end{foo}
|
|
^D
|
|
<p><em>hi</em></p>
|
|
```
|