Flyerstarte, I don't get this:
- Xpath root/pageinfo/description does not match to your example
- Why do you want to copy xml nodes?
- There are no p tags inside your example.
In standard rss feeds the content of the description is html escaped, so there are no tags inside. It is neither Xml or Html. For example there is < instead of <p>.
Reading your example i assume that it contains the following XML as text:
<description>
<img src="http://www.ultragroove.co.uk/uploads/images/imagesHome/blive-1.jpg" border="0" alt="IPB Image" /><img src="http://www.ultragroove.co.uk/uploads/images/imagesHome/blive.jpg" border="0" alt="IPB Image" />
</description>
IE will shows it like this, please not the black font color inside description.
<description>
<img src="http://www.ultragroove.co.uk/uploads/images/imagesHome/blive-1.jpg" border="0" alt="IPB Image" /><img src="http://www.ultragroove.co.uk/uploads/images/imagesHome/blive.jpg" border="0" alt="IPB Image" />
</description>
You would normally access the node like <xsl:value-of select="description" disable-output-escaping="yes"/> .