Hello, world !
When I put a CDATA section in a Nitro .xhtml file, it is removed by
Nitro's parser.
example :
I write :
<script>
// <![CDATA[
alert('hello world')
// ]]>
</script>
I get in the final page :
<script>
//
</script>
Is there a way to put a CDATA section in a Nitro page without it being removed ?