Help for this page

Select Code to Download


  1. or download this
    # this first bit is right out of the HTML::Parser perldoc
    sub title_handler {
    ...
            "tagname,self"
        );
    }
    
  2. or download this
    sub insertFile {
        my $file = shift;
    ...
        $p->handler( start => \&date_handler, "tagname,self" );
        $p->parse_file($file);
    .................