So I'm parsing some HTML with HTML::TreeBuilder, my new favourite module:
my $tree = HTML::TreeBuilder->new_from_content($page);
$tree->elementify();
at which point it dies, saying "Parsing of undecoded UTF-8 will give garbage when decoding entities at /Library/Perl/HTML/TreeBuilder.pm line 96.".
Now my first problem is that line 96 is the rather unedifying "$new->parse($whunk);". So, after a certain amount of trial and error I track that down to one of the dependent modules, HTML::Parser, which tells me that "The solution is to use the Encode::encode_utf8() on the data before feeding it to the $p->parse()".
So I do this:
$page = Encode::encode_utf8($page);
my $tree = HTML::TreeBuilder->new_from_content($page);
$tree->elementify();
But it doesn't seem to make any difference. Same error.
So I guess I have three questions:
- What's the best way to track down error messages like that? I was completely mystified and there were a lot of other modules involved.
- What should I be doing to ensure the Parser won't choke on this particular HTML?
- In the more general case, where some HTML will be UTF-8 and some won't, how do I code? I can't utf-encode all HTML, just in case it's UTF-8, but Parser chokes as soon as it finds the HTML is UTF-8, so how do I create an if-clause which figures that out ahead of time?
($_='kkvvttuu bbooppuuiiffss qqffssmm iibbddllffss')
=~y~b-v~a-z~s; print
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.