xsl-list
[Top] [All Lists]

RE: [xsl] Copy a node inside a template but exclude a deeply nested child

2006-09-04 04:52:57
I have an existing xslt and in one of the templates it makes 
a copy of a node from the xml document, I now have the need 
to exclude a deeply nested child from that copy

You have to replace the xsl:copy-of with a recursive use of the identity
template:

<xsl:template match="*" mode="copy">
  <xsl:copy>
  <xsl:copy-of select="@*"/>
  <xsl:apply-templates mode="copy"/>
  <xsl:copy>
</xsl:template>

<xsl:template match="element-to-be-excluded" mode="copy"/>

Michael Kay
http://www.saxonica.com/


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>