RE: [xsl] Custom Ordered Lists

Subject: RE: [xsl] Custom Ordered Lists
From: "Philip Vallone" <philip.vallone@xxxxxxxxxxx>
Date: Mon, 13 Nov 2006 05:01:02 -0500
Thanks Andrew...

Have a great day!


-----Original Message-----
From: Andrew Welch [mailto:andrew.j.welch@xxxxxxxxx] 
Sent: Monday, November 13, 2006 4:55 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] Custom Ordered Lists

On 11/13/06, Philip Vallone <philip.vallone@xxxxxxxxxxx> wrote:
> Hi,
>
> Is it possible to create ordered lists like this? I am using XSLT 2.0 with
> HTML output.
>
> (a) Test
> (b) Test
> (c) test


<xsl:for-each select="......">
  <xsl:sort data-type="text" case-order="upper-first"/>
  <xsl:number format="(a)"/>

cheers
andrew

Current Thread