GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Stripper(3) User Contributed Perl Documentation Stripper(3)

Pod::Stripper - strip all pod, and output what's left

    $>perl Stripper.pm

or

    #!/usr/bin/perl -w

    use strict;
    use Pod::Stripper;

    my $Stripper = new Pod::Stripper();

    $Stripper->parse_from_filehandle(\*STDIN) unless (@ARGV);

    for my $ARGV (@ARGV) {
        $Stripper->parse_from_file($ARGV);
    }

This be "Pod::Stripper", a subclass of "Pod::Parser". It parses perl files, stripping out the pod, and dumping the rest (presumably code) to wherever you point it to (like you do with "Pod::Parser").

You could probably subclass it, but I don't see why.

I basically re-wrote "Pod::Stripper" on two separate occasions, and I know at least 2 other people who'd use it, and thought It'd make a nice addition.

"perl -MPod::Stripper -e"Pod::Stripper->new()->parse_from_file(shift)"" " Stripper.pm"

None. This one be object oriented (at least I'm under the impression that it is).

"Pod::Parser" and Pod::Parser, esp. the "input_*" and "output_*" methods

This module will correctly strip out get rid of hidden pod, and preserve hiddencode, but like all pod parsers except "perl", it will be fooled by pod in heredocs (or things like that).

see perlpod and read Stripper.pm for more information.

D.H. aka crazyinsomniac|at|yahoo.com.

Copyright (c) 2002 by D.H. aka crazyinsomniac|at|yahoo.com. All rights reserved.

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

props to all the perlmonks at perlmonks.org, and especiall danger and the ones who showed interest in Pod::Stripper

http://perlmonks.org/index.pl?node=Pod::Stripper

==head2 HEY THIS POD TOO (REALLy, == is valid, although some parsers might disagree)

podchecker will not complain

had to make sure

WHERE ARE YOU?

but hey, if the pod inside a heredoc gets eaten by a pod parser (as it shoulD) I see no problem here

yes, it is
2022-04-09 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.