mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 21:21:32 +00:00
Similar fixes as 946ba7781c
This commit is contained in:
parent
946ba7781c
commit
115ff2fa3c
@ -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");
|
||||
}
|
||||
|
@ -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");
|
||||
}
|
||||
|
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user