Skip Menu |

This queue is for tickets about the HTML-Parser CPAN distribution.

Report information
The Basics
Id: 13370
Status: resolved
Priority: 0/
Queue: HTML-Parser

People
Owner: Nobody in particular
Requestors:
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 3.45
Fixed in: (no value)



Subject: HTML::Entities::decode_entities doesn't decode numeric entites above 255
perl -MHTML::Entities -e 'print HTML::Entities::decode_entities_old("&#60; &#8800;\n");' # prints "< &#8800;" This was something I thought should just work. Don't know if it's a design decision to not do it. perl 5.8.6 / HTML::Entities 1.29
Expanding of Unicode entities is not supported by the _old functions. But it is supported by the standard (and documented) entry points. $ perl -CS -MHTML::Entities -e 'print HTML::Entities::decode_entities("&#60; &#8800;\n");' < â