HTML for InsetMathSplit.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33988 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-03-31 20:50:29 +00:00
parent ae69c7c63c
commit 85425d8e6c
2 changed files with 13 additions and 0 deletions

View File

@ -131,6 +131,17 @@ void InsetMathSplit::mathmlize(MathStream & ms) const
}
void InsetMathSplit::htmlize(HtmlStream & ms) const
{
// split, gathered, aligned, alignedat
// At the moment, those seem to display just fine without any
// special treatment.
// FIXME
// lgathered and rgathered could use the proper alignment.
InsetMathGrid::htmlize(ms);
}
void InsetMathSplit::validate(LaTeXFeatures & features) const
{
if (name_ == "split" || name_ == "gathered" || name_ == "aligned" ||

View File

@ -35,6 +35,8 @@ public:
///
void mathmlize(MathStream &) const;
///
void htmlize(HtmlStream &) const;
///
void validate(LaTeXFeatures & features) const;
///
int defaultColSpace(col_type) { return 0; }