Re: [xsl] Keeping comments with relevant node when shorting nodes

Subject: Re: [xsl] Keeping comments with relevant node when shorting nodes
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 14 Jan 2005 21:57:54 GMT
one way would be to pick up the comments in the apply-templates (but I
made it a for-each here)

     <xsl:for-each select="N|comment()">
            <xsl:sort select="(self::N|following-sibling::N)[1]/@name"/>
 <xsl:copy-of select="."/>
</xsl:for-each>

comments and the following N all get the same sort key and in this case
xslt is stable: they'll come out in the order they went in.
David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. 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