Subject: Re: Using <xsl:for-each> and position() to increase indent in each iteration
From: JBryant@xxxxxxxxx
Date: Fri, 13 May 2005 09:08:33 -0500
|
XML has five entities: those three plus " and ' - so that you
can deal with quotation marks and apostrophes.
Jay Bryant
Bryant Communication Services
(presently consulting at Synergistic Solution Technologies)
Ragulf Pickaxe <ragulf.pickaxe@xxxxxxxxx>
05/13/2005 03:17 AM
Please respond to
xsl-list@xxxxxxxxxxxxxxxxxxxxxx
To
xsl-list@xxxxxxxxxxxxxxxxxxxxxx
cc
Subject
Re: Using <xsl:for-each> and position() to increase indent in each
iteration
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 :-)
|