1Pod::Perldoc::BaseTo(3)User Contributed Perl DocumentatioPnod::Perldoc::BaseTo(3)
2
3
4
6 Pod::Perldoc::BaseTo - Base for Pod::Perldoc formatters
7
9 package Pod::Perldoc::ToMyFormat;
10
11 use parent 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: Mark Allen "<mallen@cpan.org>"
45
46 Past contributions from: brian d foy "<bdfoy@cpan.org>" Adriano R.
47 Ferreira "<ferreira@cpan.org>", Sean M. Burke "<sburke@cpan.org>"
48
49
50
51perl v5.38.0 2023-07-21 Pod::Perldoc::BaseTo(3)