]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathBoldSymbol.cpp
Combine OutlineIn and OutlineOut blocks
[lyx.git] / src / mathed / InsetMathBoldSymbol.cpp
index 7382dc4dae30eaf6d1c927369cb789ba734a9f72..465a7bf77a1469fec36aa611689dcb400fbbdfe9 100644 (file)
@@ -106,6 +106,18 @@ void InsetMathBoldSymbol::write(WriteStream & os) const
 }
 
 
+void InsetMathBoldSymbol::mathmlize(MathStream & os) const
+{
+       os << "<mstyle mathvariant='bold'>" << cell(0) << "</mstyle>";
+}
+
+
+void InsetMathBoldSymbol::htmlize(HtmlStream & os) const
+{
+       os << MTag("b") << cell(0) << ETag("b");
+}
+
+
 void InsetMathBoldSymbol::infoize(odocstream & os) const
 {
        switch (kind_) {