]> git.lyx.org Git - features.git/blobdiff - src/mathed/InsetMathBig.cpp
MathML: use M/ETagInline.
[features.git] / src / mathed / InsetMathBig.cpp
index 091907e5171b8d416d38a724cbbac0158b391352..180af9b8da2116dbe7e4337b80f255585041249f 100644 (file)
@@ -137,10 +137,9 @@ void InsetMathBig::normalize(NormalStream & os) const
 
 void InsetMathBig::mathmlize(MathMLStream & ms) const
 {
-       ms << "<" << from_ascii(ms.namespacedTag("mo"))
-          << " form='prefix' fence='true' stretchy='true' symmetric='true'>"
+       ms << MTagInline("mo", "fence='true' stretchy='true' symmetric='true'>")
           << convertDelimToXMLEscape(delim_, ms.xmlMode())
-          << "</" << from_ascii(ms.namespacedTag("mo")) << ">";
+          << ETagInline("mo");
 }