mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 02:28:35 +00:00
MathML and HTML definitely can't handle XYMatrix.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35025 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7a8a1eca21
commit
c8bc76b333
@ -140,4 +140,16 @@ void InsetMathXYMatrix::validate(LaTeXFeatures & features) const
|
||||
}
|
||||
|
||||
|
||||
void InsetMathXYMatrix::mathmlize(MathStream &) const
|
||||
{
|
||||
throw MathExportException();
|
||||
}
|
||||
|
||||
|
||||
void InsetMathXYMatrix::htmlize(HtmlStream &) const
|
||||
{
|
||||
throw MathExportException();
|
||||
}
|
||||
|
||||
|
||||
} // namespace lyx
|
||||
|
@ -47,6 +47,10 @@ public:
|
||||
void validate(LaTeXFeatures & features) const;
|
||||
///
|
||||
InsetCode lyxCode() const { return MATH_XYMATRIX_CODE; }
|
||||
///
|
||||
void mathmlize(MathStream &) const;
|
||||
///
|
||||
void htmlize(HtmlStream &) const;
|
||||
|
||||
private:
|
||||
///
|
||||
|
Loading…
Reference in New Issue
Block a user