RE: excluding nodes from an xsl template

Subject: RE: excluding nodes from an xsl template
From: Ben Robb <Ben@xxxxxxxxxx>
Date: Fri, 7 Jul 2000 17:07:43 +0100
Kevin Hooke wrote

We've already tried things like
- <xsl:template match="* and self::not(xsp)">
- <xsl:template match="* and not(xsp)">
- <xsl:template match="node() and not(xsp)">


Try this:

<xsl:template match="*[name() != 'xsp']">


Ben


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread