Subject: Re: Match pattern should get child content but gets sib's content also
From: "Thomas B. Passin" <tpassin@xxxxxxxxxxxx>
Date: Fri, 26 Apr 2002 16:24:26 -0400
|
[Doug Zirbel]
> First, my thanks to all of you who've replied! OK, my understanding has
> advanced by a small step. I read your posts, and section 5.8 and know
that
> there is such a thing as a default template...
>
> I'm just not sure how to override it! Would it be an additional template
> with something like match="not(text())"??
>
It can be as simple as
<xsl:template match='*'/>
This matches anything that has not already been matched by a previous
template (i.e., appearing earlier in the stylesheet), but outputs nothing.
Cheers,
Tom P
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|