xsl-list
[Top] [All Lists]

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

2006-06-19 23:08:27
6/20/06, Duncan Anker <danker(_at_)server101(_dot_)com> 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

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--