mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-03 08:28:25 +00:00
Implement math-as-HTML output for InsetMathExFunc.
This commit is contained in:
parent
15fd8d7400
commit
56796c2a9e
@ -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
|
void InsetMathExFunc::octave(OctaveStream & os) const
|
||||||
{
|
{
|
||||||
os << name_ << '(' << cell(0) << ')';
|
os << name_ << '(' << cell(0) << ')';
|
||||||
|
@ -45,6 +45,8 @@ public:
|
|||||||
///
|
///
|
||||||
void mathmlize(MathStream &) const;
|
void mathmlize(MathStream &) const;
|
||||||
///
|
///
|
||||||
|
void htmlize(HtmlStream &) const;
|
||||||
|
///
|
||||||
void octave(OctaveStream &) const;
|
void octave(OctaveStream &) const;
|
||||||
///
|
///
|
||||||
InsetCode lyxCode() const { return MATH_EXFUNC_CODE; }
|
InsetCode lyxCode() const { return MATH_EXFUNC_CODE; }
|
||||||
|
Loading…
Reference in New Issue
Block a user