I don't think we need to do this for MathML or HTML.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33959 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-03-30 22:17:06 +00:00
parent caf170d612
commit ab2a59b0a1
3 changed files with 1 additions and 10 deletions

View File

@ -122,13 +122,6 @@ void InsetMathExFunc::mathematica(MathematicaStream & os) const
} }
void InsetMathExFunc::mathmlize(MathStream & os) const
{
os << "<mi>" << name_ << "</mi><mo>&af;</mo>";
os << cell(0);
}
void InsetMathExFunc::octave(OctaveStream & os) const void InsetMathExFunc::octave(OctaveStream & os) const
{ {
os << name_ << '(' << cell(0) << ')'; os << name_ << '(' << cell(0) << ')';

View File

@ -43,8 +43,6 @@ public:
/// ///
void mathematica(MathematicaStream &) const; void mathematica(MathematicaStream &) const;
/// ///
void mathmlize(MathStream &) const;
///
void octave(OctaveStream &) const; void octave(OctaveStream &) const;
/// ///
InsetCode lyxCode() const { return MATH_EXFUNC_CODE; } InsetCode lyxCode() const { return MATH_EXFUNC_CODE; }

View File

@ -957,8 +957,8 @@ void extractStructure(MathData & ar, ExternalMath kind)
extractSums(ar); extractSums(ar);
extractNumbers(ar); extractNumbers(ar);
extractMatrices(ar); extractMatrices(ar);
extractFunctions(ar, kind);
if (kind != MATHML && kind != HTML) { if (kind != MATHML && kind != HTML) {
extractFunctions(ar, kind);
extractDets(ar); extractDets(ar);
extractDiff(ar); extractDiff(ar);
extractExps(ar); extractExps(ar);