mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-03 08:28:25 +00:00
MathML and HTML can't handle XYArrow.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35027 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
b520657039
commit
f1d941098c
@ -158,4 +158,15 @@ void InsetMathXYArrow::normalize(NormalStream & os) const
|
||||
}
|
||||
|
||||
|
||||
void InsetMathXYArrow::mathmlize(MathStream &) const
|
||||
{
|
||||
throw MathExportException();
|
||||
}
|
||||
|
||||
|
||||
void InsetMathXYArrow::htmlize(HtmlStream &) const
|
||||
{
|
||||
throw MathExportException();
|
||||
}
|
||||
|
||||
} // namespace lyx
|
||||
|
@ -50,6 +50,10 @@ public:
|
||||
MathData const & sourceCell() const;
|
||||
///
|
||||
InsetCode lyxCode() const { return MATH_XYARROW_CODE; }
|
||||
///
|
||||
void mathmlize(MathStream &) const;
|
||||
///
|
||||
void htmlize(HtmlStream &) const;
|
||||
|
||||
///
|
||||
bool up_;
|
||||
|
Loading…
Reference in New Issue
Block a user