This should do it for the delimiters.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32546 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2009-12-16 15:50:05 +00:00
parent d4b3b61593
commit ce2e071cdf

View File

@ -163,8 +163,8 @@ void InsetMathDelim::mathematica(MathematicaStream & os) const
void InsetMathDelim::mathmlize(MathStream & os) const
{
os << "<mo fence='true' stretchy='true' symmetric='true'>" << left_ << "</mo>"
<< cell(0) << "<mo fence='true' stretchy='true' symmetric='true'>" << right_ << "</mo>";
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>";
}