L
Lars Eighner
Does anyone know of a Pod to HTML formatter that will run *online*?
Does anyone know of a Pod to HTML formatter that will run *online*?
How about pod2html? (minimally tested)
#!/usr/bin/perl
use strict;
use warnings;
use CGI;
my $cgi=CGI->new;
print $cgi->header;
# if your perl sets -T when run under a webserver
$ENV{PATH}='';
print `/usr/bin/pod2html /usr/lib/perl5/5.8.4/Pod/Text.pm`;
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.