mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
ae69c7c63c
commit
85425d8e6c
@ -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" ||
|
||||
|
@ -35,6 +35,8 @@ public:
|
||||
///
|
||||
void mathmlize(MathStream &) const;
|
||||
///
|
||||
void htmlize(HtmlStream &) const;
|
||||
///
|
||||
void validate(LaTeXFeatures & features) const;
|
||||
///
|
||||
int defaultColSpace(col_type) { return 0; }
|
||||
|
Loading…
Reference in New Issue
Block a user