]> git.lyx.org Git - lyx.git/commitdiff
MathML: replace HTML entities with XML ones in more places
authorThibaut Cuvelier <tcuvelier@lyx.org>
Fri, 20 Jan 2023 01:25:08 +0000 (02:25 +0100)
committerThibaut Cuvelier <tcuvelier@lyx.org>
Fri, 20 Jan 2023 01:25:37 +0000 (02:25 +0100)
This part should have been committed with bc73a857 in the first place.

src/mathed/InsetMathExInt.cpp

index 4812eec997eaf89f4bd779dfa869e78ec36bd0f5..c5c726270d54a5cd125c83c86fbd30d9b5b116e1 100644 (file)
@@ -153,11 +153,11 @@ void InsetMathExInt::mathmlize(MathMLStream & ms) const
                ms << ETag("msup");
        ms << cell(0)
           << "<" << from_ascii(ms.namespacedTag("mo")) << "> "
-          << " &InvisibleTimes; "
+          << " &#8290; "
        << "</" << from_ascii(ms.namespacedTag("mo")) << ">"
           << MTag("mrow")
           << "<" << from_ascii(ms.namespacedTag("mo")) << "> "
-          << " &DifferentialD; "
+          << " &#8518; "
           << "</" << from_ascii(ms.namespacedTag("mo")) << ">"
           << cell(1)
           << ETag("mrow");