mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-01 21:25:48 +00:00
This is a regression in pandoc 3.0 that affects environments with arguments. Closes #8573.
8 lines
128 B
Markdown
8 lines
128 B
Markdown
```
|
|
% pandoc -f latex -t plain
|
|
\newenvironment{myenv}[1]{Open#1}{Close}
|
|
\begin{myenv}{x}Hello\end{myenv}
|
|
^D
|
|
OpenxHelloClose
|
|
```
|