Advertisement
spiralx

Default XSLT rules

Oct 30th, 2012
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.30 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
  3.  
  4.   <xsl:template match="*|@*">
  5.     <xsl:copy>
  6.       <xsl:apply-templates select="*|@*"/>
  7.     </xsl:copy>
  8.   </xsl:template>
  9.  
  10.   <xsl:template match="text()" />
  11.  
  12. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement