perldoc > Pod::Text

📖 NAME

Pod::Text - Convert POD data to formatted text

🚀 Quick Reference

Use CaseCommandDescription
📥 Convert POD from STDIN to STDOUTPod::Text->new->parse_from_filehandleRead POD from STDIN and write formatted text to STDOUT
📄 Convert POD file to text filePod::Text->new->parse_from_file('file.pod', 'file.txt')Read POD from file and write formatted text to another file
📋 Parse an array of linesparse_lines(@lines)Parse an array of lines (raw bytes)
📜 Parse a string documentparse_string_document($string)Parse a document already in memory (raw bytes)
⚙️ Create parser with optionsPod::Text->new(sentence => 1, width => 78)Create a new parser with custom options
📤 Capture output to string$parser->output_string(\$string); $parser->parse_file($pod_file)Redirect output to a string instead of a file handle

📋 SYNOPSIS

use Pod::Text;
my $parser = Pod::Text->new (sentence => 1, 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::Text is a module that can convert documentation in the POD format (the preferred language for documenting Perl) into formatted text. 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::Simple, Pod::Text supports the same methods and interfaces. See Pod::Simple for all the details; briefly, one creates a new parser with Pod::Text->new() and then normally calls parse_file().

🔧 new()

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

The standard Pod::Simple method parse_file() takes one argument naming the POD file to read from. By default, the output is sent to STDOUT, but this can be changed with the output_fh() method.

The standard Pod::Simple method parse_from_file() takes up to two arguments, the first being the input file to read POD from and the second being the file to write the formatted output to.

You can also call parse_lines() to parse an array of lines or parse_string_document() to parse a document already in memory. As with parse_file(), parse_lines() and parse_string_document() default to sending their output to STDOUT unless changed with the output_fh() method. Be aware that parse_lines() and parse_string_document() both expect raw bytes, not decoded characters.

📤 output_string()

To put the output from any parse method into a string instead of a file handle, call the output_string() method instead of output_fh().

See Pod::Simple for more specific details on the methods available to all derived parsers.

⚠️ DIAGNOSTICS

🐞 BUGS

Encoding handling assumes that PerlIO is available and does not work properly if it isn't. The utf8 option is therefore not supported unless Perl is built with PerlIO support.

⚠️ CAVEATS

If Pod::Text is given the utf8 option, the encoding of its output file handle will be forced to UTF-8 if possible, overriding any existing encoding. This will be done even if the file handle is not created by Pod::Text and was passed in from outside. This maintains consistency regardless of PERL_UNICODE and other settings.

If the utf8 option is not given, the encoding of its output file handle will be forced to the detected encoding of the input POD, which preserves whatever the input text is. This ensures backward compatibility with earlier, pre-Unicode versions of this module, without large numbers of Perl warnings.

This is not ideal, but it seems to be the best compromise. If it doesn't work for you, please let me know the details of how it broke.

📝 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::Simple, 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.

👤 AUTHOR

Russ Allbery <rra AT cpan.org>, based very heavily on the original Pod::Text by Tom Christiansen <tchrist AT mox.com> and its conversion to Pod::Parser by Brad Appleton <bradapp AT enteract.com>. Sean Burke's initial conversion of Pod::Man to use Pod::Simple provided much-needed guidance on how to use Pod::Simple.

📄 COPYRIGHT AND LICENSE

Copyright 1999-2002, 2004, 2006, 2008-2009, 2012-2016, 2018-2019 Russ Allbery <rra AT cpan.org>

This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself.

🔗 SEE ALSO

The current version of this module is always available from its web site at <https://www.eyrie.org/~eagle/software/podlators/>. It is also part of the Perl core distribution as of 5.6.0.

Pod::Text
📖 NAME 🚀 Quick Reference 📋 SYNOPSIS 📝 DESCRIPTION
🔧 new() 📤 output_string()
⚠️ DIAGNOSTICS 🐞 BUGS ⚠️ CAVEATS 📝 NOTES 👤 AUTHOR 📄 COPYRIGHT AND LICENSE 🔗 SEE ALSO

Generated by phpman v4.9.26-5-g7740029 · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-08-11 00:29 @216.73.216.11
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Valid XHTML 1.0 Transitional!Valid CSS!

^_top_^