show/hide this revision's text 3 fixed example code

The CDATA blocks should have worked; they always have for me. What's your disable-output-escaping value?

UPDATE: Using Xalan, with disable-output-escaping on its default, which I'm pretty sure is no, I have the following in my working XSL files:

  • No CDATA block:

    for (var i = 0; i < 0 foo.length; i++) { … }

  • CDATA block:

    <![CDATA[

    for (var i = 0; i < foo.length; i++) { … }

    ]]>

show/hide this revision's text 2 Gave working examples

The CDATA blocks should have worked; they always have for me. What's your disable-output-escaping value?

UPDATE: Using Xalan, with disable-output-escaping on its default, which I'm pretty sure is no, I have the following in my working XSL files:

  • No CDATA block:

    for (var i = 0; i &lt; 0; i++) { }

  • CDATA block:

    <![CDATA[

    for (var i = 0; i < foo.length; i++) { }

    ]]>

show/hide this revision's text 1

The CDATA blocks should have worked; they always have for me. What's your disable-output-escaping value?