(chore) adapt identity.xsl

This commit is contained in:
apenski 2022-11-15 16:05:51 +01:00
parent 55ec1dc560
commit f717f00369

View file

@ -14,10 +14,15 @@
~ limitations under the License. ~ limitations under the License.
--> -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
<xsl:template match="@*|node()"> <xsl:template match="element()">
<xsl:copy> <xsl:copy>
<xsl:apply-templates select="@*|node()"/> <xsl:apply-templates select="@*,node()"/>
</xsl:copy> </xsl:copy>
</xsl:template> </xsl:template>
<xsl:template match="attribute()|text()|comment()|processing-instruction()">
<xsl:copy/>
</xsl:template>
</xsl:stylesheet> </xsl:stylesheet>