Utilizando entidades html dentro del contenido
Código:
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Alimentación | EROSKI CONSUMER</title>
<link rel="self" href="http://www.consumer.es/sindicacion/rss/alimentacion/"/>
<updated>2013-02-21T17:29:18+01:00</updated>
<author>
<name>EROSKI CONSUMER</name>
<email>[email protected]</email>
<uri>http://www.consumer.es/</uri>
</author>
<logo>http://static.consumer.es/www/sindicacion/rss/imgs/logo-consumer.png</logo>
<id>http://www.consumer.es/sindicacion/rss/alimentacion/</id>
<entry>
<title>Seis preguntas sobre la pasta</title>
<link href="http://www.consumer.es/web/es/alimentacion/guia-alimentos/cereales-y-derivados/2013/03/08/216005.php?utm_source=feedburner&utm_medium=feed&utm_campaign=eroski-consumer%2Falimentacion"/>
<id>http://www.consumer.es/web/es/alimentacion/guia-alimentos/cereales-y-derivados/2013/03/08/216005.php?utm_source=feedburner&utm_medium=feed&utm_campaign=eroski-consumer%2Falimentacion</id>
<updated>2013-02-21T17:29:18+01:00</updated>
<content type="html">
<p>Muchas personas creen que la pasta engorda, aunque no existe evidencia científica que respalde esta idea</p>
<center>
<a href="http://www.consumer.es/web/es/alimentacion/guia-alimentos/cereales-y-derivados/2013/03/08/216005.php?utm_source=feedburner&utm_medium=feed&utm_campaign=eroski-consumer%2Falimentacion">
<img src="http://static.consumer.es/www/imgs/2013/02/pasta-dudas-listg.jpg" alt=""/>
</a>
</center>
</content>
</entry>
</feed>
ó encerrando el mismo dentro de un bloque CDATA
Código:
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>prueba simplepie</title>
<link>http://foros.emprear.com</link>
<description>test</description>
<item>
<title>Feed 1</title>
<link>http://foros.emprear.com</link>
<description>Test</description>
</item>
<item>
<title>Feed 2</title>
<link>http://www.w3schools.com/xml</link>
<description><![CDATA[ <img src="https://googledrive.com/host/0B5cDQ-G3aVMQMkdaelNsdTZ6TDQ/isabelM/img/casablanca-250x350.jpg" alt=""> ]]></description>
</item>
</channel>
</rss>
Saludos