]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathDelim.cpp
Whitespace.
[lyx.git] / src / mathed / InsetMathDelim.cpp
index 12688f1f58443327d147cce1dd3a7eb49063c1e5..459866c924ed17fbcd5d66acfc0cca9014a9c866 100644 (file)
@@ -163,8 +163,8 @@ void InsetMathDelim::mathematica(MathematicaStream & os) const
 
 void InsetMathDelim::mathmlize(MathStream & os) const
 {
-       os << "<mfenced open=\"" << left_ << "\" close=\""
-               << right_ << "\">" << cell(0) << "</mfenced>";
+       os << "<mo form='prefix' fence='true' stretchy='true' symmetric='true'>" << left_ << "</mo>"
+               << cell(0) << "<mo form='postfix' fence='true' stretchy='true' symmetric='true'>" << right_ << "</mo>";
 }