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

# · Unknown · 13 lines · 11 code · 2 blank · 0 comment · 0 complexity · 414ec81864aaef931ce742b8042d2a7b MD5 · raw file

  1. <?xml version="1.0" ?>
  2. <!-- this is an XSLT 1.0 stylesheet -->
  3. <xsl:stylesheet
  4. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  5. version="1.0">
  6. <xsl:template match="@*|node()">
  7. <xsl:copy>
  8. <xsl:apply-templates select="@*|node()"/>
  9. </xsl:copy>
  10. </xsl:template>
  11. </xsl:stylesheet>