Subject: RE: 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> </td> for netscape right cell dispalying
> or sometimes just 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">&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: How to deal with special characters in XSL?
ok maybe I din't explain my little problem about :
sometimes I neet <td> </td> for netscape right cell dispalying
or sometimes just 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
|