On Tue Jun 23 14:32:34 2015, pz89@o2.pl wrote:
Show quoted text> Hello,
> I found bug in HTML::FormatRTF module which not handle 'no_prolog'
> option.Example in shell:
> perl -MHTML::FormatRTF -e "my \$html
> ='<html><body>xyz</body></html>'; print
> HTML::FormatRTF->new(no_prolog=>1)-
> >format_string(\$html);"Best regards,
Same issue for e.g. fontname_body. This seems to be caused by a bug in sub configure().
Instead of single shift:
my ($self, $hash) = shift;
it should be something like:
my ( $self ) = shift;
my ( $hash ) = shift;