Return to Snippet

Revision: 6444
at May 21, 2008 19:53 by greystate


Initial Code
<!-- Identity Transform -->
<xsl:template match="node() | @*">
	<xsl:copy>
		<xsl:apply-templates select="@*"/>
		<xsl:apply-templates/>
	</xsl:copy>
</xsl:template>

Initial URL


Initial Description


Initial Title
Identity Transform

Initial Tags
textmate

Initial Language
Other