in reply to introspection, or running pod2html on itself
#!/usr/bin/perl -w use strict; use Pod::Html; # Set the Pod::Html options such as --outfile my @html_options = ('--title=My Test'); # Some getopt code here for program options. # ... pod2html __FILE__, @html_options; __END__ =head1 TEST Some pod here. =cut
See also Pod::Usage for a text, rather than Html, way of displaying the embedded documentation.
--
John.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: introspection, or running pod2html on itself
by punkish (Priest) on Sep 15, 2005 at 16:15 UTC | |
by punkish (Priest) on Sep 15, 2005 at 20:46 UTC | |
by Anonymous Monk on Oct 23, 2009 at 12:15 UTC |