The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

 Pod::Html::HtmlTree - class to convert pod files to html tree

SYNOPSIS

 use Pod::Html::HtmlTree;
 use Data::Dumper;

 my $p = Pod::Html::HtmlTree->new;
 $p->indir    ( '/usr/lib/perl5/site_perl/5.8.3/Pod' );
 $p->outdir   ( '/tmp/pod'      );      
 $p->mask_dir ( 0777 ); # default is 0775
 $p->mask_html( 0777 ); # default is 0664
 $p->pod_exts ( [ 'pm' , 'pod' ] ); # default is [pm,pod,cgi,pl]
 # * you can use all arguments same as Pod::Html has except infile and outfile.
 # * use * 0 * for argument value which does not require to have value.
 $p->args({
    css =>'http://localhost/pod.css',
    index => 0,
 });

 my $outfiles = $p->create;
 print Dumper ( $outfiles ); 

DESCRIPTION

 This module does same as Pod::Html module but make html tree.
 Read Pod::Html document for more detail.

AUTHOR

 Tomohiro Teranishi < tomohiro.teranishi@gmail.com >

SEE ALSO

 perldoc , Pod::Html

COPYRIGHT

 This program is distributed under the Artistic License