Similar fixes as 946ba7781c

This commit is contained in:
Thibaut Cuvelier 2021-12-05 18:54:05 +01:00
parent 946ba7781c
commit 115ff2fa3c
3 changed files with 3 additions and 5 deletions

View File

@ -137,7 +137,7 @@ void InsetMathBig::normalize(NormalStream & os) const
void InsetMathBig::mathmlize(MathMLStream & ms) const
{
ms << MTagInline("mo", "fence='true' stretchy='true' symmetric='true'>")
ms << MTagInline("mo", "fence='true' stretchy='true' symmetric='true'")
<< convertDelimToXMLEscape(delim_, ms.xmlMode())
<< ETagInline("mo");
}

View File

@ -109,7 +109,7 @@ void InsetMathBoldSymbol::write(TeXMathStream & os) const
void InsetMathBoldSymbol::mathmlize(MathMLStream & ms) const
{
ms << MTagInline("mstyle", "mathvariant='bold'>")
ms << MTagInline("mstyle", "mathvariant='bold'")
<< cell(0)
<< ETagInline("mstyle");
}

View File

@ -185,10 +185,8 @@ void InsetMathDelim::mathmlize(MathMLStream & ms) const
<< MTagInline("mo", "form='prefix' fence='true' stretchy='true' symmetric='true'")
<< convertDelimToXMLEscape(left_, ms.xmlMode())
<< ETagInline("mo")
<< "\n"
<< cell(0)
<< "\n"
<< MTagInline("mo", "form='postfix' fence='true' stretchy='true' symmetric='true'>")
<< MTagInline("mo", "form='postfix' fence='true' stretchy='true' symmetric='true'")
<< convertDelimToXMLEscape(right_, ms.xmlMode())
<< ETagInline("mo")
<< ETag("mrow");