Help for this page

Select Code to Download


  1. or download this
    $p->handler( start => \&a_start_handler, "tagname,self,attr" );
    $p->unbroken_text( 1 );
    ...
      $self->handler(end => undef );
      $self->handler(text => undef );
    }
    
  2. or download this
        $self->handler(text => sub { $text = shift; $text =~ s/\n//g; },"d
    +text");
    
  3. or download this
    $self->handler( text => sub { $text = shift; $text =~ s/\n//g; },"text
    +");