]> git.lyx.org Git - features.git/commitdiff
HTML for InsetMathSplit.
authorRichard Heck <rgheck@comcast.net>
Wed, 31 Mar 2010 20:50:29 +0000 (20:50 +0000)
committerRichard Heck <rgheck@comcast.net>
Wed, 31 Mar 2010 20:50:29 +0000 (20:50 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33988 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/InsetMathSplit.cpp
src/mathed/InsetMathSplit.h

index 673d6110001df020c7965c8cf356733da0c4b182..fb97bee592731146d83563408ed03b365676b0bd 100644 (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" ||
index 447aa0f4dd1a7ccdacceaa30a2e7fe8c2b43ad56..0310ce13c492ca6495b8e068a0f7c8697fa11fa3 100644 (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; }