]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathNumber.cpp
Whitespace.
[lyx.git] / src / mathed / InsetMathNumber.cpp
index fdacf0c7bccda1df8d70a4d2e1051f6e2b260cd2..c9ae470decf9dcdd690936270dfa9002517722e0 100644 (file)
@@ -69,7 +69,10 @@ void InsetMathNumber::octave(OctaveStream & os) const
 
 void InsetMathNumber::mathmlize(MathStream & os) const
 {
-       os << "<mn> " << str_ << " </mn>";
+       if (os.inText())
+               os << str_;
+       else
+               os << "<mn>" << str_ << "</mn>";
 }