[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Ignoring a child element


Subject: Re: [xsl] Ignoring a child element
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 7 Sep 2006 22:19:19 +0100

depends what you want to test

test="node()[not(self::TLStyle]"

would be false if there is any node (including comments or white space
etc)

test="text()[normalize-space(.)]"
tests if any child text node has non white content

etc


Current Thread