Given this XML snippet:
<title><![CDATA[Resizing & Cropping GIF and PNG images issue]]></title>
What is the correct string that should be parsed by the XML parser for the <title> element content?
1. "Resizing & Cropping GIF and PNG images issue"
2. "Resizing & Cropping GIF and PNG images issue"
Note: I'm using the ROME feed parsing library for Java, which parses this as #2, but from my understanding of CDATA blocks it should be #1. I've found evidence on the web that suggests #2 is both right (also here) and wrong - so I'm a bit perplexed (and curious) about this.