/bundles/plugins-trunk/XML/templates/xslt-2.0.vm

# · Unknown · 21 lines · 17 code · 4 blank · 0 comment · 0 complexity · adca5b3e159090bf2d202ef36f8709f6 MD5 · raw file

  1. <?xml version="1.0" ?>
  2. <!-- this is an XSLT 2.0 template, you got it because the XSLT processor
  3. that you have selected is an XSLT 2.0 processor
  4. -->
  5. <xsl:stylesheet
  6. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  7. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  8. version="2.0">
  9. <xsl:template match="element()">
  10. <xsl:copy>
  11. <xsl:apply-templates select="@*,node()"/>
  12. </xsl:copy>
  13. </xsl:template>
  14. <xsl:template match="attribute()|text()|comment()|processing-instruction()">
  15. <xsl:copy/>
  16. </xsl:template>
  17. </xsl:stylesheet>