Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I'd like to create HTML documentation from a Perl module with POD in the "CPAN style" or similar. pod2html creates only black on white. Even with "pod2html --css style.css" (style.css from cpan.org) the result is not very nice.
Another question: I noticed, that POD is very limited to create documentation if you want to document a Perl Module with more than one package/class in it:
If you use "=head3 new" to document constructors and there are more than one, the HTML file which pod2html generates has problems with links. There are more than one <a name="new"> in it and you have to use "=head3 Class::new" or similar.
Is there a better POD to HTML parser than pod2html or is there a better code documenting system for Perl than POD?
Thanks,
Thomas
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: POD questions
by Juerd (Abbot) on Apr 06, 2003 at 18:37 UTC | |
|
Re: POD questions
by The Mad Hatter (Priest) on Apr 06, 2003 at 18:40 UTC | |
|
Re: POD questions
by omnibus (Scribe) on Apr 07, 2003 at 15:27 UTC |