Select.pm
上传用户:shbosideng
上传日期:2013-05-04
资源大小:1555k
文件大小:24k
源码类别:

SNMP编程

开发平台:

C/C++

  1. #############################################################################
  2. # Pod/Select.pm -- function to select portions of POD docs
  3. #
  4. # Copyright (C) 1996-2000 by Bradford Appleton. All rights reserved.
  5. # This file is part of "PodParser". PodParser is free software;
  6. # you can redistribute it and/or modify it under the same terms
  7. # as Perl itself.
  8. #############################################################################
  9. package Pod::Select;
  10. use vars qw($VERSION);
  11. $VERSION = 1.13;  ## Current version of this package
  12. require  5.005;    ## requires this Perl version or later
  13. #############################################################################
  14. =head1 NAME
  15. Pod::Select, podselect() - extract selected sections of POD from input
  16. =head1 SYNOPSIS
  17.     use Pod::Select;
  18.     ## Select all the POD sections for each file in @filelist
  19.     ## and print the result on standard output.
  20.     podselect(@filelist);
  21.     ## Same as above, but write to tmp.out
  22.     podselect({-output => "tmp.out"}, @filelist):
  23.     ## Select from the given filelist, only those POD sections that are
  24.     ## within a 1st level section named any of: NAME, SYNOPSIS, OPTIONS.
  25.     podselect({-sections => ["NAME|SYNOPSIS", "OPTIONS"]}, @filelist):
  26.     ## Select the "DESCRIPTION" section of the PODs from STDIN and write
  27.     ## the result to STDERR.
  28.     podselect({-output => ">&STDERR", -sections => ["DESCRIPTION"]}, *STDIN);
  29. or
  30.     use Pod::Select;
  31.     ## Create a parser object for selecting POD sections from the input
  32.     $parser = new Pod::Select();
  33.     ## Select all the POD sections for each file in @filelist
  34.     ## and print the result to tmp.out.
  35.     $parser->parse_from_file("<&STDIN", "tmp.out");
  36.     ## Select from the given filelist, only those POD sections that are
  37.     ## within a 1st level section named any of: NAME, SYNOPSIS, OPTIONS.
  38.     $parser->select("NAME|SYNOPSIS", "OPTIONS");
  39.     for (@filelist) { $parser->parse_from_file($_); }
  40.     ## Select the "DESCRIPTION" and "SEE ALSO" sections of the PODs from
  41.     ## STDIN and write the result to STDERR.
  42.     $parser->select("DESCRIPTION");
  43.     $parser->add_selection("SEE ALSO");
  44.     $parser->parse_from_filehandle(*STDIN, *STDERR);
  45. =head1 REQUIRES
  46. perl5.005, Pod::Parser, Exporter, Carp
  47. =head1 EXPORTS
  48. podselect()
  49. =head1 DESCRIPTION
  50. B<podselect()> is a function which will extract specified sections of
  51. pod documentation from an input stream. This ability is provided by the
  52. B<Pod::Select> module which is a subclass of B<Pod::Parser>.
  53. B<Pod::Select> provides a method named B<select()> to specify the set of
  54. POD sections to select for processing/printing. B<podselect()> merely
  55. creates a B<Pod::Select> object and then invokes the B<podselect()>
  56. followed by B<parse_from_file()>.
  57. =head1 SECTION SPECIFICATIONS
  58. B<podselect()> and B<Pod::Select::select()> may be given one or more
  59. "section specifications" to restrict the text processed to only the
  60. desired set of sections and their corresponding subsections.  A section
  61. specification is a string containing one or more Perl-style regular
  62. expressions separated by forward slashes ("/").  If you need to use a
  63. forward slash literally within a section title you can escape it with a
  64. backslash ("/").
  65. The formal syntax of a section specification is:
  66. =over 4
  67. =item *
  68. I<head1-title-regex>/I<head2-title-regex>/...
  69. =back
  70. Any omitted or empty regular expressions will default to ".*".
  71. Please note that each regular expression given is implicitly
  72. anchored by adding "^" and "$" to the beginning and end.  Also, if a
  73. given regular expression starts with a "!" character, then the
  74. expression is I<negated> (so C<!foo> would match anything I<except>
  75. C<foo>).
  76. Some example section specifications follow.
  77. =over 4
  78. =item
  79. Match the C<NAME> and C<SYNOPSIS> sections and all of their subsections:
  80. C<NAME|SYNOPSIS>
  81. =item
  82. Match only the C<Question> and C<Answer> subsections of the C<DESCRIPTION>
  83. section:
  84. C<DESCRIPTION/Question|Answer>
  85. =item
  86. Match the C<Comments> subsection of I<all> sections:
  87. C</Comments>
  88. =item
  89. Match all subsections of C<DESCRIPTION> I<except> for C<Comments>:
  90. C<DESCRIPTION/!Comments>
  91. =item
  92. Match the C<DESCRIPTION> section but do I<not> match any of its subsections:
  93. C<DESCRIPTION/!.+>
  94. =item
  95. Match all top level sections but none of their subsections:
  96. C</!.+>
  97. =back 
  98. =begin _NOT_IMPLEMENTED_
  99. =head1 RANGE SPECIFICATIONS
  100. B<podselect()> and B<Pod::Select::select()> may be given one or more
  101. "range specifications" to restrict the text processed to only the
  102. desired ranges of paragraphs in the desired set of sections. A range
  103. specification is a string containing a single Perl-style regular
  104. expression (a regex), or else two Perl-style regular expressions
  105. (regexs) separated by a ".." (Perl's "range" operator is "..").
  106. The regexs in a range specification are delimited by forward slashes
  107. ("/").  If you need to use a forward slash literally within a regex you
  108. can escape it with a backslash ("/").
  109. The formal syntax of a range specification is:
  110. =over 4
  111. =item *
  112. /I<start-range-regex>/[../I<end-range-regex>/]
  113. =back
  114. Where each the item inside square brackets (the ".." followed by the
  115. end-range-regex) is optional. Each "range-regex" is of the form:
  116.     =cmd-expr text-expr
  117. Where I<cmd-expr> is intended to match the name of one or more POD
  118. commands, and I<text-expr> is intended to match the paragraph text for
  119. the command. If a range-regex is supposed to match a POD command, then
  120. the first character of the regex (the one after the initial '/')
  121. absolutely I<must> be an single '=' character; it may not be anything
  122. else (not even a regex meta-character) if it is supposed to match
  123. against the name of a POD command.
  124. If no I<=cmd-expr> is given then the text-expr will be matched against
  125. plain textblocks unless it is preceded by a space, in which case it is
  126. matched against verbatim text-blocks. If no I<text-expr> is given then
  127. only the command-portion of the paragraph is matched against.
  128. Note that these two expressions are each implicitly anchored. This
  129. means that when matching against the command-name, there will be an
  130. implicit '^' and '$' around the given I<=cmd-expr>; and when matching
  131. against the paragraph text there will be an implicit 'A' and 'Z'
  132. around the given I<text-expr>.
  133. Unlike with section-specs, the '!' character does I<not> have any special
  134. meaning (negation or otherwise) at the beginning of a range-spec!
  135. Some example range specifications follow.
  136. =over 4
  137. =item
  138. Match all C<=for html> paragraphs:
  139. C</=for html/>
  140. =item
  141. Match all paragraphs between C<=begin html> and C<=end html>
  142. (note that this will I<not> work correctly if such sections
  143. are nested):
  144. C</=begin html/../=end html/>
  145. =item
  146. Match all paragraphs between the given C<=item> name until the end of the
  147. current section:
  148. C</=item mine/../=headd/>
  149. =item
  150. Match all paragraphs between the given C<=item> until the next item, or
  151. until the end of the itemized list (note that this will I<not> work as
  152. desired if the item contains an itemized list nested within it):
  153. C</=item mine/../=(item|back)/>
  154. =back 
  155. =end _NOT_IMPLEMENTED_
  156. =cut
  157. #############################################################################
  158. use strict;
  159. #use diagnostics;
  160. use Carp;
  161. use Pod::Parser 1.04;
  162. use vars qw(@ISA @EXPORT $MAX_HEADING_LEVEL);
  163. @ISA = qw(Pod::Parser);
  164. @EXPORT = qw(&podselect);
  165. ## Maximum number of heading levels supported for '=headN' directives
  166. *MAX_HEADING_LEVEL = 3;
  167. #############################################################################
  168. =head1 OBJECT METHODS
  169. The following methods are provided in this module. Each one takes a
  170. reference to the object itself as an implicit first parameter.
  171. =cut
  172. ##---------------------------------------------------------------------------
  173. ## =begin _PRIVATE_
  174. ## 
  175. ## =head1 B<_init_headings()>
  176. ## 
  177. ## Initialize the current set of active section headings.
  178. ## 
  179. ## =cut
  180. ## 
  181. ## =end _PRIVATE_
  182. use vars qw(%myData @section_headings);
  183. sub _init_headings {
  184.     my $self = shift;
  185.     local *myData = $self;
  186.     ## Initialize current section heading titles if necessary
  187.     unless (defined $myData{_SECTION_HEADINGS}) {
  188.         local *section_headings = $myData{_SECTION_HEADINGS} = [];
  189.         for (my $i = 0; $i < $MAX_HEADING_LEVEL; ++$i) {
  190.             $section_headings[$i] = '';
  191.         }
  192.     }
  193. }
  194. ##---------------------------------------------------------------------------
  195. =head1 B<curr_headings()>
  196.             ($head1, $head2, $head3, ...) = $parser->curr_headings();
  197.             $head1 = $parser->curr_headings(1);
  198. This method returns a list of the currently active section headings and
  199. subheadings in the document being parsed. The list of headings returned
  200. corresponds to the most recently parsed paragraph of the input.
  201. If an argument is given, it must correspond to the desired section
  202. heading number, in which case only the specified section heading is
  203. returned. If there is no current section heading at the specified
  204. level, then C<undef> is returned.
  205. =cut
  206. sub curr_headings {
  207.     my $self = shift;
  208.     $self->_init_headings()  unless (defined $self->{_SECTION_HEADINGS});
  209.     my @headings = @{ $self->{_SECTION_HEADINGS} };
  210.     return (@_ > 0  and  $_[0] =~ /^d+$/) ? $headings[$_[0] - 1] : @headings;
  211. }
  212. ##---------------------------------------------------------------------------
  213. =head1 B<select()>
  214.             $parser->select($section_spec1,$section_spec2,...);
  215. This method is used to select the particular sections and subsections of
  216. POD documentation that are to be printed and/or processed. The existing
  217. set of selected sections is I<replaced> with the given set of sections.
  218. See B<add_selection()> for adding to the current set of selected
  219. sections.
  220. Each of the C<$section_spec> arguments should be a section specification
  221. as described in L<"SECTION SPECIFICATIONS">.  The section specifications
  222. are parsed by this method and the resulting regular expressions are
  223. stored in the invoking object.
  224. If no C<$section_spec> arguments are given, then the existing set of
  225. selected sections is cleared out (which means C<all> sections will be
  226. processed).
  227. This method should I<not> normally be overridden by subclasses.
  228. =cut
  229. use vars qw(@selected_sections);
  230. sub select {
  231.     my $self = shift;
  232.     my @sections = @_;
  233.     local *myData = $self;
  234.     local $_;
  235. ### NEED TO DISCERN A SECTION-SPEC FROM A RANGE-SPEC (look for m{^/.+/$}?)
  236.     ##---------------------------------------------------------------------
  237.     ## The following is a blatant hack for backward compatibility, and for
  238.     ## implementing add_selection(). If the *first* *argument* is the
  239.     ## string "+", then the remaining section specifications are *added*
  240.     ## to the current set of selections; otherwise the given section
  241.     ## specifications will *replace* the current set of selections.
  242.     ##
  243.     ## This should probably be fixed someday, but for the present time,
  244.     ## it seems incredibly unlikely that "+" would ever correspond to
  245.     ## a legitimate section heading
  246.     ##---------------------------------------------------------------------
  247.     my $add = ($sections[0] eq "+") ? shift(@sections) : "";
  248.     ## Reset the set of sections to use
  249.     unless (@sections > 0) {
  250.         delete $myData{_SELECTED_SECTIONS}  unless ($add);
  251.         return;
  252.     }
  253.     $myData{_SELECTED_SECTIONS} = []
  254.         unless ($add  &&  exists $myData{_SELECTED_SECTIONS});
  255.     local *selected_sections = $myData{_SELECTED_SECTIONS};
  256.     ## Compile each spec
  257.     my $spec;
  258.     for $spec (@sections) {
  259.         if ( defined($_ = &_compile_section_spec($spec)) ) {
  260.             ## Store them in our sections array
  261.             push(@selected_sections, $_);
  262.         }
  263.         else {
  264.             carp "Ignoring section spec "$spec"!n";
  265.         }
  266.     }
  267. }
  268. ##---------------------------------------------------------------------------
  269. =head1 B<add_selection()>
  270.             $parser->add_selection($section_spec1,$section_spec2,...);
  271. This method is used to add to the currently selected sections and
  272. subsections of POD documentation that are to be printed and/or
  273. processed. See <select()> for replacing the currently selected sections.
  274. Each of the C<$section_spec> arguments should be a section specification
  275. as described in L<"SECTION SPECIFICATIONS">. The section specifications
  276. are parsed by this method and the resulting regular expressions are
  277. stored in the invoking object.
  278. This method should I<not> normally be overridden by subclasses.
  279. =cut
  280. sub add_selection {
  281.     my $self = shift;
  282.     $self->select("+", @_);
  283. }
  284. ##---------------------------------------------------------------------------
  285. =head1 B<clear_selections()>
  286.             $parser->clear_selections();
  287. This method takes no arguments, it has the exact same effect as invoking
  288. <select()> with no arguments.
  289. =cut
  290. sub clear_selections {
  291.     my $self = shift;
  292.     $self->select();
  293. }
  294. ##---------------------------------------------------------------------------
  295. =head1 B<match_section()>
  296.             $boolean = $parser->match_section($heading1,$heading2,...);
  297. Returns a value of true if the given section and subsection heading
  298. titles match any of the currently selected section specifications in
  299. effect from prior calls to B<select()> and B<add_selection()> (or if
  300. there are no explictly selected/deselected sections).
  301. The arguments C<$heading1>, C<$heading2>, etc. are the heading titles of
  302. the corresponding sections, subsections, etc. to try and match.  If
  303. C<$headingN> is omitted then it defaults to the current corresponding
  304. section heading title in the input.
  305. This method should I<not> normally be overridden by subclasses.
  306. =cut
  307. sub match_section {
  308.     my $self = shift;
  309.     my (@headings) = @_;
  310.     local *myData = $self;
  311.     ## Return true if no restrictions were explicitly specified
  312.     my $selections = (exists $myData{_SELECTED_SECTIONS})
  313.                        ?  $myData{_SELECTED_SECTIONS}  :  undef;
  314.     return  1  unless ((defined $selections) && (@{$selections} > 0));
  315.     ## Default any unspecified sections to the current one
  316.     my @current_headings = $self->curr_headings();
  317.     for (my $i = 0; $i < $MAX_HEADING_LEVEL; ++$i) {
  318.         (defined $headings[$i])  or  $headings[$i] = $current_headings[$i];
  319.     }
  320.     ## Look for a match against the specified section expressions
  321.     my ($section_spec, $regex, $negated, $match);
  322.     for $section_spec ( @{$selections} ) {
  323.         ##------------------------------------------------------
  324.         ## Each portion of this spec must match in order for
  325.         ## the spec to be matched. So we will start with a 
  326.         ## match-value of 'true' and logically 'and' it with
  327.         ## the results of matching a given element of the spec.
  328.         ##------------------------------------------------------
  329.         $match = 1;
  330.         for (my $i = 0; $i < $MAX_HEADING_LEVEL; ++$i) {
  331.             $regex   = $section_spec->[$i];
  332.             $negated = ($regex =~ s/^!//);
  333.             $match  &= ($negated ? ($headings[$i] !~ /${regex}/)
  334.                                  : ($headings[$i] =~ /${regex}/));
  335.             last unless ($match);
  336.         }
  337.         return  1  if ($match);
  338.     }
  339.     return  0;  ## no match
  340. }
  341. ##---------------------------------------------------------------------------
  342. =head1 B<is_selected()>
  343.             $boolean = $parser->is_selected($paragraph);
  344. This method is used to determine if the block of text given in
  345. C<$paragraph> falls within the currently selected set of POD sections
  346. and subsections to be printed or processed. This method is also
  347. responsible for keeping track of the current input section and
  348. subsections. It is assumed that C<$paragraph> is the most recently read
  349. (but not yet processed) input paragraph.
  350. The value returned will be true if the C<$paragraph> and the rest of the
  351. text in the same section as C<$paragraph> should be selected (included)
  352. for processing; otherwise a false value is returned.
  353. =cut
  354. sub is_selected {
  355.     my ($self, $paragraph) = @_;
  356.     local $_;
  357.     local *myData = $self;
  358.     $self->_init_headings()  unless (defined $myData{_SECTION_HEADINGS});
  359.     ## Keep track of current sections levels and headings
  360.     $_ = $paragraph;
  361.     if (/^=((?:sub)*)(?:head(?:ing)?|sec(?:tion)?)(d*)s+(.*)s*$/) {
  362.         ## This is a section heading command
  363.         my ($level, $heading) = ($2, $3);
  364.         $level = 1 + (length($1) / 3)  if ((! length $level) || (length $1));
  365.         ## Reset the current section heading at this level
  366.         $myData{_SECTION_HEADINGS}->[$level - 1] = $heading;
  367.         ## Reset subsection headings of this one to empty
  368.         for (my $i = $level; $i < $MAX_HEADING_LEVEL; ++$i) {
  369.             $myData{_SECTION_HEADINGS}->[$i] = '';
  370.         }
  371.     }
  372.     return  $self->match_section();
  373. }
  374. #############################################################################
  375. =head1 EXPORTED FUNCTIONS
  376. The following functions are exported by this module. Please note that
  377. these are functions (not methods) and therefore C<do not> take an
  378. implicit first argument.
  379. =cut
  380. ##---------------------------------------------------------------------------
  381. =head1 B<podselect()>
  382.             podselect(%options,@filelist);
  383. B<podselect> will print the raw (untranslated) POD paragraphs of all
  384. POD sections in the given input files specified by C<@filelist>
  385. according to the given options.
  386. If any argument to B<podselect> is a reference to a hash
  387. (associative array) then the values with the following keys are
  388. processed as follows:
  389. =over 4
  390. =item B<-output>
  391. A string corresponding to the desired output file (or ">&STDOUT"
  392. or ">&STDERR"). The default is to use standard output.
  393. =item B<-sections>
  394. A reference to an array of sections specifications (as described in
  395. L<"SECTION SPECIFICATIONS">) which indicate the desired set of POD
  396. sections and subsections to be selected from input. If no section
  397. specifications are given, then all sections of the PODs are used.
  398. =begin _NOT_IMPLEMENTED_
  399. =item B<-ranges>
  400. A reference to an array of range specifications (as described in
  401. L<"RANGE SPECIFICATIONS">) which indicate the desired range of POD
  402. paragraphs to be selected from the desired input sections. If no range
  403. specifications are given, then all paragraphs of the desired sections
  404. are used.
  405. =end _NOT_IMPLEMENTED_
  406. =back
  407. All other arguments should correspond to the names of input files
  408. containing POD sections. A file name of "-" or "<&STDIN" will
  409. be interpeted to mean standard input (which is the default if no
  410. filenames are given).
  411. =cut 
  412. sub podselect {
  413.     my(@argv) = @_;
  414.     my %defaults   = ();
  415.     my $pod_parser = new Pod::Select(%defaults);
  416.     my $num_inputs = 0;
  417.     my $output = ">&STDOUT";
  418.     my %opts = ();
  419.     local $_;
  420.     for (@argv) {
  421.         if (ref($_)) {
  422.             next unless (ref($_) eq 'HASH');
  423.             %opts = (%defaults, %{$_});
  424.             ##-------------------------------------------------------------
  425.             ## Need this for backward compatibility since we formerly used
  426.             ## options that were all uppercase words rather than ones that
  427.             ## looked like Unix command-line options.
  428.             ## to be uppercase keywords)
  429.             ##-------------------------------------------------------------
  430.             %opts = map {
  431.                 my ($key, $val) = (lc $_, $opts{$_});
  432.                 $key =~ s/^(?=w)/-/;
  433.                 $key =~ /^-se[cl]/  and  $key  = '-sections';
  434.                 #! $key eq '-range'    and  $key .= 's';
  435.                 ($key => $val);    
  436.             } (keys %opts);
  437.             ## Process the options
  438.             (exists $opts{'-output'})  and  $output = $opts{'-output'};
  439.             ## Select the desired sections
  440.             $pod_parser->select(@{ $opts{'-sections'} })
  441.                 if ( (defined $opts{'-sections'})
  442.                      && ((ref $opts{'-sections'}) eq 'ARRAY') );
  443.             #! ## Select the desired paragraph ranges
  444.             #! $pod_parser->select(@{ $opts{'-ranges'} })
  445.             #!     if ( (defined $opts{'-ranges'})
  446.             #!          && ((ref $opts{'-ranges'}) eq 'ARRAY') );
  447.         }
  448.         else {
  449.             $pod_parser->parse_from_file($_, $output);
  450.             ++$num_inputs;
  451.         }
  452.     }
  453.     $pod_parser->parse_from_file("-")  unless ($num_inputs > 0);
  454. }
  455. #############################################################################
  456. =head1 PRIVATE METHODS AND DATA
  457. B<Pod::Select> makes uses a number of internal methods and data fields
  458. which clients should not need to see or use. For the sake of avoiding
  459. name collisions with client data and methods, these methods and fields
  460. are briefly discussed here. Determined hackers may obtain further
  461. information about them by reading the B<Pod::Select> source code.
  462. Private data fields are stored in the hash-object whose reference is
  463. returned by the B<new()> constructor for this class. The names of all
  464. private methods and data-fields used by B<Pod::Select> begin with a
  465. prefix of "_" and match the regular expression C</^_w+$/>.
  466. =cut
  467. ##---------------------------------------------------------------------------
  468. =begin _PRIVATE_
  469. =head1 B<_compile_section_spec()>
  470.             $listref = $parser->_compile_section_spec($section_spec);
  471. This function (note it is a function and I<not> a method) takes a
  472. section specification (as described in L<"SECTION SPECIFICATIONS">)
  473. given in C<$section_sepc>, and compiles it into a list of regular
  474. expressions. If C<$section_spec> has no syntax errors, then a reference
  475. to the list (array) of corresponding regular expressions is returned;
  476. otherwise C<undef> is returned and an error message is printed (using
  477. B<carp>) for each invalid regex.
  478. =end _PRIVATE_
  479. =cut
  480. sub _compile_section_spec {
  481.     my ($section_spec) = @_;
  482.     my (@regexs, $negated);
  483.     ## Compile the spec into a list of regexs
  484.     local $_ = $section_spec;
  485.     s|\\|01|g;  ## handle escaped backward slashes
  486.     s|\/|02|g;   ## handle escaped forward slashes
  487.     ## Parse the regexs for the heading titles
  488.     @regexs = split('/', $_, $MAX_HEADING_LEVEL);
  489.     ## Set default regex for ommitted levels
  490.     for (my $i = 0; $i < $MAX_HEADING_LEVEL; ++$i) {
  491.         $regexs[$i]  = '.*'  unless ((defined $regexs[$i])
  492.                                      && (length $regexs[$i]));
  493.     }
  494.     ## Modify the regexs as needed and validate their syntax
  495.     my $bad_regexs = 0;
  496.     for (@regexs) {
  497.         $_ .= '.+'  if ($_ eq '!');
  498.         s|01|\\|g;       ## restore escaped backward slashes
  499.         s|02|\/|g;        ## restore escaped forward slashes
  500.         $negated = s/^!//;  ## check for negation
  501.         eval "/$_/";         ## check regex syntax
  502.         if ($@) {
  503.             ++$bad_regexs;
  504.             carp "Bad regular expression /$_/ in "$section_spec": $@n";
  505.         }
  506.         else {
  507.             ## Add the forward and rear anchors (and put the negator back)
  508.             $_ = '^' . $_  unless (/^^/);
  509.             $_ = $_ . '$'  unless (/$$/);
  510.             $_ = '!' . $_  if ($negated);
  511.         }
  512.     }
  513.     return  (! $bad_regexs) ? [ @regexs ] : undef;
  514. }
  515. ##---------------------------------------------------------------------------
  516. =begin _PRIVATE_
  517. =head2 $self->{_SECTION_HEADINGS}
  518. A reference to an array of the current section heading titles for each
  519. heading level (note that the first heading level title is at index 0).
  520. =end _PRIVATE_
  521. =cut
  522. ##---------------------------------------------------------------------------
  523. =begin _PRIVATE_
  524. =head2 $self->{_SELECTED_SECTIONS}
  525. A reference to an array of references to arrays. Each subarray is a list
  526. of anchored regular expressions (preceded by a "!" if the expression is to
  527. be negated). The index of the expression in the subarray should correspond
  528. to the index of the heading title in C<$self-E<gt>{_SECTION_HEADINGS}>
  529. that it is to be matched against.
  530. =end _PRIVATE_
  531. =cut
  532. #############################################################################
  533. =head1 SEE ALSO
  534. L<Pod::Parser>
  535. =head1 AUTHOR
  536. Brad Appleton E<lt>bradapp@enteract.comE<gt>
  537. Based on code for B<pod2text> written by
  538. Tom Christiansen E<lt>tchrist@mox.perl.comE<gt>
  539. =cut
  540. 1;