xsl-list
[Top] [All Lists]

Re: Keeping comments with relevant node when shorting nodes

2005-01-14 14:57:54

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
________________________________________________________________________

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