HTML for InsetMathBrace.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33949 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-03-30 02:40:32 +00:00
parent 27add8d945
commit 3e31491871
2 changed files with 8 additions and 0 deletions

View File

@ -100,6 +100,12 @@ void InsetMathBrace::mathmlize(MathStream & os) const
}
void InsetMathBrace::htmlize(HtmlStream & os) const
{
os << cell(0);
}
void InsetMathBrace::mathematica(MathematicaStream & os) const
{
os << cell(0);

View File

@ -48,6 +48,8 @@ public:
///
void mathmlize(MathStream &) const;
///
void htmlize(HtmlStream &) const;
///
void infoize(odocstream & os) const;
///
InsetCode lyxCode() const { return MATH_BRACE_CODE; }