mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 21:21:32 +00:00
We do not need to extract limits for MathML.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33146 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
a36607b800
commit
51a388e745
@ -71,16 +71,6 @@ void InsetMathLim::mathematica(MathematicaStream & os) const
|
||||
}
|
||||
|
||||
|
||||
void InsetMathLim::mathmlize(MathStream & os) const
|
||||
{
|
||||
// FIXME XHTML We need a form of MTag that takes attributes.
|
||||
os << "<munder>"
|
||||
<< "<mo form='prefix'>" << "lim" << "</mo>"
|
||||
<< "<mrow>" << cell(1) << "<mo>→</mo>" << cell(2) << "</mrow></munder>"
|
||||
<< "<mo>(</mo>" << cell(0) << "<mo>)</mo>" ;
|
||||
}
|
||||
|
||||
|
||||
void InsetMathLim::write(WriteStream &) const
|
||||
{
|
||||
LYXERR0("should not happen");
|
||||
|
@ -40,8 +40,6 @@ public:
|
||||
///
|
||||
void mathematica(MathematicaStream &) const;
|
||||
///
|
||||
void mathmlize(MathStream &) const;
|
||||
///
|
||||
void write(WriteStream & os) const;
|
||||
///
|
||||
InsetCode lyxCode() const { return MATH_LIM_CODE; }
|
||||
|
@ -962,9 +962,10 @@ void extractStructure(MathData & ar, ExternalMath kind)
|
||||
extractDiff(ar);
|
||||
}
|
||||
extractExps(ar);
|
||||
extractLims(ar);
|
||||
if (kind != MATHML)
|
||||
if (kind != MATHML) {
|
||||
extractLims(ar);
|
||||
extractStrings(ar);
|
||||
}
|
||||
//lyxerr << "\nStructure to: " << ar << endl;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user