| HTML-Shakan documentation | Contained in the HTML-Shakan distribution. |
HTML::Shakan::Filter::WhiteSpace - remove white space
TextField(name => 'body', filters => [qw/WhiteSpace/])
remove trailing white spaces.
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__