1Plainer(3)            User Contributed Perl Documentation           Plainer(3)
2
3
4

NAME

6       Pod::Plainer - Perl extension for converting Pod to old-style Pod.
7

SYNOPSIS

9         use Pod::Plainer;
10
11         my $parser = Pod::Plainer -> new ();
12         $parser -> parse_from_filehandle(\*STDIN);
13

DESCRIPTION

15       Pod::Plainer uses Pod::Parser which takes Pod with the (new) 'C<< ..
16       >>' constructs and returns the old(er) style with just 'C<>'; '<' and
17       '>' are replaced by 'E<lt>' and 'E<gt>'.
18
19       This can be used to pre-process Pod before using tools which do not
20       recognise the new style Pods.
21
22   METHODS
23       escape_ltgt
24           Replace '<' and '>' by 'E<lt>' and 'E<gt>'.
25
26       simple_delimiters
27           Replace delimiters by '<' and '>'.
28
29       textblock
30           Redefine "textblock" from Pod::Parser to use "escape_ltgt" and
31           "simple_delimiters".
32
33   EXPORT
34       None by default.
35

AUTHOR

37       Robin Barker, rmbarker@cpan.org
38

SEE ALSO

40       See Pod::Parser.
41
43       Copyright (C) 2009, 2010, 2014 by Robin Barker
44
45       This library is free software; you can redistribute it and/or modify it
46       under the same terms as Perl itself, either Perl version 5.10.1 or, at
47       your option, any later version of Perl 5 you may have available.
48
49
50
51perl v5.26.3                      2014-07-04                        Plainer(3)
Impressum