Files
John MacFarlane 23178ec96e LaTeX reader: Fix bug in macro resolution for environments.
This is a regression in pandoc 3.0 that affects environments
with arguments.  Closes #8573.
2023-01-23 12:48:49 -08:00

128 B

% pandoc -f latex -t plain
\newenvironment{myenv}[1]{Open#1}{Close}
\begin{myenv}{x}Hello\end{myenv}
^D
OpenxHelloClose