in reply to pod2html - How do I make mine look like CPAN?

See Pod::HtmlEasy. By dafault it converts in a look like CPAN.

Graciliano M. P.
"Creativity is the expression of the liberty".

  • Comment on Re: pod2html - How do I make mine look like CPAN?

Replies are listed 'Best First'.
Re^2: pod2html - How do I make mine look like CPAN?
by gideondsouza (Pilgrim) on Jan 01, 2013 at 07:22 UTC

    Thanks for this.

    Additionally I have this file somewhere tohtml.pl. It looks like this:

    #!/usr/bin/perl use strict; use warnings; use Pod::HtmlEasy; my $pod_file = shift or die "Specify POD file as argument"; my $podhtml = Pod::HtmlEasy->new(); my $html = $podhtml->pod2html( $pod_file); print $html;

    Then I can do this to generate CPAN like pod and proof read it:
    ./tohml.pl MyModule.pm > out.html

        Ah jeez. Thanks! :)