apchk.xsl 338 B

1234567891011121314
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Textbook Identity Transform
  4. http://www.w3.org/TR/xslt/
  5. -->
  6. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  7. <xsl:template match="@*|node()">
  8. <xsl:copy>
  9. <xsl:apply-templates select="@*|node()"/>
  10. </xsl:copy>
  11. </xsl:template>
  12. </xsl:stylesheet>