logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

CSS::Inliner::TreeBuilder - Parser that builds a HTML syntax tree

Description

       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.

perl v5.40.1                                       2025-03-22                     CSS::Inliner::TreeBuilder(3pm)

Name

       CSS::Inliner::TreeBuilder - Parser that builds a HTML syntax tree

Synopsis

        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();
        }

See Also