chazubell has asked for the wisdom of the Perl Monks concerning the following question:
{ my ( $tmp_fh, $tmp_file ) = tempfile( UNLINK => 1 ); my @data = <DATA>; print $tmp_fh @data; close $tmp_fh; $tmp_fh->autoflush; my $out_file = "${file_name}.html"; my $title = $file_name . $suffix; pod2html("pod2html","--backlink", "-infile=$tmp_file", "-outfi +le=$out_file", "title=$title", "--verbose" ); }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Embedding Pod::HTM in a Script
by McA (Priest) on Nov 17, 2014 at 15:46 UTC | |
Re: Embedding Pod::HTM in a Script
by Anonymous Monk on Nov 18, 2014 at 00:55 UTC | |
by chazubell (Beadle) on Nov 20, 2014 at 18:59 UTC |