From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

NAME

Plagger::Plugin::Filter::Base - Base filter class to handle HTML snippets

SYNOPSIS

sub filter {
my($self, $body) = @_;
# filter $body
# store how many chunks are filtered into $count
return ($count, $body);
}

DESCRIPTION

Plagger::Plugin::Filter::Base is a base class for Plagger::Plugin::Filter to handle entry body with as much care as possible not to break HTML structure.

Your filter will support text_only configuration by subclassing this module:

- module: Filter::Foo
config:
text_only: 1

AUTHOR

Tatsuhiko Miyagawa

SEE ALSO

Plagger, HTML::Parser