File: identity.xsl

package info (click to toggle)
libxml-xslt-perl 0.48-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 1,356 kB
  • ctags: 113
  • sloc: xml: 10,773; perl: 3,134; makefile: 2
file content (8 lines) | stat: -rw-r--r-- 306 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:template match='*|comment()|processing-instruction()'><xsl:copy><xsl:apply-templates /></xsl:copy></xsl:template>

  <xsl:template match='@*|text()'><xsl:copy /></xsl:template>

</xsl:stylesheet>