Re: [xsl] Tags to HTML page

Subject: Re: [xsl] Tags to HTML page
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 12 Aug 2004 14:26:10 +0100
> Or does the apply-templates only apply to the childrens of the node being
> processed?

It applies to the nodes selected in its select attribute, so if you go

<xsl:apply-templates select="/root/h3[4]/h3[2]"/>

it will apply to the single h3 node which is the second h3 child of the
fourth h3 child or root.

If you don't use select= then a default selection of node() is used
which selects all the children (text, elements, comments and processing
instructions). So a short answer to your question is "yes".

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread