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