Page 1 of 1

Re: xml parsing with “&”, “®”, but still getting errors

Posted: Wed Oct 03, 2018 7:32 am
by Radu
Hi,

If you have an HTML document containing HTML-specific entity references probably a web browser knows how to expand and display those.
But a plain XML processor will know how to expand only 4 named entities: <, > &amp, " and &apos;
And of course any XML processor also knows how to expand character entities (encoded either in hexadecimal or decimal format).

Regards,
Radu