in reply to L tags in POD, with search.cpan and POD2HTML
ActivePerl's documentation (the HTML docs, both in PPM packages and that comes with) is generated by ActiveState::DocTools (not on CPAN), by calling Pod::Html::pod2html on all pods that Pod::Find::pod_find (where the output file does not yet exist or is older then the input file), with the args...
(where all vars are pretty much what you expect them to be.)my @args = ( "--htmldir=$dir", "--htmlroot=$back", "--podroot=.", "--podpath=$podpath", "--libpods=perlfunc:perlguts:perlvar:perlrun:perlopt", "--header", "--infile=$infile", "--outfile=$outfile", "--css=$back/$css", "--quiet", );
(In other words, it only makes one pass.)
|
|---|