Identity Transform


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <!-- Identity Transform -->
  2. <xsl:template match="node() | @*">
  3. <xsl:copy>
  4. <xsl:apply-templates select="@*"/>
  5. <xsl:apply-templates/>
  6. </xsl:copy>
  7. </xsl:template>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.