Pod::Html::HtmlTre 0.91 review

Download
by rbytes.net on

Pod::Html::HtmlTree is a Perl module to convert pod files to html tree. SYNOPSIS use Pod::Html::HtmlTree; use Data::Dumper;

License: GPL (GNU General Public License)
File size: 3K
Developer: Tomohiro Teranishi
0 stars award from rbytes.net

Pod::Html::HtmlTree is a Perl module 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 $files = $p->create;
print Dumper ( $files );

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

Requirements:
Perl

Pod::Html::HtmlTre 0.91 keywords