It turns out that your problem is not based on the version of the module but on how it was compiled.

The functionality appears to be there in the version with which you have a problem (HTML::Entites 1.27, HTML-Parser 3.35), but it's conditional on UNICODE_ENTITIES being defined when the module was compiled.

use HTML::Entities qw( _decode_entities ); print(HTML::Entities::UNICODE_SUPPORT(), "\n"); # Not really, but good enough and avoids warning. binmode(STDOUT, ':encoding(UTF-8)'); my $x = "ř"; _decode_entities($x, {}); print("$x\n");
>this_perl script.pl 1 [some char] >that_perl script.pl 0 ř

Up to HTML-Parser 3.38, perl Makefile.PL prompted whether UNICODE support was desired or not and would set UNICODE_ENTITIES accordingly.

In 3.40, UNICODE_ENTITIES was renamed to UNICODE_HTML_PARSER, and it's solely based on the Perl version. (It's defined for Perl 5.8+.)

There's really not much you can do if the user didn't compile the functionality you want. In this case, there's no way to add a hack, short of rewriting the entire function. You should add a dependency on HTML::Entities::UNICODE_SUPPORT returning true. When it's not, request that the user either recompile the module with UNICODE support or upgrade to at least HTML-Parser 3.40.


In reply to Re: Decoding unicode entities with HTML::Parser by ikegami
in thread Decoding unicode entities with HTML::Parser by Sixtease

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.