in reply to Simplexml parsing html in xml entity in hash
The element's value isn't HTML (or XHTML).
<?xml version="1.0"?> <root> <element> <p>Rock &amp; Roll</p> </element> </root>
Rather, the element has XHTML children.
<?xml version="1.0"?> <root xmlns:html="http://www.w3.org/1999/xhtml"> <element> <html:p>Rock & Roll</html:p> </element> </root>
Faced with the latter, you'd normally just ask for the XML of the node (->toString() or some such). However, that won't work with XML::Simple because its parser is too lossy to handle typical XHTML.
|
|---|