We Recommend

The iPhone Developer's Cookbook The iPhone Developer's Cookbook
The “iPhone Developer’s Cookbook” introduces Apple’s iPhone SDK to readers and provides step-by-step details on how to build programs that run on the iPhone and iPod touch.


Posted By

greystate on 05/21/08


Tagged

textmate xslt


Versions (?)


Identity Transform


Published in: Other 


  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 

You need to login to post a comment.