]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathLim.cpp
Add comment.
[lyx.git] / src / mathed / InsetMathLim.cpp
index 892cded83ddf9d34dd0b322381364f490b4022a2..a5eae28bb71f4eae1e909c3c7fecd2c452624b46 100644 (file)
@@ -73,7 +73,11 @@ void InsetMathLim::mathematica(MathematicaStream & os) const
 
 void InsetMathLim::mathmlize(MathStream & os) const
 {
-       os << "lim(" << cell(0) << ',' << cell(1) << ',' << cell(2) << ')';
+       // FIXME XHTML We need a form of MTag that takes attributes.
+       os << "<munder>"
+          << "<mo form='prefix'>" << "lim" << "</mo>"
+          << "<mrow>" << cell(1) << "<mo>&rarr;</mo>" << cell(2) << "</mrow></munder>"
+          << "<mo>(</mo>" << cell(0) << "<mo>)</mo>" ; 
 }