| When importing a Confluence XML export, LaTeX math blocks are only migrated correctly if the macro body already starts with
and ends with
Every other LaTeX block which is wrapped in
fails on render. The XWiki MathJax extension displays a yellow box containing the raw macro content instead of the formula. A broken migration looks like this:
\begin\{aligned}
a &= b + c \\
d &= e + f
\end\{aligned}
A working migration looks like this:
\begin\{align}
a &= b + c \\
d &= e + f
\end\{align}
|