1Pod::Perldoc::BaseTo(3pmP)erl Programmers Reference GuidPeod::Perldoc::BaseTo(3pm)
2
3
4
6 Pod::Perldoc::BaseTo - Base for Pod::Perldoc formatters
7
9 package Pod::Perldoc::ToMyFormat;
10
11 use base qw( Pod::Perldoc::BaseTo );
12 ...
13
15 This package is meant as a base of Pod::Perldoc formatters, like
16 Pod::Perldoc::ToText, Pod::Perldoc::ToMan, etc.
17
18 It provides default implementations for the methods
19
20 is_pageable
21 write_with_binmode
22 output_extension
23 _perldoc_elem
24
25 The concrete formatter must implement
26
27 new
28 parse_from_file
29
31 perldoc
32
34 Copyright (c) 2002-2007 Sean M. Burke.
35
36 This library is free software; you can redistribute it and/or modify it
37 under the same terms as Perl itself.
38
39 This program is distributed in the hope that it will be useful, but
40 without any warranty; without even the implied warranty of
41 merchantability or fitness for a particular purpose.
42
44 Current maintainer: Adriano R. Ferreira <ferreira@cpan.org>
45
46 Past contributions from: Sean M. Burke <sburke@cpan.org>
47
48
49
50perl v5.12.4 2011-06-01 Pod::Perldoc::BaseTo(3pm)