Do the obvious thing with delimiters.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33957 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-03-30 22:07:05 +00:00
parent ed71c32fcd
commit 8d51923b8b
2 changed files with 8 additions and 0 deletions

View File

@ -168,6 +168,12 @@ void InsetMathDelim::mathmlize(MathStream & os) const
}
void InsetMathDelim::htmlize(HtmlStream & os) const
{
os << left_ << cell(0) << right_;
}
void InsetMathDelim::octave(OctaveStream & os) const
{
if (isAbs())

View File

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