Re: [xsl] Converting Flat XML to Hierarchical structure using xsl.

Subject: Re: [xsl] Converting Flat XML to Hierarchical structure using xsl.
From: Ragulf Pickaxe <ragulf.pickaxe@xxxxxxxxx>
Date: Mon, 14 Nov 2005 10:59:36 +0100
Raj,

>    <xsl:apply-templates select="ordered-list/list-item/"/>

If you want to select list-item elements, the above should be:
<xsl:apply-templates select="ordered-list/list-item"/> (that is,
without the trailing /).

Current Thread