From: Richard Heck Date: Wed, 27 Mar 2013 16:05:00 +0000 (-0400) Subject: Disable extractFunctions() for MathML and HTML output. X-Git-Tag: 2.0.6~55 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=912382e2be8366f69751bf8e4078b55538fe7591;p=features.git Disable extractFunctions() for MathML and HTML output. Fixes bug #8609. (cherry picked from commit dd7d76cc6c6bfba2272185ecd468bd1502c414c7) --- diff --git a/src/mathed/MathExtern.cpp b/src/mathed/MathExtern.cpp index 8d1df06f77..d59c572117 100644 --- a/src/mathed/MathExtern.cpp +++ b/src/mathed/MathExtern.cpp @@ -957,8 +957,8 @@ void extractStructure(MathData & ar, ExternalMath kind) extractSums(ar); extractNumbers(ar); extractMatrices(ar); - extractFunctions(ar, kind); if (kind != MATHML && kind != HTML) { + extractFunctions(ar, kind); extractDets(ar); extractDiff(ar); extractExps(ar); diff --git a/status.20x b/status.20x index 5c9800538c..302c4d1175 100644 --- a/status.20x +++ b/status.20x @@ -123,6 +123,8 @@ What's new - Fix problem with XHTML output of captions with listings (bug 8604). +- Fix problem with HTML output of simple formulas like "y[i]" (bug 8609). + * USER INTERFACE