Hi,
There is a problem in the *Sablotron* Parser when using <![CDATA[
In the header of the HTML files which I am creating with XSL I want to use
javascript in the final comment tags.
By using XSL
<script type="text/javascript" language="javascript">
<![CDATA[
<!-- comments here -->
<!--
function someJavascript() {
if (something) {
thenDo.this();
}
}
-->
]]
<script>
I get HTML
<script type="text/javascript" language="javascript">
<!-- comments here -->
<!--
function someJavascript() {
if (something) {
thenDo.this();
}
}
-->
<script>
Rather than HTML
<script type="text/javascript" language="javascript">
<!-- comments here -->
<!--
function someJavascript() {
if (something) {
thenDo.this();
}
}
-->
<script>
Tim Watts
[EMAIL PROTECTED]