Subject: | Failed to work under Windows |
Date: | Wed, 28 Nov 2007 19:39:33 +0800 |
To: | bug-html-stripscripts-parser [...] rt.cpan.org |
From: | "howard chen" <howachen [...] gmail.com> |
Hello,
Just noticed that the module failed to work under Windows (ActiveState Perl)
Example Codes:
###################
use HTML::StripScripts::Parser();
my $hss = HTML::StripScripts::Parser->new(
{
Context => 'Inline', ## HTML::StripScripts configuration
},
strict_comment => 1, ## HTML::Parser options
strict_names => 1,
);
my $html = "<i>test</i>";
print $hss->filter_html($html);
###################
Show quoted text
---------- Capture Output ----------
Can't locate object method "filter_html" via package
"HTML::StripScripts::Parser" at C:\test.pl line 15.
The module was installed via ppm, and I can't find the method
"filter_html" in the HTML::StripScripts::Parser pm on my perl lib
folder.
Any idea?
Thanks.