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: Generating Javascript with HTML tags



   Below is a fragment of my XSL file:

   <?xml version="1.0" ?> 
   <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
   version="1.0"> 
   <xsl:output method="text"/>
   ...

   fldr1 = insFld(fT, gFld("<b>FldrDesc (2)</b>"));
   ...
   </xsl:stylesheet>

   What comes out is: 

   fldr1 = insFld(fT, gFld("FldrDesc (2)"));

   How to I retain the <b> tags?

   Edith

You have asked for text output, so all element nodes get discarded.
You don't want a b node, you want the text "<b>" which means that your
XSL should look like



   fldr1 = insFld(fT, gFld("&lt;b&gt;FldrDesc (2)&lt;/b&gt;"));

or

<![CDATA[ fldr1 = insFld(fT, gFld("<b>FldrDesc (2)</b>"));]]>


David

I tried both and it actually bolds the words "FldrDesc (2)".  Can anyone
else
think of another way of keeping it a literal string of "<b>" and "</b>"?

Edith


 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]