From: Thibaut Cuvelier Date: Fri, 20 Jan 2023 01:30:35 +0000 (+0100) Subject: MathML: remove extraneous in fractions X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=0c227d3dfa48500d4889f8a39f627a7db8ad5666;p=features.git MathML: remove extraneous in fractions Contributed by lynx: https://www.lyx.org/trac/ticket/12629 --- diff --git a/src/mathed/InsetMathFrac.cpp b/src/mathed/InsetMathFrac.cpp index 2431f68bb5..4ce758e8a4 100644 --- a/src/mathed/InsetMathFrac.cpp +++ b/src/mathed/InsetMathFrac.cpp @@ -506,8 +506,8 @@ void InsetMathFrac::mathmlize(MathMLStream & ms) const switch (kind_) { case ATOP: ms << MTag("mfrac", "linethickness='0'") - << MTag("mrow") << cell(0) << ETag("mrow") - << MTag("mrow") << cell(1) << ETag("mrow") + << cell(0) + << cell(1) << ETag("mfrac"); break;