html-parser icon indicating copy to clipboard operation
html-parser copied to clipboard

The HTML-Parser distribution is is a collection of modules that parse and extract information from HTML documents

Results 5 html-parser issues
Sort by recently updated
recently updated
newest added

Hi, Is the perl-HTML-Parser component being maintained? It seems like it hasn't been updated for a long time. ^_^

RT-115034 Protect active parser from being freed URL: https://rt.cpan.org/Public/Bug/Display.html?id=115034 Author: sprout

``` my $tree = HTML::TreeBuilder->new(); $tree->parse("1122"); $tree->dump; ``` ``` @0 @0.0 @0.0.0 # Instead of @0.1.1.1 @0.1 @0.1.0 @0.1.0.0 "1" @0.1.0.1 "1" @0.1.1 @0.1.1.0 "2" @0.1.2 # Instead of @0.1.1.2...

A couple of changes I've had lying around for ages, brought up to date.

Up to now it was documented that internal DTDs inside the doctype declaration confuse HTML::Parser. Depending on the content of that internal dtd, the parser would return a text token...