1Pod::Strip(3)         User Contributed Perl Documentation        Pod::Strip(3)
2
3
4

NAME

6       Pod::Strip - Remove POD from Perl code
7

SYNOPSIS

9           use Pod::Strip;
10
11           my $p=Pod::Strip->new;              # create parser
12           my $podless;                        # set output string
13           $p->output_string(\$podless);       # see Pod::Simple
14           $p->parse_string_document($code);   # or some other parsing method
15                                               #    from Pod::Simple
16           # $podless will now contain code without any POD
17

DESCRIPTION

19       Pod::Strip is a subclass of Pod::Simple that strips all POD from Perl
20       Code.
21

METHODS

23       All methods besides those listed here are inherited from Pod::Simple
24
25       new
26
27       Generate a new parser object.
28
29       replace_with_comments
30
31       Call this method with a true argument to replace POD with comments
32       (looking like "# stripped POD") instead of stripping it.
33
34       This has the effect that line numbers get reported correctly in error
35       messages etc.
36

AUTHOR

38       Thomas Klausner, "<domm@cpan.org>"
39

BUGS

41       Please report any bugs or feature requests to
42       "bug-pod-strip@rt.cpan.org", or through the web interface at
43       <http://rt.cpan.org>.  I will be notified, and then you'll automatiā€
44       cally be notified of progress on your bug as I make changes.
45
47       Copyright 2004, 2005, 2006 Thomas Klausner, All Rights Reserved.
48
49       This program is free software; you can redistribute it and/or modify it
50       under the same terms as Perl itself.
51
52
53
54perl v5.8.8                       2007-05-06                     Pod::Strip(3)
Impressum