]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathOverset.cpp
Please Coverity (code should be equivalent)
[lyx.git] / src / mathed / InsetMathOverset.cpp
index 6b49dce35c33abbfa0027a9735e91e49c26da805..1958471558cf6dea735124fd3aca59f694dd6fd6 100644 (file)
@@ -74,6 +74,8 @@ bool InsetMathOverset::idxLast(Cursor & cur) const
 void InsetMathOverset::write(WriteStream & os) const
 {
        MathEnsurer ensurer(os);
+       if (os.fragile())
+               os << "\\protect";
        os << "\\overset{" << cell(0) << "}{" << cell(1) << '}';
 }
 
@@ -90,9 +92,25 @@ void InsetMathOverset::mathmlize(MathStream & ms) const
 }
 
 
+void InsetMathOverset::htmlize(HtmlStream & os) const
+{
+       os << MTag("span", "class='overset'")
+                << MTag("span", "class='top'") << cell(0) << ETag("span")
+                << MTag("span") << cell(1) << ETag("span")
+                << ETag("span");
+}
+
+
 void InsetMathOverset::validate(LaTeXFeatures & features) const
 {
-       features.require("amsmath");
+       if (features.runparams().isLaTeX())
+               features.require("amsmath");
+       else if (features.runparams().math_flavor == OutputParams::MathAsHTML)
+               features.addCSSSnippet(
+                       "span.overset{display: inline-block; vertical-align: bottom; text-align:center;}\n"
+                       "span.overset span {display: block;}\n"
+                       "span.top{font-size: 66%;}");
+
        InsetMathNest::validate(features);
 }