/usr/share/doc/perl-HTML-Parser/eg
NameSizeModeActions
hanchors11960644editdlrm
hbody7290644editdlrm
hdisable7400644editdlrm
hdump7080644editdlrm
hform25020644editdlrm
hlc7170644editdlrm
hrefsub30680644editdlrm
hstrip17670644editdlrm
htext6120644editdlrm
htextsub9360644editdlrm
htitle4610644editdlrm
Edit: /usr/share/doc/perl-HTML-Parser/eg/hdump (708B)
#!/usr/bin/perl # This script will output event information as it parses the HTML document. # This gives the user a "Parser's eye view" of an HTML document. use strict; use warnings; use HTML::Parser (); use Data::Dumper qw(Dumper); sub h { my ($event, $line, $column, $text, $tagname, $attr) = @_; my @d = (uc(substr($event, 0, 1)) . " L$line C$column"); substr($text, 40) = "..." if length($text) > 40; push(@d, $text); push(@d, $tagname) if defined $tagname; push(@d, $attr) if $attr; print Dumper(@d), "\n"; } my $p = HTML::Parser->new(api_version => 3); $p->handler(default => \&h, "event, line, column, text, tagname, attr"); $p->parse_file(@ARGV ? shift : *STDIN);