]> git.lyx.org Git - features.git/blobdiff - src/mathed/InsetMathExInt.cpp
DocBook: for MathML, mrow removal for more cases
[features.git] / src / mathed / InsetMathExInt.cpp
index ba8eaa30b94b377fa0e670871f91e0d078a33236..4812eec997eaf89f4bd779dfa869e78ec36bd0f5 100644 (file)
@@ -142,9 +142,9 @@ void InsetMathExInt::mathmlize(MathMLStream & ms) const
        sym.mathmlize(ms);
        ms << ETag("mrow");
        if (lower)
-               ms << MTag("mrow") << cell(2) << ETag("mrow");
+               ms << cell(2);
        if (upper)
-               ms << MTag("mrow") << cell(3) << ETag("mrow");
+               ms << cell(3);
        if (lower && upper)
                ms << ETag("msubsup");
        else if (lower)