]> git.lyx.org Git - features.git/commitdiff
InsetMathExFunc: use XML entities instead of HTML in MathML.
authorThibaut Cuvelier <tcuvelier@lyx.org>
Mon, 26 Dec 2022 19:38:06 +0000 (20:38 +0100)
committerThibaut Cuvelier <tcuvelier@lyx.org>
Mon, 26 Dec 2022 19:38:06 +0000 (20:38 +0100)
This part should have been committed with bc73a857 in the first place.

src/mathed/InsetMathExFunc.cpp

index c450cceb9718e793251876bea6bbfb61abb0aff4..ea557b1fa1bafcd9e08523cf1656a25c680d0c7b 100644 (file)
@@ -128,7 +128,7 @@ void InsetMathExFunc::mathmlize(MathMLStream & ms) const
           << name_
        << ETagInline("mi")
           << MTagInline("mo")
-          << "&af;"
+          << "&#x2061;"
           << ETagInline("mo")
           << cell(0);
 }