this is a windows utility (a wrapper for POD2HTML, really) to make HTML pod pages that use activestate's css. see pod for more.
#! perl.exe -w =pod =head1 Overview Modules installed with PPM automatically get HTML pod created for them. Unfortunately PPM has far fewer packages than CPAN, so it's quite likely that you'll turn to CPAN for a module at some point in time and CPAN doesn't care to automatically generate these files for you. This script attempts to alleviate that problem by assisting the user with pod2html, which can be tedious to use when running with multiple modules. Be sure to modify PERLPATH and HTMLPATH to values that make sense for your system. This script is released into the public domain. =head1 Usage $0 Module::Name1 Module::Name2 ... Module::NameN =cut use strict; use File::Path; use constant PERLPATH =>"D:/perl/site/lib"; use constant HTMLPATH =>"D:/perl/html/site/lib"; foreach (@ARGV){ my @mod = split /::/; my $in = join '/',PERLPATH,@mod; $in.=".pm"; my $fn = pop @mod; my $out = join '/',HTMLPATH, @mod; mkpath $out; $out .="/$fn.html"; my $css .="../" x (@mod + 1); $css .="active.css"; system "pod2html --infile=$in --outfile=$out --css=$css" }

In reply to perldocker by boo_radley

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.