From 4d4888aba83a708125bd469513fc303a5cd474cf Mon Sep 17 00:00:00 2001 From: Thibaut Cuvelier Date: Wed, 13 Nov 2024 20:08:09 +0100 Subject: [PATCH] Added mrow to InsetMathCases::mathmlize Co-authored-by: Lorenzo Bertini --- src/mathed/InsetMathCases.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mathed/InsetMathCases.cpp b/src/mathed/InsetMathCases.cpp index 5cdb41691f..b97ffd42db 100644 --- a/src/mathed/InsetMathCases.cpp +++ b/src/mathed/InsetMathCases.cpp @@ -142,10 +142,12 @@ void InsetMathCases::maple(MapleStream & os) const void InsetMathCases::mathmlize(MathMLStream & ms) const { - ms << MTagInline("mo", "form='prefix' fence='true' stretchy='true' symmetric='true'") + ms << MTag("mrow") + << MTagInline("mo", "form='prefix' fence='true' stretchy='true' symmetric='true'") << "{" << ETagInline("mo"); InsetMathGrid::mathmlize(ms); + ms << ETag("mrow"); }