Re: [xsl] Question on <xsl:apply-templates>

Subject: Re: [xsl] Question on <xsl:apply-templates>
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 30 Oct 2003 21:16:44 GMT

> I have a case where I am making a TOC for a large document, and using
> XSLT. I am using a mode on my template. I only want to output elements
> that are matched for the mode (in otherwords only output for the
> templates I have created). It is outputting every node, not just the
> ones denoted by the mode.

The default template in a mode does the same as the default unmoded
template.
For elements it  generates no output but recurses on the children, and
for text it produces the text.

So probably you just want to add

<xsl:template mode="toc" match="*"/>

to zap the rest.

David

-- 
http://www.dcarlisle.demon.co.uk/matthew

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


Current Thread