merged tag LIBREOFFICE_3_2_99_3
[LibreOffice.git] / filter / source / odfflatxml / odfflatxmlexport.xsl
blobe08afd75f79f48a5bf97a196a6e85fbdb482700e
1 <?xml version='1.0' encoding="UTF-8"?>
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0">
3 <xsl:output method="xml" encoding="UTF-8" indent="yes"/>
5 <xsl:template match="@*|node()">
6 <xsl:copy>
7 <xsl:apply-templates select="@*|node()"/>
8 </xsl:copy>
9 </xsl:template>
11 <xsl:template match="@office:mimetype[string(.)='application/vnd.oasis.opendocument.drawing']">
12 <xsl:attribute name="office:mimetype">application/vnd.oasis.opendocument.graphics</xsl:attribute>
13 </xsl:template>
14 </xsl:stylesheet>