1Pod::PseudoPod(3pm) User Contributed Perl Documentation Pod::PseudoPod(3pm)
2
3
4
6 Pod::PseudoPod - A framework for parsing PseudoPod
7
9 use strict;
10 package SomePseudoPodFormatter;
11 use base qw(Pod::PseudoPod);
12
13 sub handle_text {
14 my($self, $text) = @_;
15 ...
16 }
17
18 sub start_head1 {
19 my($self, $flags) = @_;
20 ...
21 }
22 sub end_head1 {
23 my($self) = @_;
24 ...
25 }
26
27 ...and start_*/end_* methods for whatever other events you
28 want to catch.
29
31 PseudoPod is an extended set of Pod tags used for book manuscripts.
32 Standard Pod doesn't have all the markup options you need to mark up
33 files for publishing production. PseudoPod adds a few extra tags for
34 footnotes, tables, sidebars, etc.
35
36 This class adds parsing support for the PseudoPod tags. It also
37 overrides Pod::Simple's "_handle_element_start", "_handle_text", and
38 "_handle_element_end" methods so that parser events are turned into
39 method calls.
40
41 In general, you'll only want to use this module as the base class for a
42 PseudoPod formatter/processor.
43
45 Pod::Simple, Pod::PseudoPod::HTML, Pod::PseudoPod::Tutorial
46
48 Copyright (C) 2003-2009 Allison Randal.
49
50 This library is free software; you can redistribute it and/or modify it
51 under the same terms as Perl itself. The full text of the license can
52 be found in the LICENSE file included with this module.
53
54 This library is distributed in the hope that it will be useful, but
55 without any warranty; without even the implied warranty of
56 merchantability or fitness for a particular purpose.
57
59 Allison Randal <allison@perl.org>
60
61
62
63perl v5.38.0 2023-07-21 Pod::PseudoPod(3pm)