bash-2.05$ cat test1.pl =head2 PASS You can pod2html this =cut bash-2.05$ perl -MPod::Html -e 'pod2html("--infile=./test1.pl")' -e: no title for ./test1.pl at /usr/libdata/perl/5.00503/Pod/Html.pm line 330. ./test1.pl [snip] bash-2.05$ #### bash-2.05$ cat test2.pl use Pod::Html; =head2 FAIL You can't pod2html this =cut bash-2.05$ perl -MPod::Html -e 'pod2html("--infile=./test2.pl")' bash-2.05$ #### bash-2.05$ cat test3.pl # pod2html - not even in comments? =head2 FAIL You can't pod2html this =cut bash-2.05$ perl -MPod::Html -e 'pod2html("--infile=./test3.pl")' bash-2.05$