1 #============================================================= -*-Perl-*-
6 # Module implementing specific nodes in a Pod::POM, subclassed from
10 # Andy Wardley <abw@kfs.org>
11 # Andrew Ford <a.ford@ford-mason.co.uk>
14 # Copyright (C) 2000, 2001 Andy Wardley. All Rights Reserved.
15 # Copyright (C) 2009 Andrew Ford. All Rights Reserved.
17 # This module is free software; you can redistribute it and/or
18 # modify it under the same terms as Perl itself.
21 # $Id: Over.pm 76 2009-08-20 20:41:33Z ford $
23 #========================================================================
25 package BASIS::Pod::POM::Node::Over;
29 use parent qw( BASIS::Pod::POM::Node );
30 use vars qw( %ATTRIBS @ACCEPT $EXPECT $ERROR );
32 %ATTRIBS = ( indent => 4 );
33 @ACCEPT = qw( over item begin for text verbatim code );
38 my ($first, @rest) = $self->content;
40 my $first_type = $first->type;
49 Pod::POM::Node::Over - POM '=over' node class
57 This class implements '=over' Pod nodes. As described by the L<perlpodspec> man page =over/=back regions are
58 used for various kinds of list-like structures (including blockquote paragraphs).
80 Andrew Ford E<lt>a.ford@ford-mason.co.ukE<gt>
82 Andy Wardley E<lt>abw@kfs.orgE<gt>
86 Copyright (C) 2000, 2001 Andy Wardley. All Rights Reserved.
88 Copyright (C) 2009 Andrew Ford. All Rights Reserved.
90 This module is free software; you can redistribute it and/or
91 modify it under the same terms as Perl itself.
95 Consult L<Pod::POM::Node> for a discussion of nodes.