HTML::Shakan::Filter::WhiteSpace - remove white space


HTML-Shakan documentation Contained in the HTML-Shakan distribution.

Index


Code Index:

NAME

Top

HTML::Shakan::Filter::WhiteSpace - remove white space

SYNOPSIS

Top

    TextField(name => 'body', filters => [qw/WhiteSpace/])

DESCRIPTION

Top

remove trailing white spaces.

AUTHORS

Top

Tokuhiro Matsuno


HTML-Shakan documentation Contained in the HTML-Shakan distribution.

package HTML::Shakan::Filter::WhiteSpace;
use Any::Moose;
with 'HTML::Shakan::Role::Filter';

sub filter {
    my $self = shift;

    local $_ = shift;
    s/^\s+//;
    s/\s+$//;
    $_;
}

no Any::Moose;
__PACKAGE__->meta->make_immutable;

__END__