Pod-Simple-Methody

Pod::Simple::Methody(3p) Perl Programmers Reference Guide

Pod-Simple-Methody

Pod::Simple::Methody(3p) Perl Programmers Reference Guide # Pod::Simple::Methody(3p) Perl Programmers Reference Guide NNAAMMEE # Pod::Simple::Methody -- turn Pod::Simple events into method calls SSYYNNOOPPSSIISS # require 5; use strict; package SomePodFormatter; use base qw(Pod::Simple::Methody); sub handle_text { my($self, $text) = @_; ... } sub start_head1 { my($self, $attrs) = @_; ... } sub end_head1 { my($self) = @_; ... } ...and start_/end_ methods for whatever other events you want to catch. DDEESSCCRRIIPPTTIIOONN # This class is of interest to people writing Pod formatters based on Pod::Simple. ...