Files
John MacFarlane 488ad80a20 LaTeX reader: handle ## macro arguments properly.
These turn into regular `#` arguments when expanded.

Closes #8243.
2022-08-24 09:36:13 -07:00

309 B

% pandoc -f latex
\newenvironment{topics}{
\newcommand{\topic}[2]{ \item{##1 / ##2} }
Topics:
\begin{itemize}
}
{
\end{itemize}
}

\begin{topics}
\topic{Foo}{Bar}
\topic{Baz}{Bim}
\end{topics}
^D
<p>Topics:</p>
<ul>
<li><p><span>Foo / Bar</span></p></li>
<li><p><span>Baz / Bim</span></p></li>
</ul>