Added mrow to InsetMathCases::mathmlize

Co-authored-by: Lorenzo Bertini <lorenzobertini97@gmail.com>
This commit is contained in:
Thibaut Cuvelier 2024-11-13 20:08:09 +01:00
parent 51f4fc7f67
commit 4d4888aba8

View File

@ -142,10 +142,12 @@ void InsetMathCases::maple(MapleStream & os) const
void InsetMathCases::mathmlize(MathMLStream & ms) const
{
ms << MTagInline("mo", "form='prefix' fence='true' stretchy='true' symmetric='true'")
ms << MTag("mrow")
<< MTagInline("mo", "form='prefix' fence='true' stretchy='true' symmetric='true'")
<< "{"
<< ETagInline("mo");
InsetMathGrid::mathmlize(ms);
ms << ETag("mrow");
}