]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathNumber.cpp
Do not throw exceptions here either. See r22806.
[lyx.git] / src / mathed / InsetMathNumber.cpp
index 33a2f9d896e57145f7f10a73fb9099f4e5fc5110..45e73220fc6d03f20eb6700b4d98866cbd6dd200 100644 (file)
@@ -72,7 +72,13 @@ void InsetMathNumber::mathmlize(MathStream & os) const
        if (os.inText())
                os << str_;
        else
-               os << "<mn> " << str_ << " </mn>";
+               os << "<mn>" << str_ << "</mn>";
+}
+
+
+void InsetMathNumber::htmlize(HtmlStream & os) const
+{
+       os << str_;
 }