in reply to Re: pod2html - How do I make mine look like CPAN?
in thread pod2html - How do I make mine look like CPAN?
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
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: pod2html - How do I make mine look like CPAN?
by Anonymous Monk on Jan 01, 2013 at 07:26 UTC | |
by gideondsouza (Pilgrim) on Jan 01, 2013 at 08:33 UTC |