Subject: | Entity handling |
It seems that XML::Bare does not do any named/numeric entity handling,
which may lead to problems. For example, in the below XML text both foo
elements contain "&" as its text values. But when parsing with XML::Bare
one shows up as "&" and the other as "&".
<root>
<foo>&</foo>
<foo><![CDATA[&]]></foo>
</root>
Regards,
Slaven