http://www.perlmonks.org?node_id=1015252


in reply to Showing the right POD via Pod::Usage

The following is a kludge, but may be worth a try:

Change the second:

=head1 SYNOPSIS
to (say):
=head1 MAIN

and then invoke pod2usage as:

Pod::Usage::pod2usage( pod2usage(-verbose => 99, -sections => [ qw(MAIN) ] ) ) if ( $CONFIG{ 'help' } );

See -sections in the “Arguments” section of Pod::Usage.

Hope that helps,

Athanasius <°(((><contra mundum Iustus alius egestas vitae, eros Piratica,

Replies are listed 'Best First'.
Re^2: Showing the right POD via Pod::Usage
by skx (Parson) on Jan 25, 2013 at 09:46 UTC

    Renaming the sections would be a simple solution that hadn't occurred to me, thanks.

    (I've gone the other way and used a __DATA__ block to hold it).

    Steve
    --