Skip to content

Commit a0a3c55

Browse files
haargkhwilliamson
authored andcommitted
add basic synopsis showing subclassing or using an existing formatter
1 parent cf4e306 commit a0a3c55

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

lib/Pod/Simple.pod

+13-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,19 @@ Pod::Simple - framework for parsing Pod
55

66
=head1 SYNOPSIS
77

8-
TODO
8+
# using an existing formatter
9+
use Pod::Simple::XHTML;
10+
my $parser = Pod::Simple::XHTML->new;
11+
$parser->parse_file('path/to/file.pod');
12+
13+
# creating a new formatter
14+
package Pod::Simple::SomeFormatter;
15+
use parent qw(Pod::Simple);
16+
sub _handle_element_start {
17+
my ($parser, $element_name, $attr_hash_r) = @_;
18+
...
19+
}
20+
...
921

1022
=head1 DESCRIPTION
1123

0 commit comments

Comments
 (0)