I don't use folding often, but I'm not figuring out if/how to fold
POD documentation in a Perl module.
I have a module that includes:
=head1 METHODS
=over 4
=item wazbat
This method returns the wazbat of the current object.
=cut
sub wazbat {
my $self = shift;
return $self->{wazbat}
=item fromp
This methods implements the fromp operation.
=cut
sub fromp {
return "fromp";
}
=back
=head1 WARNINGS
[...]
Is it possible to fold the =head1 or =item sections within a given
=head1 section?
--
Bill Moseley
[EMAIL PROTECTED]