[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Indent based on position()

Subject: Re: Indent based on position()
From: "Kirk Allen Evans" <kaevans@xxxxxxxxxxxxx>
Date: Thu, 11 Apr 2002 08:10:16 -0700
indent second line html
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>

<xsl:template match="/">
 <xsl:apply-templates select="content/line"/>
</xsl:template>

<xsl:template match="line">
 <!-- Concatenate with a bunch of dashes -->
 <xsl:variable name="dashes" select="'---------------------'"/>
 <!-- Take the number of dashes corresponding to the line's position
number -->
 <xsl:value-of select="substring($dashes,1,position())"/>
 <xsl:value-of select="."/>
 <!-- Carriage-return-->
 <xsl:text>&#10;</xsl:text>
</xsl:template>

</xsl:stylesheet>




Kirk Allen Evans
kaevans@xxxxxxxxxxxxx
"XML and ASP.NET", New Riders Publishing
Available at Amazon.com
http://www.amazon.com/exec/obidos/ASIN/073571200X/



----- Original Message -----
From: "Brook Elgie" <brook.elgie@xxxxxxx>
To: <XSL-List@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Thursday, April 11, 2002 4:31 AM
Subject:  Indent based on position()


> Hello all,
>
> I've got the XML code:
>
> <content>
>     <line>This is the first line</line>
>     <line>This is the second line</line>
>     <line>This is the third line</line>
>     <line>This is the forth and last line</line>
> </content>
>
> And would like the html output:
>
> <p>
>     -This is the first line<br/>
>     --This is the second line<br/>
>     ---This is the third line<br/>
>     ----This is the forth line<br/>
> </p>
>
> So, when i process each <line> I need to duplicate the "-" character as
many
> times as the position() of the <line> being processed, I think. Can I do
> this?
>
> cheers
> brook
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>
>


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.