1Pod::Plainer(3pm) Perl Programmers Reference Guide Pod::Plainer(3pm)
2
3
4
6 Pod::Plainer - Perl extension for converting Pod to old style Pod.
7
9 use Pod::Plainer;
10
11 my $parser = Pod::Plainer -> new ();
12 $parser -> parse_from_filehandle(\*STDIN);
13
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 EXPORT
23
24 None by default.
25
27 Robin Barker, rmb1@cise.npl.co.uk
28
30 See Pod::Parser.
31
32
33
34perl v5.8.8 2001-09-21 Pod::Plainer(3pm)