Hi all - 
<div><br></div><div>read-xml apparently does not normalize/strip the &lt;![CDATA[ ... ]]&gt; wrapper when creating the cdata struct.  Is there a reason why they are not stripped? </div><div><br></div><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;">
<div><div>#lang scheme</div></div><div><div>(require xml) </div></div><div><div><br></div></div><div><div>(define xml &quot;&lt;test&gt;&lt;![CDATA[this is cdata]]&gt;&lt;/test&gt;&quot;)</div></div><div><div><br></div></div>
<div><div>(define xexpr (xml-&gt;xexpr (document-element (read-xml (open-input-string xml)))))</div></div><div><div><br></div></div><div><div>(cdata-string (last xexpr)) </div></div><div>;; =&gt; &quot;&lt;![CDATA[this is cdata]]&gt;&quot;</div>
<div>;; better as =&gt; &quot;this is cdata&quot; </div></blockquote><div><br></div><div>Thanks,</div><div>yc</div><div><br></div>