You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

copyover.xsl 317B

12345678910111213
  1. <?xml version="1.0"?>
  2. <xsl:stylesheet
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  4. version="1.0">
  5. <xsl:template match="@*|*|text()|processing-instruction()">
  6. <xsl:copy>
  7. <xsl:apply-templates select="@*|*|text()|processing-instruction()"/>
  8. </xsl:copy>
  9. </xsl:template>
  10. </xsl:stylesheet>