Try again with LaTeX output for XHTML math.

The previous attempt messed up the inheritance hierarchy somehow. I
think.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35002 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-07-22 02:47:12 +00:00
parent 80aca38970
commit 3d6fb3bd1d

View File

@ -1889,7 +1889,14 @@ docstring InsetMathHull::xhtml(XHTMLStream & xs, OutputParams const & op) const
}
case BufferParams::LaTeX: {
string const tag = (getType() == hullSimple) ? "span" : "div";
docstring const latex = latexString(*this);
// Unfortunately, we cannot use latexString() because we do not want
// $...$ or whatever.
odocstringstream ls;
WriteStream wi(ls, false, true, WriteStream::wsPreview);
ModeSpecifier specifier(wi, MATH_MODE);
InsetMathGrid::write(wi);
docstring const latex = ls.str();
// class='math' allows for use of jsMath
// http://www.math.union.edu/~dpvc/jsMath/
// FIXME XHTML