summaryrefslogtreecommitdiff
path: root/filter/source/xslt
diff options
context:
space:
mode:
authorFrédéric Wang <fred.wang@free.fr>2013-06-28 17:07:11 +0200
committerBosdonnat Cedric <cedric.bosdonnat@free.fr>2013-07-01 13:41:35 +0000
commit1ef63d0842dab4154c5ca2fc42e416950bd7459a (patch)
treeed4f883b134f3ae0cc708a843adfba24e3311727 /filter/source/xslt
parenta70d429b96be02f0aa407216ab91edbe7883c7c7 (diff)
fdo#66278 - MathML export: distinguish inline/display equations.
Change-Id: Ia764c2fd64ab772342ce86f67ee290ab38dc4a83 Reviewed-on: https://gerrit.libreoffice.org/4607 Reviewed-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr> Tested-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr>
Diffstat (limited to 'filter/source/xslt')
-rw-r--r--filter/source/xslt/odf2xhtml/export/xhtml/body.xsl12
1 files changed, 8 insertions, 4 deletions
diff --git a/filter/source/xslt/odf2xhtml/export/xhtml/body.xsl b/filter/source/xslt/odf2xhtml/export/xhtml/body.xsl
index d9de0e9ba322..e83195c50cda 100644
--- a/filter/source/xslt/odf2xhtml/export/xhtml/body.xsl
+++ b/filter/source/xslt/odf2xhtml/export/xhtml/body.xsl
@@ -2949,9 +2949,7 @@
-->
<!-- MathML -->
<xsl:template match="draw:object[math:math]">
- <math xmlns="http://www.w3.org/1998/Math/MathML">
- <xsl:apply-templates select="math:math/math:semantics/*" mode="math"/>
- </math>
+ <xsl:apply-templates select="math:math" mode="math"/>
</xsl:template>
<xsl:template match="*" mode="math">
@@ -2966,6 +2964,12 @@
</xsl:attribute>
</xsl:template>
- <xsl:template match="math:annotation" mode="math"/>
+ <!-- Ignore semantic annotations -->
+ <xsl:template match="math:semantics" mode="math">
+ <xsl:apply-templates select="*[1]" mode="math"/>
+ </xsl:template>
+
+ <!-- Ignore the replacement image -->
+ <xsl:template match="draw:frame/draw:image[preceding-sibling::*[1]/math:math]"/>
</xsl:stylesheet>