Re: [xsl] Selecting all nodes between pairs of <br> tags

Subject: Re: [xsl] Selecting all nodes between pairs of <br> tags
From: "Mukul Gandhi" <gandhi.mukul@xxxxxxxxx>
Date: Tue, 20 Jun 2006 11:38:04 +0530
6/20/06, Duncan Anker <danker@xxxxxxxxxxxxx> wrote:
I'm using <xsl:template match="..."> but otherwise my code is identical.
Would the use of the <xsl:for-each select="..."> make any difference in
this instance?

There is no difference between the 2 ways


You can equivalently do as
<xsl:apply-templates
select="br[local-name(preceding-sibling::node()[1]) = 'br']" />

and the corresponding template definition as
<xsl:template match="...">

Regards,
Mukul

Current Thread