Implement math-as-HTML output for InsetMathExFunc.

This commit is contained in:
Richard Heck 2013-03-27 11:41:29 -04:00
parent 15fd8d7400
commit 56796c2a9e
2 changed files with 8 additions and 0 deletions

View File

@ -129,6 +129,12 @@ void InsetMathExFunc::mathmlize(MathStream & os) const
}
void InsetMathExFunc::htmlize(HtmlStream & os) const
{
os << name_ << cell(0);
}
void InsetMathExFunc::octave(OctaveStream & os) const
{
os << name_ << '(' << cell(0) << ')';

View File

@ -45,6 +45,8 @@ public:
///
void mathmlize(MathStream &) const;
///
void htmlize(HtmlStream &) const;
///
void octave(OctaveStream &) const;
///
InsetCode lyxCode() const { return MATH_EXFUNC_CODE; }