Pod::Abstract::Filter::number_sections - paf command for basic multipart


Pod-Abstract documentation Contained in the Pod-Abstract distribution.

Index


Code Index:

NAME

Top

Pod::Abstract::Filter::number_sections - paf command for basic multipart section numbering.

AUTHOR

Top

Ben Lilburne <bnej@mac.com>

COPYRIGHT AND LICENSE

Top


Pod-Abstract documentation Contained in the Pod-Abstract distribution.
package Pod::Abstract::Filter::number_sections;
use strict;
use warnings;

use base qw( Pod::Abstract::Filter );
use Pod::Abstract::BuildNode qw(node);

our $VERSION = '0.20';

sub filter {
    my $self = shift;
    my $pa = shift;

    my $h1 = 0;
    my @h1 = $pa->select('/head1');
    foreach my $hn1 (@h1) {
        $h1 ++;
        $hn1->param('heading')->unshift(node->text("$h1. "));
        
        my @h2 = $hn1->select('/head2');
        my $h2 = 0;
        foreach my $hn2 (@h2) {
            $h2 ++;
            $hn2->param('heading')->unshift(node->text("$h1.$h2 "));
            
            my @h3 = $hn2->select('/head3');
            my $h3 = 0;
            foreach my $hn3 (@h3) {
                $h3 ++;
                $hn3->param('heading')->unshift(node->text("$h1.$h2.$h3 "));
                
                my @h4 = $hn3->select('/head4');
                my $h4 = 0;
                foreach my $hn4 (@h4) {
                    $h4 ++;
                    $hn4->param('heading')->
                        unshift(node->text("$h1.$h2.$h3.$h4 "));
                }
            }
        }
    }
    
    return $pa;
}

1;