Re: excluding nodes from an xsl template

Subject: Re: excluding nodes from an xsl template
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 7 Jul 2000 17:01:56 +0100 (BST)
PS

I said
 <xsl:template match="*[not(self::xsp)]">...

 <xsl:template match="xsp">...

which is the answer to your question, but why can't you do



 <xsl:template match="*">...

 <xsl:template match="xsp">...

the xsp template will have higher priority than the * one so
xsp elements will use that.

David


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


Current Thread