Pod::Html - module to convert pod files to HTML

NAME SYNOPSIS DESCRIPTION FUNCTIONSpod2html htmlify anchorify ENVIRONMENT AUTHOR SEE ALSO COPYRIGHT NAME Pod::Html - module to convert pod files to HTML SYNOPSIS use Pod::Html; pod2html([options]); DESCRIPTION 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. FUNCTIONS pod2html pod2html("pod2html", "--podpath=lib:ext:pod:vms", "--podroot=/

Pod::Find - find POD documents in directory trees

NAME SYNOPSIS DESCRIPTIONpod_find( { %opts } , @directories ) simplify_name( $str ) pod_where( { %opts }, $pod ) contains_pod( $file , $verbose ) AUTHOR SEE ALSO NAME Pod::Find - find POD documents in directory trees SYNOPSIS use Pod::Find qw(pod_find simplify_name); my %pods = pod_find({ -verbose => 1, -inc => 1 }); foreach(keys %pods) { print "found library POD `$pods{$_}' in $_\n"; } print "podname=",simplify_name('a/b/c/mymodule.pod'),"\n"; $location = pod_where( { -inc =>

Pod::Escapes - for resolving Pod E<...> sequences

NAME SYNOPSIS DESCRIPTION GOODIES CAVEATS SEE ALSO REPOSITORY COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Escapes - for resolving Pod E<...> sequences SYNOPSIS use Pod::Escapes qw(e2char); ...la la la, parsing POD, la la la... $text = e2char($e_node->label); unless(defined $text) { print "Unknown E sequence \"", $e_node->label, "\"!"; } ...else print/interpolate $text... DESCRIPTION This module provides things that are useful in decoding Pod E<...> sequences. Presumably, i

Pod::Functions - Group Perl's functions a la perlfunc.pod

NAME SYNOPSIS DESCRIPTION NAME Pod::Functions - Group Perl's functions a la perlfunc.pod SYNOPSIS use Pod::Functions; my @misc_ops = @{ $Kinds{ 'Misc' } }; my $misc_dsc = $Type_Description{ 'Misc' }; or perl /path/to/lib/Pod/Functions.pm This will print a grouped list of Perl's functions, like the Perl Functions by Category in perlfunc section. DESCRIPTION It exports the following variables: %Kinds This holds a hash-of-lists. Each list contains the functions in the category the key denote

Pod::Checker, podchecker() - check pod documents for syntax errors

NAME SYNOPSIS OPTIONS/ARGUMENTSpodchecker() DESCRIPTION DIAGNOSTICSErrors Warnings Hyperlinks RETURN VALUE EXAMPLES INTERFACE AUTHOR NAME Pod::Checker, podchecker() - check pod documents for syntax errors SYNOPSIS use Pod::Checker; $num_errors = podchecker($filepath, $outputpath, %options); my $checker = new Pod::Checker %options; $checker->parse_from_file($filepath, \*STDERR); OPTIONS/ARGUMENTS $filepath is the input POD to read and $outputpath is where to write POD syntax error mes

pod2text - Convert POD data to formatted ASCII text

NAME SYNOPSIS DESCRIPTION OPTIONS EXIT STATUS DIAGNOSTICS ENVIRONMENT SEE ALSO AUTHOR COPYRIGHT AND LICENSE NAME pod2text - Convert POD data to formatted ASCII text SYNOPSIS pod2text [-aclostu] [--code] [--errors=style] [-i indent] [-q quotes] [--nourls] [--stderr] [-w width] [input [output ...]] pod2text -h DESCRIPTION pod2text is a front-end for Pod::Text and its subclasses. It uses them to generate formatted ASCII text from POD source. It can optionally use either termcap sequences or ANSI

pod2usage - print usage messages from embedded pod docs in files

NAME SYNOPSIS OPTIONS AND ARGUMENTS DESCRIPTION SEE ALSO AUTHOR NAME pod2usage - print usage messages from embedded pod docs in files SYNOPSIS pod2usage [-help] [-man] [-exit exitval] [-output outfile] [-verbose level] [-pathlist dirlist] [-formatter module] file OPTIONS AND ARGUMENTS -help Print a brief help message and exit. -man Print this command's manual page and exit. -exit exitval The exit status value to return. -output outfile The output file to print to. If the special na

pod2man - Convert POD data to formatted *roff input

NAME SYNOPSIS DESCRIPTION OPTIONS EXIT STATUS DIAGNOSTICS EXAMPLES BUGS SEE ALSO AUTHOR COPYRIGHT AND LICENSE NAME pod2man - Convert POD data to formatted *roff input SYNOPSIS pod2man [--center=string] [--date=string] [--errors=style] [--fixed=font] [--fixedbold=font] [--fixeditalic=font] [--fixedbolditalic=font] [--name=name] [--nourls] [--official] [--quotes=quotes] [--release[=version]] [--section=manext] [--stderr] [--utf8] [--verbose] [input [output] ...] pod2man --help DESCRIPTION pod2m

pod2html - convert .pod files to .html files

NAME SYNOPSIS DESCRIPTION ARGUMENTS AUTHOR BUGS SEE ALSO COPYRIGHT NAME pod2html - convert .pod files to .html files SYNOPSIS pod2html --help --htmldir=<name> --htmlroot=<URL> --infile=<name> --outfile=<name> --podpath=<name>:...:<name> --podroot=<name> --cachedir=<name> --flush --recurse --norecurse --quiet --noquiet --verbose --noverbose --index --noindex --backlink --nobacklink --header --

pipe

pipe READHANDLE,WRITEHANDLE Opens a pair of connected pipes like the corresponding system call. Note that if you set up a loop of piped processes, deadlock can occur unless you are very careful. In addition, note that Perl's pipes use IO buffering, so you may need to set $| to flush your WRITEHANDLE after each command, depending on the application. Returns true on success. See IPC::Open2, IPC::Open3, and Bidirectional Communication with Another Process in perlipc for examples of such things. On