The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "distribution:Pod-Simple SBURKE"

Pod::Simple - framework for parsing Pod River stage five • 134 direct dependents • 32646 total dependents

Pod::Simple is a Perl library for parsing text in the Pod ("plain old documentation") markup language that is typically used for writing documentation for Perl and for Perl modules. The Pod format is explained in perlpod; the most common formatter is...

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC

Pod::Simple::RTF - format Pod as RTF River stage five • 134 direct dependents • 32646 total dependents

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....

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC

Pod::Simple::Text - format Pod as plaintext River stage five • 134 direct dependents • 32646 total dependents

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....

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC

Pod::Simple::HTML - convert Pod to HTML River stage five • 134 direct dependents • 32646 total dependents

This class is for making an HTML rendering of a Pod document. This is a subclass of Pod::Simple::PullParser and inherits all its methods (and options). Note that if you want to do a batch conversion of a lot of Pod documents to HTML, you should see t...

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC

Pod::Simple::Debug - put Pod::Simple into trace/debug mode River stage five • 134 direct dependents • 32646 total dependents

This is an internal module for controlling the debug level (a.k.a. trace level) of Pod::Simple. This is of interest only to Pod::Simple developers....

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC

Pod::Simple::XHTML - format Pod as validating XHTML River stage five • 134 direct dependents • 32646 total dependents

This class is a formatter that takes Pod and renders it as XHTML validating HTML. This is a subclass of Pod::Simple::Methody and inherits all its methods. The implementation is entirely different than Pod::Simple::HTML, but it largely preserves the s...

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC

Pod::Simple::Search - find POD documents in directory trees River stage five • 134 direct dependents • 32646 total dependents

Pod::Simple::Search is a class that you use for running searches for Pod files. An object of this class has several attributes (mostly options for controlling search options), and some methods for searching based on those attributes. The way to use t...

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC

Pod::Simple::Checker - check the Pod syntax of a document River stage five • 134 direct dependents • 32646 total dependents

This class is for checking the syntactic validity of Pod. It works by basically acting like a simple-minded version of Pod::Simple::Text that formats only the "Pod Errors" section (if Pod::Simple even generates one for the given document). This is a ...

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC

Pod::Simple::Methody - turn Pod::Simple events into method calls River stage five • 134 direct dependents • 32646 total dependents

This class is of interest to people writing Pod formatters based on Pod::Simple. This class (which is very small -- read the source) overrides Pod::Simple's _handle_element_start, _handle_text, and _handle_element_end methods so that parser events ar...

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC

Pod::Simple::JustPod - just the Pod, the whole Pod, and nothing but the Pod River stage five • 134 direct dependents • 32646 total dependents

This class returns a copy of its input, translated into Perl's internal encoding (UTF-8), and with all the non-Pod lines removed. This is a subclass of Pod::Simple::Methody and inherits all its methods. And since, that in turn is a subclass of Pod::S...

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC

Pod::Simple::DumpAsXML - turn Pod into XML River stage five • 134 direct dependents • 32646 total dependents

Pod::Simple::DumpAsXML is a subclass of Pod::Simple that parses Pod and turns it into indented and wrapped XML. This class is of interest to people writing Pod formatters based on Pod::Simple. Pod::Simple::DumpAsXML inherits methods from Pod::Simple....

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC

Pod::Simple::HTMLBatch - convert several Pod files to several HTML files River stage five • 134 direct dependents • 32646 total dependents

This module is used for running batch-conversions of a lot of HTML documents This class is NOT a subclass of Pod::Simple::HTML (nor of bad old Pod::Html) -- although it uses Pod::Simple::HTML for doing the conversion of each document. The normal use ...

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC

Pod::Simple::DumpAsText - dump Pod-parsing events as text River stage five • 134 direct dependents • 32646 total dependents

This class is for dumping, as text, the events gotten from parsing a Pod document. This class is of interest to people writing Pod formatters based on Pod::Simple. It is useful for seeing exactly what events you get out of some Pod that you feed in. ...

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC

Pod::Simple::SimpleTree - parse Pod into a simple parse tree River stage five • 134 direct dependents • 32646 total dependents

This class is of interest to people writing a Pod processor/formatter. This class takes Pod and parses it, returning a parse tree made just of arrayrefs, and hashrefs, and strings. This is a subclass of Pod::Simple and inherits all its methods. This ...

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC

Pod::Simple::PullParser - a pull-parser interface to parsing Pod River stage five • 134 direct dependents • 32646 total dependents

This class is for using Pod::Simple to build a Pod processor -- but one that uses an interface based on a stream of token objects, instead of based on events. This is a subclass of Pod::Simple and inherits all its methods. A subclass of Pod::Simple::...

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC

Pod::Simple::TextContent - get the text content of Pod River stage five • 134 direct dependents • 32646 total dependents

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 all its methods....

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC

Pod::Simple::LinkSection - represent "section" attributes of L codes River stage five • 134 direct dependents • 32646 total dependents

This class is not of interest to general users. Pod::Simple uses this class for representing the value of the "section" attribute of "L" start-element events. Most applications can just use the normal stringification of objects of this class; they st...

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC

Pod::Simple::Subclassing - write a formatter as a Pod::Simple subclass River stage five • 134 direct dependents • 32646 total dependents

This document is about using Pod::Simple to write a Pod processor, generally a Pod formatter. If you just want to know about using an existing Pod formatter, instead see its documentation and see also the docs in Pod::Simple. The zeroeth step in writ...

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC

Pod::Simple::XMLOutStream - turn Pod into XML River stage five • 134 direct dependents • 32646 total dependents

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....

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC

Pod::Simple::PullParserToken - tokens from Pod::Simple::PullParser River stage five • 134 direct dependents • 32646 total dependents

When you do $parser->get_token on a Pod::Simple::PullParser, you should get an object of a subclass of Pod::Simple::PullParserToken. Subclasses will add methods, and will also inherit these methods: $token->type This returns the type of the token. Th...

KHW/Pod-Simple-3.45 - 15 May 2023 23:28:35 UTC
23 results (0.019 seconds)