Re: [xsl] Beginner's question

Subject: Re: [xsl] Beginner's question
From: "Thomas B. Passin" <tpassin@xxxxxxxxxxxx>
Date: Thu, 4 Oct 2001 12:58:27 -0400
[J S Publications]
>
> That is pretty much what I came up with. The problem is that on its own in
> an XSL I am getting everything else being output as well. How do you block
> everything but stuff inside the relevant <site>?
>

That usually happens because XSLT has a default template that pulls out text
content of elements if no other template applies.  To defeat this, put the
following template after all others:

<xsl:template match='*'/>

This causes no output for any element that wasn't already handled by another
template, and overrides the default template.

Cheers,

Tom P


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


Current Thread