Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
:) help
#!/usr/bin/perl -- use strict; use warnings; use HTML::HTML5::Parser; use HTML::HTML5::ToText; binmode STDIN; binmode STDOUT, ':encoding(UTF-8)'; my $dom = HTML::HTML5::Parser->load_html(IO => \*STDIN); print HTML::HTML5::ToText ->with_traits(qw/ShowLinks ShowImages RenderTables/) ->new() ->process($dom); __END__ Can't locate object method "#COMMENT" via package "MooseX::Traits::__A +NON__::SERIAL::1" at HTML/HTML5/ToText.pm line 129, <STDIN> line 3016 +.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Can't locate object method "#COMMENT" via package "MooseX::Traits::__ANON__::SERIAL::1" at HTML/HTML5/ToText.pm line 129, <STDIN> line 3016.
by Anonymous Monk on Apr 17, 2013 at 05:20 UTC | |
by tobyink (Canon) on Apr 17, 2013 at 14:42 UTC | |
|
Re: Can't locate object method "#COMMENT" via package "MooseX::Traits::__ANON__::SERIAL::1" at HTML/HTML5/ToText.pm line 129, <STDIN> line 3016. (encoding)
by Anonymous Monk on Apr 17, 2013 at 05:41 UTC | |
by Anonymous Monk on Apr 17, 2013 at 16:54 UTC |