Pod::Text - Convert POD data to formatted ASCII text

NAME SYNOPSIS DESCRIPTION DIAGNOSTICS BUGS CAVEATS NOTES SEE ALSO AUTHOR COPYRIGHT AND LICENSE NAME Pod::Text - Convert POD data to formatted ASCII text SYNOPSIS use Pod::Text; my $parser = Pod::Text->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::Text is a module that can convert documentation in th

Pod::Simple::XMLOutStream -- turn Pod into XML

NAME SYNOPSIS DESCRIPTION SEE ALSO ABOUT EXTENDING POD SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::XMLOutStream -- turn Pod into XML SYNOPSIS perl -MPod::Simple::XMLOutStream -e \ "exit Pod::Simple::XMLOutStream->filter(shift)->any_errata_seen" \ thingy.pod DESCRIPTION Pod::Simple::XMLOutStream is a subclass of Pod::Simple that parses Pod and turns it into XML. Pod::Simple::XMLOutStream inherits methods from Pod::Simple. SEE ALSO Pod::Simple::DumpAsXML is rath

Pod::Simple::XHTML -- format Pod as validating XHTML

NAME SYNOPSIS DESCRIPTIONMinimal code METHODSperldoc_url_prefix perldoc_url_postfix man_url_prefix man_url_postfix title_prefix, title_postfix html_css html_javascript html_doctype html_charset html_header_tags html_h_level default_title force_title html_header, html_footer index anchor_items backlink SUBCLASSINGhandle_text handle_code accept_targets_as_html resolve_pod_page_link resolve_man_page_link idify batch_mode_page_object_init SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS ACKNOWLEDGEM

Pod::Simple::TextContent -- get the text content of Pod

NAME SYNOPSIS DESCRIPTION SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::TextContent -- get the text content of Pod SYNOPSIS TODO perl -MPod::Simple::TextContent -e \ "exit Pod::Simple::TextContent->filter(shift)->any_errata_seen" \ thingy.pod DESCRIPTION This class is that parses Pod and dumps just the text content. It is mainly meant for use by the Pod::Simple test suite, but you may find some other use for it. This is a subclass of Pod::Simple and inherits

Pod::Simple::Text -- format Pod as plaintext

NAME SYNOPSIS DESCRIPTION SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::Text -- format Pod as plaintext SYNOPSIS perl -MPod::Simple::Text -e \ "exit Pod::Simple::Text->filter(shift)->any_errata_seen" \ thingy.pod DESCRIPTION This class is a formatter that takes Pod and renders it as wrapped plaintext. Its wrapping is done by Text::Wrap, so you can change $Text::Wrap::columns as you like. This is a subclass of Pod::Simple and inherits all its methods. SEE ALSO Po

Pod::Simple::SimpleTree -- parse Pod into a simple parse tree

NAME SYNOPSIS DESCRIPTION METHODS Tree Contents SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::SimpleTree -- parse Pod into a simple parse tree SYNOPSIS % cat ptest.pod =head1 PIE I like B<pie>! % perl -MPod::Simple::SimpleTree -MData::Dumper -e \ "print Dumper(Pod::Simple::SimpleTree->new->parse_file(shift)->root)" \ ptest.pod $VAR1 = [ 'Document', { 'start_line' => 1 }, [ 'head1', { 'start

Pod::Simple::Search - find POD documents in directory trees

NAME SYNOPSIS DESCRIPTION CONSTRUCTOR ACCESSORS MAIN SEARCH METHODS$search->survey( @directories ) $search->simplify_name( $str ) $search->find( $pod ) $search->find( $pod, @search_dirs ) $self->contains_pod( $file ) COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::Search - find POD documents in directory trees SYNOPSIS use Pod::Simple::Search; my $name2path = Pod::Simple::Search->new->limit_glob('LWP::*')->survey; print "Looky see what I found: ", join(' ', sort

Pod::Simple::RTF -- format Pod as RTF

NAME SYNOPSIS DESCRIPTION FORMAT CONTROL ATTRIBUTES SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::RTF -- format Pod as RTF SYNOPSIS perl -MPod::Simple::RTF -e \ "exit Pod::Simple::RTF->filter(shift)->any_errata_seen" \ thingy.pod > thingy.rtf DESCRIPTION This class is a formatter that takes Pod and renders it as RTF, good for viewing/printing in MSWord, WordPad/write.exe, TextEdit, etc. This is a subclass of Pod::Simple and inherits all its methods. FORMAT CO

Pod::Simple::PullParserToken -- tokens from Pod::Simple::PullParser

NAME SYNOPSIS DESCRIPTION SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::PullParserToken -- tokens from Pod::Simple::PullParser SYNOPSIS Given a $parser that's an object of class Pod::Simple::PullParser (or a subclass)... while(my $token = $parser->get_token) { $DEBUG and print "Token: ", $token->dump, "\n"; if($token->is_start) { ...access $token->tagname, $token->attr, etc... } elsif($token->is_text) { ...access $token->text, $token-&

Pod::Simple::PullParserTextToken -- text-tokens from Pod::Simple::PullParser

NAME SYNOPSIS DESCRIPTION SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::PullParserTextToken -- text-tokens from Pod::Simple::PullParser SYNOPSIS (See Pod::Simple::PullParser) DESCRIPTION When you do $parser->get_token on a Pod::Simple::PullParser, you might get an object of this class. This is a subclass of Pod::Simple::PullParserToken and inherits all its methods, and adds these methods: $token->text This returns the text that this token holds. For example, parsi