mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
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:
parent
80aca38970
commit
3d6fb3bd1d
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user