]> git.lyx.org Git - features.git/commitdiff
Fix part of bug #8521.
authorRichard Kimberly Heck <rikiheck@lyx.org>
Fri, 5 Oct 2018 01:02:51 +0000 (21:02 -0400)
committerRichard Kimberly Heck <rikiheck@lyx.org>
Fri, 5 Oct 2018 01:02:51 +0000 (21:02 -0400)
src/mathed/InsetMathDelim.cpp

index 809e8a0c13ef53160ee0ac28cbd0c51466af680b..6a2be5e118e3cad48a26b8a5f995a9aa15c46d1b 100644 (file)
@@ -182,11 +182,15 @@ void InsetMathDelim::mathematica(MathematicaStream & os) const
 void InsetMathDelim::mathmlize(MathStream & os) const
 {
        os << "<mo form='prefix' fence='true' stretchy='true' symmetric='true'>"
+          << "<mrow>"
           << convertDelimToXMLEscape(left_)
+          << "</mrow>"
           << "</mo>\n"
           << cell(0)
           << "\n<mo form='postfix' fence='true' stretchy='true' symmetric='true'>"
+          << "<mrow>"
           << convertDelimToXMLEscape(right_)
+          << "</mrow>"
           << "</mo>\n";
 }