Pod::PlainText



Pod::PlainText

NAME
SYNOPSIS
DESCRIPTION
DIAGNOSTICS
RESTRICTIONS
NOTES
SEE ALSO
AUTHOR

NAME

Pod::PlainText − Convert POD data to formatted ASCII text

SYNOPSIS

    use Pod::PlainText;
    my $parser = Pod::PlainText−>new (sentence => 0, width => 78);
    # Read POD from STDIN and write to STDOUT.
    $parser−>parse_from_filehandle;
    # Read POD from file.pod and write to file.txt.
    $parser−>parse_from_file ('file.pod', 'file.txt');

DESCRIPTION

Pod::PlainText is a module that can convert documentation in the POD format (the preferred language for documenting Perl) into formatted ASCII . It uses no special formatting controls or codes whatsoever, and its output is therefore suitable for nearly any device.

As a derived class from Pod::Parser, Pod::PlainText supports the same methods and interfaces. See Pod::Parser for all the details; briefly, one creates a new parser with "Pod::PlainText−>new()" and then calls either parse_from_filehandle() or parse_from_file().

new() can take options, in the form of key/value pairs, that control the behavior of the parser. The currently recognized options are:

alt

If set to a true value, selects an alternate output format that, among other things, uses a different heading style and marks "=item" entries with a colon in the left margin. Defaults to false.

indent

The number of spaces to indent regular text, and the default indentation for "=over" blocks. Defaults to 4.

loose

If set to a true value, a blank line is printed after a "=headN" headings. If set to false (the default), no blank line is printed after "=headN". This is the default because it’s the expected formatting for manual pages; if you’re formatting arbitrary text documents, setting this to true may result in more pleasing output.

sentence

If set to a true value, Pod::PlainText will assume that each sentence ends in two spaces, and will try to preserve that spacing. If set to false, all consecutive whitespace in non-verbatim paragraphs is compressed into a single space. Defaults to true.

width

The column at which to wrap text on the right-hand side. Defaults to 76.

The standard Pod::Parser method parse_from_filehandle() takes up to two arguments, the first being the file handle to read POD from and the second being the file handle to write the formatted output to. The first defaults to STDIN if not given, and the second defaults to STDOUT . The method parse_from_file() is almost identical, except that its two arguments are the input and output disk files instead. See Pod::Parser for the specific details.

DIAGNOSTICS

Bizarre space in item

(W) Something has gone wrong in internal "=item" processing. This message indicates a bug in Pod::PlainText; you should never see it.

Can’t open %s for reading: %s

(F) Pod::PlainText was invoked via the compatibility mode pod2text() interface and the input file it was given could not be opened.

Unknown escape: %s

(W) The POD source contained an "E<>" escape that Pod::PlainText didn’t know about.

Unknown sequence: %s

(W) The POD source contained a non-standard internal sequence (something of the form "X<>") that Pod::PlainText didn’t know about.

Unmatched =back

(W) Pod::PlainText encountered a "=back" command that didn’t correspond to an "=over" command.

RESTRICTIONS

Embedded Ctrl-As (octal 001) in the input will be mapped to spaces on output, due to an internal implementation detail.

NOTES

This is a replacement for an earlier Pod::Text module written by Tom Christiansen. It has a revamped interface, since it now uses Pod::Parser, but an interface roughly compatible with the old Pod::Text::pod2text() function is still available. Please change to the new calling convention, though.

The original Pod::Text contained code to do formatting via termcap sequences, although it wasn’t turned on by default and it was problematic to get it to work at all. This rewrite doesn’t even try to do that, but a subclass of it does. Look for Pod::Text::Termcap.

SEE ALSO

Pod::Parser, Pod::Text::Termcap, pod2text(1)

AUTHOR

Please report bugs using <http://rt.cpan.org>.

Russ Allbery <rra@stanford.edu>, based very heavily on the original Pod::Text by Tom Christiansen <tchrist@mox.perl.com> and its conversion to Pod::Parser by Brad Appleton <bradapp@enteract.com>.






Opportunity


Personal Opportunity - Free software gives you access to billions of dollars of software at no cost. Use this software for your business, personal use or to develop a profitable skill. Access to source code provides access to a level of capabilities/information that companies protect though copyrights. Open source is a core component of the Internet and it is available to you. Leverage the billions of dollars in resources and capabilities to build a career, establish a business or change the world. The potential is endless for those who understand the opportunity.

Business Opportunity - Goldman Sachs, IBM and countless large corporations are leveraging open source to reduce costs, develop products and increase their bottom lines. Learn what these companies know about open source and how open source can give you the advantage.





Free Software


Free Software provides computer programs and capabilities at no cost but more importantly, it provides the freedom to run, edit, contribute to, and share the software. The importance of free software is a matter of access, not price. Software at no cost is a benefit but ownership rights to the software and source code is far more significant.


Free Office Software - The Libre Office suite provides top desktop productivity tools for free. This includes, a word processor, spreadsheet, presentation engine, drawing and flowcharting, database and math applications. Libre Office is available for Linux or Windows.





Free Books


The Free Books Library is a collection of thousands of the most popular public domain books in an online readable format. The collection includes great classical literature and more recent works where the U.S. copyright has expired. These books are yours to read and use without restrictions.


Source Code - Want to change a program or know how it works? Open Source provides the source code for its programs so that anyone can use, modify or learn how to write those programs themselves. Visit the GNU source code repositories to download the source.





Education


Study at Harvard, Stanford or MIT - Open edX provides free online courses from Harvard, MIT, Columbia, UC Berkeley and other top Universities. Hundreds of courses for almost all major subjects and course levels. Open edx also offers some paid courses and selected certifications.


Linux Manual Pages - A man or manual page is a form of software documentation found on Linux/Unix operating systems. Topics covered include computer programs (including library and system calls), formal standards and conventions, and even abstract concepts.