## 2020 06 19.02
+ - Fix issue RT #133161, perltidy -html was not working on pod
+
- Fix issue git #33, allow control of space after '->'
- Vertical alignment has been improved.
#{ eval "use HTML::Entities"; $missing_html_entities = $@; }
BEGIN {
- if ( !eval { use HTML::Entities; 1 } ) {
+ if ( !eval { require HTML::Entities; 1 } ) {
$missing_html_entities = $@ ? $@ : 1;
}
- if ( !eval { use Pod::Html; 1 } ) {
+ if ( !eval { require Pod::Html; 1 } ) {
$missing_pod_html = $@ ? $@ : 1;
}
}
Perl::Tidy::Die( $_[0] );
};
- pod2html(@args);
+ Pod::Html::pod2html(@args);
}
$fh_tmp = IO::File->new( $tmpfile, 'r' );
unless ($fh_tmp) {