xsl-list
[Top] [All Lists]

Re: [xsl] XSL and js comments (for Google AdSense)

2007-02-21 04:56:56
John Steel wrote:
The pattern for Google js ads is

<script type="text/javascript"><!--
google_ad_client = "pub-0000000000000000";
...
google_ad_format = "468x60_as";
//--></script>

<snip/>

What have I missed please?


You are feeding input XML to an XSLT engine. In XML, <!-- ... --> is a
comment, and the contents of your script tag are being read as such, and
discarded.
You could try the following:
<script type="....">
      <![CDATA[<!--]]>

// Your script code here

      <![CDATA[//-->]]>
</script>

        # r

-- 
Ronan Klyne
Business Collaborator Developer
Tel: +44 (0)870 163 2555
ronan(_dot_)klyne(_at_)groupbc(_dot_)com
www.groupbc.com

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--