Pages

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>

No comments: