]> git.lyx.org Git - lyx.git/commitdiff
Output numbers as numbers.
authorRichard Heck <rgheck@comcast.net>
Sat, 26 Dec 2009 15:08:03 +0000 (15:08 +0000)
committerRichard Heck <rgheck@comcast.net>
Sat, 26 Dec 2009 15:08:03 +0000 (15:08 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32644 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/InsetMathNumber.cpp

index 933505a6bfa28fb0104c4ff9ef273cebaf63a03a..fdacf0c7bccda1df8d70a4d2e1051f6e2b260cd2 100644 (file)
@@ -69,7 +69,7 @@ void InsetMathNumber::octave(OctaveStream & os) const
 
 void InsetMathNumber::mathmlize(MathStream & os) const
 {
-       os << "<mi> " << str_ << " </mi>";
+       os << "<mn> " << str_ << " </mn>";
 }