Apache-Clickable

 view release on metacpan or  search on metacpan

lib/Apache/Clickable.pm  view on Meta::CPAN


require HTML::Parser;
@Apache::Clickable::Parser::ISA = qw(HTML::Parser);

use Email::Find 0.04;
use URI::Find;

sub new {
    my($class, %args) = @_;

    my $self = $class->SUPER::new;
    $self->{apr} = $args{apr};
    $self->{currently_in_a} = 0;
    return $self;
}

sub comment {
    my($self, $comment) = @_;
    $self->{output} .= "<!--$comment-->";
}



( run in 1.233 second using v1.01-cache-2.11-cpan-49f99fa48dc )