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: writing   to html files using XSL


 For MSXML, we had to use:
<xsl:text disable-output-escaping="yes">&amp;nbsp;</xsl:text>

A bit cumbersome, but we put it in a template in an imported stylesheet:

<xsl:template name="nbsp">
   <xsl:text disable-output-escaping="yes">&amp;nbsp;</xsl:text>
</xsl:template>

and the text required to generate &nbsp; is abbreviated to:

<xsl:call-template name="nbsp"/>

/Jonas


-----Original Message-----
From: Sridhar_Ramachandran@i2.com
To: xsl-list@mulberrytech.com
Sent: 2000-10-18 23:34
Subject: writing &nbsp; to html files using XSL

                                            
 Is there any way to write out &nbsp; to an 
 html file from XSL. I have blank <TD></TD> 
 tags which are rendered ok in IE5 but do   
 look right in Netscape Navigator. I tried  
 <td> &nbsp; but XALAN errors out with a    
 "Entity not defined..." msg.               
                                            
 Thanks in Advance                          
 Sridhar                                    
                                            





 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]