copy-no-xml.xsl 377 B

1234567891011
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  4. exclude-result-prefixes="xs"
  5. version="2.0">
  6. <xsl:output omit-xml-declaration="yes" indent="yes"/>
  7. <xsl:template match="*">
  8. <xsl:copy-of select="."/>
  9. </xsl:template>
  10. </xsl:stylesheet>