Is there a tool available that can produce an HTML summary list of perl modules or scripts in a directory tree?
Given
=head1 NAME
wibble.pl - does wibble actions
I would like to see something like
<a href="docsforwibble">wibble.pl</a> - does wibble actions
<a href="docsforwobble">wobble.pl</a> - does wobble actions
It is easy to whip one out using Pod::Find from the Pod::Parser distribution.
The script below creates a rudimentary index file for anything it can find under my
site/lib/CGI
. It is meant as a demonstration. You are probably better off withpod2html
, but this script might still be useful.