Algorithm-HowSimilar
view release on metacpan or search on metacpan
misc/make_manifest.pl view on Meta::CPAN
# make HTML from the pod
sub make_html {
my $file = shift;
(my $name) = $file =~ m/([^\/\\]+)\.pm$/;
print "Writing html/$name.html\n";
pod2html( "--infile=$file",
"--header",
"--title=$name.pm",
"--css=${htmldir}docs.css",
"--outfile=$htmldir$name.html",
"--quiet" );
return "$name.html";
}
sub write_file {
my $file = shift;
open F, ">$file" or die "Can't write $file: $!\n";
print F for @_;
close F;
}
( run in 0.273 second using v1.01-cache-2.11-cpan-4d50c553e7e )