Pod::Perldoc::ToMan - let Perldoc render Pod as man pages

NAME SYNOPSIS DESCRIPTION CAVEAT SEE ALSO COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Perldoc::ToMan - let Perldoc render Pod as man pages SYNOPSIS perldoc -o man Some::Modulename DESCRIPTION This is a "plug-in" class that allows Perldoc to use Pod::Man and groff for reading Pod pages. The following options are supported: center, date, fixed, fixedbold, fixeditalic, fixedbolditalic, quotes, release, section (Those options are explained in Pod::Man.) For example: perldoc -o man -w center:Pod S

Pod::Perldoc::ToChecker - let Perldoc check Pod for errors

NAME SYNOPSIS DESCRIPTION SEE ALSO COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Perldoc::ToChecker - let Perldoc check Pod for errors SYNOPSIS % perldoc -o checker SomeFile.pod No Pod errors in SomeFile.pod (or an error report) DESCRIPTION This is a "plug-in" class that allows Perldoc to use Pod::Simple::Checker as a "formatter" class (or if that is not available, then Pod::Checker), to check for errors in a given Pod file. This is actually a Pod::Simple::Checker (or Pod::Checker) subclass, an

Pod::Perldoc::GetOptsOO - Customized option parser for Pod::Perldoc

NAME SYNOPSIS DESCRIPTION SEE ALSO COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Perldoc::GetOptsOO - Customized option parser for Pod::Perldoc SYNOPSIS use Pod::Perldoc::GetOptsOO (); Pod::Perldoc::GetOptsOO::getopts( $obj, \@args, $truth ) or die "wrong usage"; DESCRIPTION Implements a customized option parser used for Pod::Perldoc. Rather like Getopt::Std's getopts: Call Pod::Perldoc::GetOptsOO::getopts($object, \@ARGV, $truth) Given -n, if there's a opt_n_with, it'll call $object->

Pod::Perldoc::BaseTo - Base for Pod::Perldoc formatters

NAME SYNOPSIS DESCRIPTION SEE ALSO COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Perldoc::BaseTo - Base for Pod::Perldoc formatters SYNOPSIS package Pod::Perldoc::ToMyFormat; use parent qw( Pod::Perldoc::BaseTo ); ... DESCRIPTION This package is meant as a base of Pod::Perldoc formatters, like Pod::Perldoc::ToText, Pod::Perldoc::ToMan, etc. It provides default implementations for the methods is_pageable write_with_binmode output_extension _perldoc_elem The concrete formatter must implement ne

Pod::Perldoc - Look up Perl documentation in Pod format.

NAME SYNOPSIS DESCRIPTION SEE ALSO COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Perldoc - Look up Perl documentation in Pod format. SYNOPSIS use Pod::Perldoc (); Pod::Perldoc->run(); DESCRIPTION The guts of perldoc utility. SEE ALSO perldoc COPYRIGHT AND DISCLAIMERS Copyright (c) 2002-2007 Sean M. Burke. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. This program is distributed in the hope that it will be useful, but without any

Pod::ParseUtils - helpers for POD parsing and conversion

NAME SYNOPSIS DESCRIPTIONPod::List Pod::Hyperlink Pod::Cache Pod::Cache::Item AUTHOR SEE ALSO NAME Pod::ParseUtils - helpers for POD parsing and conversion SYNOPSIS use Pod::ParseUtils; my $list = new Pod::List; my $link = Pod::Hyperlink->new('Pod::Parser'); DESCRIPTION NOTE: This module is considered legacy; modern Perl releases (5.18 and higher) are going to remove Pod-Parser from core and use Pod-Simple for all things POD. Pod::ParseUtils contains a few object-oriented helper packag

Pod::Parser - base class for creating POD filters and translators

NAME SYNOPSIS REQUIRES EXPORTS DESCRIPTION QUICK OVERVIEW PARSING OPTIONS RECOMMENDED SUBROUTINE/METHOD OVERRIDES *command()* *verbatim()* *textblock()* *interior_sequence()* OPTIONAL SUBROUTINE/METHOD OVERRIDES *new()* *initialize()* *begin_pod()* *begin_input()* *end_input()* *end_pod()* *preprocess_line()* *preprocess_paragraph()* METHODS FOR PARSING AND PROCESSING *parse_text()* *interpolate()* *parse_from_filehandle()* *parse_from_file()* ACCESSOR METHODS *errorsub()* *cutting()* *parseopt

Pod::ParseLink - Parse an L<> formatting code in POD text

NAME SYNOPSIS DESCRIPTION SEE ALSO AUTHOR COPYRIGHT AND LICENSE NAME Pod::ParseLink - Parse an L<> formatting code in POD text SYNOPSIS use Pod::ParseLink; my ($text, $inferred, $name, $section, $type) = parselink ($link); DESCRIPTION This module only provides a single function, parselink(), which takes the text of an L<> formatting code and parses it. It returns the anchor text for the link (if any was given), the anchor text possibly inferred from the name and section, the name

Pod::Man - Convert POD data to formatted *roff input

NAME SYNOPSIS DESCRIPTION DIAGNOSTICS BUGS CAVEATS AUTHOR COPYRIGHT AND LICENSE SEE ALSO NAME Pod::Man - Convert POD data to formatted *roff input SYNOPSIS use Pod::Man; my $parser = Pod::Man->new (release => $VERSION, section => 8); # Read POD from STDIN and write to STDOUT. $parser->parse_file (\*STDIN); # Read POD from file.pod and write to file.1. $parser->parse_from_file ('file.pod', 'file.1'); DESCRIPTION Pod::Man is a module to convert documentation in the POD format

Pod::InputObjects - objects representing POD input paragraphs, commands, etc.

NAME SYNOPSIS REQUIRES EXPORTS DESCRIPTION *Pod::Paragraph*Pod::Paragraph->*new()* $pod_para->*cmd_name()* $pod_para->*text()* $pod_para->*raw_text()* $pod_para->*cmd_prefix()* $pod_para->*cmd_separator()* $pod_para->*parse_tree()* $pod_para->*file_line()* *Pod::InteriorSequence*Pod::InteriorSequence->*new()* $pod_seq->*cmd_name()* $pod_seq->*prepend()* $pod_seq->*append()* $pod_seq->*nested()* $pod_seq->*raw_text()* $pod_seq->*left_delimiter()* $