Pages

Showing posts with label Capturing with child elements in pipeline. Show all posts
Showing posts with label Capturing with child elements in pipeline. Show all posts

Tuesday, March 22, 2011

Capturing with child elements in pipeline

<xsl:template match="node()|@*" mode="s2">
<xsl:copy>
<xsl:apply-templates select="@*|node()" mode="s2"/>
</xsl:copy>
</xsl:template>