|
|
|
Your skill will accomplish what the force of many cannot |
|
| PerlMonks |
perlman:Pod::Htmlby root (Monk) |
| on Dec 23, 1999 at 00:52 UTC ( [id://1235]=perlfunc: print w/replies, xml ) | Need Help?? |
Pod::HtmlSee the current Perl documentation for Pod::Html. Here is our local, out-dated (pre-5.6) version: ![]() Pod::Html - module to convert pod files to HTML
![]()
use Pod::Html;
pod2html([options]);
![]() Converts files from pod format (see perlpod) to HTML format. It can automatically generate indexes and cross-references, and it keeps a cache of things it knows how to cross-reference.
ARGUMENTSPod::Html takes the following arguments:
EXAMPLE
pod2html("pod2html",
"--podpath=lib:ext:pod:vms",
"--podroot=/usr/src/perl",
"--htmlroot=/perl/nmanual",
"--libpods=perlfunc::perlguts:perlvar:perlrun:perlop",
"--recurse",
"--infile=foo.pod",
"--outfile=/perl/nmanual/foo.html");
AUTHORTom Christiansen, <tchrist@perl.com>.
BUGS
Has trouble with
SEE ALSO
COPYRIGHTThis program is distributed under the Artistic License. |
|