Subject: Re: 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   instead.
>
> Is there a reason why is not working?
" " is an HTML entity.
XML only knows three entities: "<" ">" "&"
Therefore all other characters that you need must be with their char
code, as you have found with " ".
Ragulf Pickaxe :-)
|