Re: [xsl] Using <xsl:for-each> and position() to increase indent in each iteration

Subject: Re: [xsl] Using <xsl:for-each> and position() to increase indent in each iteration
From: Ragulf Pickaxe <ragulf.pickaxe@xxxxxxxxx>
Date: Fri, 13 May 2005 10:17:24 +0200
David Gadd wrote:
> By googling I found a suggestion to use &#160; instead.
>
> Is there a reason why &nbsp; is not working?

"&nbsp;" is an HTML entity.
XML only knows three entities: "&lt;" "&gt;" "&amp;"

Therefore all other characters that you need must be with their char
code, as you have found with "&#160;".

Ragulf Pickaxe :-)

Current Thread