Not sure why this was there: Of course we need to escape < and >.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38363 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2011-04-13 13:05:52 +00:00
parent dc128f1903
commit 815a9bd97e

View File

@ -2198,7 +2198,6 @@ docstring InsetMathHull::xhtml(XHTMLStream & xs, OutputParams const & op) const
// probably should allow for some kind of customization here
string const tag = (getType() == hullSimple) ? "span" : "div";
xs << html::StartTag(tag, "class='math'")
<< XHTMLStream::ESCAPE_AND
<< latex
<< html::EndTag(tag)
<< html::CR();