]> git.lyx.org Git - features.git/commitdiff
Disable extractFunctions() for MathML and HTML output.
authorRichard Heck <rgheck@lyx.org>
Wed, 27 Mar 2013 16:05:00 +0000 (12:05 -0400)
committerRichard Heck <rgheck@lyx.org>
Wed, 27 Mar 2013 16:11:31 +0000 (12:11 -0400)
Fixes bug #8609.
(cherry picked from commit dd7d76cc6c6bfba2272185ecd468bd1502c414c7)

src/mathed/MathExtern.cpp
status.20x

index 8d1df06f777ee1e78b3bfa8df57c035d5c939e6f..d59c572117723cd236684ad97a14b71de38caf24 100644 (file)
@@ -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);
index 5c9800538cc37e79333025c05aa59976bba4b173..302c4d11759587393f27ade8df492893dc612f14 100644 (file)
@@ -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