CSS::Inliner::TreeBuilder - Parser that builds a HTML syntax tree
use CSS::Inliner::TreeBuilder;
foreach my $file_name (@ARGV) {
my $tree = CSS::Inliner::TreeBuilder->new();
$tree->parse_file($file_name);
print "Hey, here's a dump of the parse tree of $file_name:\n";
$tree->dump(); # a method we inherit from HTML::Element
print "And here it is, bizarrely rerendered as HTML:\n", $tree->as_HTML, "\n";
$tree = $tree->delete();
}
Class to handling parsing of generic HTML
This sub-module is derived from HTML::TreeBuilder. The
aforementioned module is almost completely incapable of handling
non-standard HTML4 documents commonly seen in the wild, let alone HTML5
documents. This module basically performs some minor adjustments to the way
parsing and printing occur such that an acceptable result can be reached
when handling real world documents.