office-gobmx/extras/util/compact.xsl
Bence Babati 7a8763dad3 fdo#49527 unzip autocorrect files, store contents in git
Change-Id: I3fa844bbfe0a80d824a3edb47615d828988f2200
2012-08-13 17:04:22 +02:00

14 lines
No EOL
320 B
XML

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" omit-xml-declaration="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>