Help for this page

Select Code to Download


  1. or download this
    use Pod::POM;
    
    my $parser =  Pod::POM->new();
    my $pom = $parser->parse_file(...);
    my $h1 = $pom->add($parser, 'head1', 'This is a new head1');
    
  2. or download this
    my @SECTIONS = qw(name synopsis ...);
    
    ...
        print "=head1 ", uc($title), "\n\n";
      }
    }