MathML: replace HTML entities with XML ones in more places

This part should have been committed with bc73a857 in the first place.
This commit is contained in:
Thibaut Cuvelier 2023-01-20 02:25:08 +01:00
parent 5f7c26fbe5
commit 66fab70388

View 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");