Consider the following MWE:
\documentclass{amsart}
\usepackage{thm-restate}
\newtheorem{thm}{Theorem}
\begin{document}
\section{One}
\begin{restatable}{thm}{firstthm}
Hi
\end{restatable}
\section{Two}
\firstthm*
\section{Three}
\firstthm*
\end{document}
This will compile just fine and produce the expected output with TeX. With TeXML, however, it will make it to Section 3 and then seemingly freeze; removing the second \firstthm* command will stop the (presumed) infinite loop.
Consider the following MWE:
This will compile just fine and produce the expected output with TeX. With TeXML, however, it will make it to Section 3 and then seemingly freeze; removing the second
\firstthm*command will stop the (presumed) infinite loop.