From: Richard Heck Date: Wed, 13 Apr 2011 13:05:52 +0000 (+0000) Subject: Not sure why this was there: Of course we need to escape < and >. X-Git-Tag: 2.0.0~144 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=815a9bd97e8236d47761a143041702045abf2cbd;p=features.git 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 --- diff --git a/src/mathed/InsetMathHull.cpp b/src/mathed/InsetMathHull.cpp index a27e00d6f3..e58b722c15 100644 --- a/src/mathed/InsetMathHull.cpp +++ b/src/mathed/InsetMathHull.cpp @@ -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();