
Catalyst::Plugin::HTML::Scrubber - Catalyst plugin for scrubbing/sanitizing html

use Catalyst qw[HTML::Scrubber];
MyApp->config(
scrubber => [
default => 0,
comment => 0,
script => 0,
process => 0,
allow => [qw [ br hr b a h1]],
],
);

On request, sanitize HTML tags in all params.

You can use options of HTML::Scrubber.
Sanitize HTML tags in all parameters.


Hideo Kimura, <hide@hide-k.net<gt>

Copyright (C) 2005 by Hideo Kimura
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.