xsl-list
[Top] [All Lists]

Re: Tags to HTML page

2004-08-12 06:26:10


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
________________________________________________________________________


<Prev in Thread] Current Thread [Next in Thread>