Lines Matching defs:Pod

2 # Pod/ParseUtils.pm -- helpers for POD parsing and conversion
10 package Pod::ParseUtils;
18 Pod::ParseUtils - helpers for POD parsing and conversion
22 use Pod::ParseUtils;
24 my $list = new Pod::List;
25 my $link = Pod::Hyperlink->new('Pod::Parser');
29 B<Pod::ParseUtils> contains a few object-oriented helper packages for
35 # Pod::List
40 package Pod::List;
44 =head2 Pod::List
46 B<Pod::List> can be used to hold information about POD lists
52 =item Pod::List-E<gt>new()
57 my $list = Pod::List->new({ -start => $., -indent => 4 });
210 # Pod::Hyperlink
215 package Pod::Hyperlink;
217 =head2 Pod::Hyperlink
219 B<Pod::Hyperlink> is a class for manipulation of POD hyperlinks. Usage:
221 my $link = Pod::Hyperlink->new('alternative text|page/"section in page"');
223 The B<Pod::Hyperlink> class is mainly designed to parse the contents of the
230 =item Pod::Hyperlink-E<gt>new()
234 of the class C<Pod::Hyperlink> is returned. The value C<undef> indicates a
621 # Pod::Cache
626 package Pod::Cache;
628 =head2 Pod::Cache
630 B<Pod::Cache> holds information about a set of POD documents,
636 =item Pod::Cache-E<gt>new()
639 POD documents of class Pod::Cache::Item.
661 my $item = Pod::Cache::Item->new(%param);
673 reference to the corresponding Pod::Cache::Item object or undef if
690 package Pod::Cache::Item;
692 =head2 Pod::Cache::Item
694 B<Pod::Cache::Item> holds information about individual POD documents,
695 that can be grouped in a Pod::Cache object.
702 =item Pod::Cache::Item-E<gt>new()
725 Set/retrieve the POD document name (e.g. "Pod::Parser").
847 L<pod2man>, L<pod2roff>, L<Pod::Parser>, L<Pod::Checker>,