Code: Select all
<script type="text/javascript">
//<![CDATA[
document.write('something nasty<>&');
//]]>
</script>
Then Inkscape will remove CDATA section and replace it with &something; notation like this:
Code: Select all
<script type="text/javascript">
//<![CDATA[
document.write('something nasty<>&');
//]]>
</script>
The meaning is equivalent, but this behaviour is unpleasant, because it could make the script unreadable.
This bug was treated in https://bugs.launchpad.net/inkscape/+bug/199656
My Problem is, that Inkscape still is changing CDATA section to &something.
Are there any Properties I have to set to avoid this or was the bug improperly fixed?
Of Course I have downloaded and installed the latest developper-nightly-build of Inkscape.