mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
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:
parent
ed71c32fcd
commit
8d51923b8b
@ -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())
|
||||
|
@ -58,6 +58,8 @@ public:
|
||||
///
|
||||
void mathmlize(MathStream &) const;
|
||||
///
|
||||
void htmlize(HtmlStream &) const;
|
||||
///
|
||||
void octave(OctaveStream &) const;
|
||||
///
|
||||
InsetCode lyxCode() const { return MATH_DELIM_CODE; }
|
||||
|
Loading…
Reference in New Issue
Block a user