in reply to Re^3: More efficient use of HTML::TokeParser::Simple
in thread More efficient use of HTML::TokeParser::Simple

What does
$tree->elementify();
do here? It appears to run ok if it is commented out. I've often seen it in snippets and have no idea what purpose it serves.

Replies are listed 'Best First'.
Re^5: More efficient use of HTML::TokeParser::Simple
by GrandFather (Saint) on Oct 30, 2008 at 19:52 UTC

    The HTML::TreeBuilder documentation is a good place to start. It says that elementify ():

    This changes the class of the object in $root from HTML::TreeBuilder to the class used for all the rest of the elements in that tree (generally HTML::Element). Returns $root.

    and goes on to say:

    For most purposes, this is unnecessary, but if you call this after (after!!) you've finished building a tree, then it keeps you from accidentally trying to call anything but HTML::Element methods on it. ...

    Perl reduces RSI - it saves typing