This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: How to deal with special characters in XSL?


> 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@lists.mulberrytech.com
[mailto:owner-xsl-list@lists.mulberrytech.com]En nombre de Amiceto Lopez
Enviado el: miércoles, 17 de octubre de 2001 16:25
Para: xsl-list@lists.mulberrytech.com
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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]