]> git.lyx.org Git - features.git/blobdiff - src/mathed/InsetMathExFunc.cpp
MathML: use M/ETagInline.
[features.git] / src / mathed / InsetMathExFunc.cpp
index 16eb38515d40977fdaac0c06cbf258577097c890..c450cceb9718e793251876bea6bbfb61abb0aff4 100644 (file)
@@ -124,12 +124,12 @@ void InsetMathExFunc::mathematica(MathematicaStream & os) const
 
 void InsetMathExFunc::mathmlize(MathMLStream & ms) const
 {
-       ms << "<" << from_ascii(ms.namespacedTag("mi")) << ">"
+       ms << MTagInline("mi")
           << name_
-       << "</" << from_ascii(ms.namespacedTag("mi")) << ">"
-          << "<" << from_ascii(ms.namespacedTag("mo")) << ">"
+       << ETagInline("mi")
+          << MTagInline("mo")
           << "&af;"
-          << "</" << from_ascii(ms.namespacedTag("mo")) << ">"
+          << ETagInline("mo")
           << cell(0);
 }