diff options
Diffstat (limited to 'cpan/Pod-Simple/lib/Pod/Simple/PullParserStartToken.pm')
-rw-r--r-- | cpan/Pod-Simple/lib/Pod/Simple/PullParserStartToken.pm | 37 |
1 files changed, 34 insertions, 3 deletions
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/PullParserStartToken.pm b/cpan/Pod-Simple/lib/Pod/Simple/PullParserStartToken.pm index 9ead50d96e..37b6821994 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/PullParserStartToken.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/PullParserStartToken.pm @@ -2,8 +2,10 @@ require 5; package Pod::Simple::PullParserStartToken; use Pod::Simple::PullParserToken (); -@ISA = ('Pod::Simple::PullParserToken'); use strict; +use vars qw(@ISA $VERSION); +@ISA = ('Pod::Simple::PullParserToken'); +$VERSION = '3.11'; sub new { # Class->new(tagname, optional_attrhash); my $class = shift; @@ -111,6 +113,23 @@ Pod::Simple::PullParserStartToken->new( I<tagname>, I<attrhash> ) L<Pod::Simple::PullParserToken>, L<Pod::Simple>, L<Pod::Simple::Subclassing> +=head1 SEE ALSO + +L<Pod::Simple::PullParserToken>, L<Pod::Simple>, L<Pod::Simple::Subclassing> + +=head1 SUPPORT + +Questions or discussion about POD and Pod::Simple should be sent to the +pod-people@perl.org mail list. Send an empty email to +pod-people-subscribe@perl.org to subscribe. + +This module is managed in an open GitHub repository, +L<http://github.com/theory/pod-simple/>. Feel free to fork and contribute, or +to clone L<git://github.com/theory/pod-simple.git> and send patches! + +Patches against Pod::Simple are welcome. Please send bug reports to +<bug-pod-simple@rt.cpan.org>. + =head1 COPYRIGHT AND DISCLAIMERS Copyright (c) 2002 Sean M. Burke. All rights reserved. @@ -124,7 +143,19 @@ merchantability or fitness for a particular purpose. =head1 AUTHOR -Sean M. Burke C<sburke@cpan.org> +Pod::Simple was created by Sean M. Burke <sburke@cpan.org>. +But don't bother him, he's retired. -=cut +Pod::Simple is maintained by: + +=over + +=item * Allison Randal C<allison@perl.org> + +=item * Hans Dieter Pearcey C<hdp@cpan.org> +=item * David E. Wheeler C<dwheeler@cpan.org> + +=back + +=cut |