RE: [xsl] How to deal with special characters in XSL?

Subject: RE: [xsl] How to deal with special characters in XSL?
From: Andrés Pedrera <apedrera@xxxxxx>
Date: Wed, 17 Oct 2001 16:37:10 +0200
> sometimes I neet <td>&nbsp;</td> for netscape right cell dispalying
> or sometimes just &nbsp;&nbsp;&nbsp;&nbsp; to force a big white space

If you use CDATAs to show html this works:

-------------------------------------------------------------
... XSLT code here ...

<![CDATA[
  ....
  h t m l
  ....
]]>

<xsl:text disable-output-escaping="yes">&#38;nbsp;</xsl:text>

<![CDATA[
   ....
   Rest of h t m l
   ....
]]>

... rest of XSLT code here ...
-------------------------------------------------------------

-----Mensaje original-----
De: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx]En nombre de Amiceto Lopez
Enviado el: miércoles, 17 de octubre de 2001 16:25
Para: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Asunto: [xsl] How to deal with special characters in XSL?


ok maybe I din't explain my little problem about &nbsp;:

sometimes I neet <td>&nbsp;</td> for netscape right cell dispalying
or sometimes just &nbsp;&nbsp;&nbsp;&nbsp; to force a big white space

all in the middle of the html code outputed
I've tryed all the solutions given but no way till now

thanks for the patien
thanks with node-exist help cutlass and David

Aniceto Lopez


 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