Subject: | Pod::PlainText does not support encoding |
Pod::PlainText does not seem to like specifying an encoding. This has
been reported here before:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=587733#15
$ echo -e "=encoding utf8\n\n" | perl -MPod::PlainText -le 'my $parser =
Pod::PlainText->new();$parser->parse_from_filehandle;'
Can't locate object method "cmd_encoding" via package "Pod::PlainText"
at /usr/local/share/perl/5.14.2/Pod/PlainText.pm line 162, <STDIN> line 2.
$ perl -MPod::PlainText -e 'print $Pod::PlainText::VERSION;'
2.05
$ perl -v
This is perl 5, version 14, subversion 2 (v5.14.2) built for
x86_64-linux-gnu-thread-multi
(with 75 registered patches, see perl -V for more detail)
Copyright 1987-2011, Larry Wall
Perl may be copied only under the terms of either the Artistic License
or the
GNU General Public License, which may be found in the Perl 5 source kit.
Complete documentation for Perl, including FAQ lists, should be found on
this system using "man perl" or "perldoc perl". If you have access to the
Internet, point your browser at http://www.perl.org/, the Perl Home Page.