xsl-list
[Top] [All Lists]

Re: [xsl] For-each-group groups elements before the first group-starting-with element

2010-05-11 03:24:38
On 11/05/2010 05:10, Mukul Gandhi wrote:
    <xsl:for-each-group select="body/*" group-starting-with="h1">
                <xsl:if test="position()&gt; 1">

That's not safe because if the first element _is_ an h1 you'll miss the first headed group. As Michael showed you need to test the element node in teh first group, either as Michael showed with apply templates, or
<xsl:when test="self::h1">.....
<xsl:otherwise>....

David


________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. ________________________________________________________________________

--~------------------------------------------------------------------
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>
--~--