Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pod::strip(3pm) [debian man page]

Pod::Strip(3pm) 					User Contributed Perl Documentation					   Pod::Strip(3pm)

NAME
Pod::Strip - Remove POD from Perl code SYNOPSIS
use Pod::Strip; my $p=Pod::Strip->new; # create parser my $podless; # set output string $p->output_string($podless); # see Pod::Simple $p->parse_string_document($code); # or some other parsing method # from Pod::Simple # $podless will now contain code without any POD DESCRIPTION
Pod::Strip is a subclass of Pod::Simple that strips all POD from Perl Code. METHODS
All methods besides those listed here are inherited from Pod::Simple new Generate a new parser object. replace_with_comments Call this method with a true argument to replace POD with comments (looking like "# stripped POD") instead of stripping it. This has the effect that line numbers get reported correctly in error messages etc. AUTHOR
Thomas Klausner, "<domm@cpan.org>" BUGS
Please report any bugs or feature requests to "bug-pod-strip@rt.cpan.org", or through the web interface at <http://rt.cpan.org>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. COPYRIGHT &; LICENSE Copyright 2004, 2005, 2006 Thomas Klausner, All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.0 2006-03-20 Pod::Strip(3pm)

Check Out this Related Man Page

Pod::Simple::DumpAsText(3pm)				 Perl Programmers Reference Guide			      Pod::Simple::DumpAsText(3pm)

NAME
Pod::Simple::DumpAsText -- dump Pod-parsing events as text SYNOPSIS
perl -MPod::Simple::DumpAsText -e "exit Pod::Simple::DumpAsText->filter(shift)->any_errata_seen" thingy.pod DESCRIPTION
This class is for dumping, as text, the events gotten from parsing a Pod document. This class is of interest to people writing Pod formatters based on Pod::Simple. It is useful for seeing exactly what events you get out of some Pod that you feed in. This is a subclass of Pod::Simple and inherits all its methods. SEE ALSO
Pod::Simple::DumpAsXML Pod::Simple SUPPORT
Questions or discussion about POD and Pod::Simple should be sent to the pod-people@perl.org mail list. Send an empty email to pod-people-subscribe@perl.org to subscribe. This module is managed in an open GitHub repository, <https://github.com/theory/pod-simple/>. Feel free to fork and contribute, or to clone <git://github.com/theory/pod-simple.git> and send patches! Patches against Pod::Simple are welcome. Please send bug reports to <bug-pod-simple@rt.cpan.org>. COPYRIGHT AND DISCLAIMERS
Copyright (c) 2002 Sean M. Burke. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. AUTHOR
Pod::Simple was created by Sean M. Burke <sburke@cpan.org>. But don't bother him, he's retired. Pod::Simple is maintained by: o Allison Randal "allison@perl.org" o Hans Dieter Pearcey "hdp@cpan.org" o David E. Wheeler "dwheeler@cpan.org" perl v5.18.2 2013-11-14 Pod::Simple::DumpAsText(3pm)
Man Page

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Strip extention from filename

Hey, How to strip the extention from filename? MY_XML.xml -> MY_XML MY_TEST_FILE.txt -> MY_TEST_FILE HELLO_WORLD.xls -> HELLO_WORLD Thanks in advance! (2 Replies)
Discussion started by: mpang_
2 Replies

2. Shell Programming and Scripting

Strip leading and numbers from a string.

Hello I have two vars loaded with $VAR1="ISOMETHING103" $VAR2="COTHERTHING04" I need to: 1) Strip the first char. Could be sed 's/^.//' 2) The number has it's rules. If it has "hundreds", it needs to be striped. If it is just two digits it shouldn't. So, for VAR1 output should be... (7 Replies)
Discussion started by: tristezo2k
7 Replies

3. Shell Programming and Scripting

Simple Perl question

Hello, I'm completely new to Perl and I'm just looking for a quick answer to some code I'm trying to come up with. I'm trying to access a website, part of the URL I want the user to be able to define via standard input. As you can see below I'm still trying to get the syntax. ... (2 Replies)
Discussion started by: wxornot
2 Replies

4. Shell Programming and Scripting

Strip file based on pattern

Hi, I am stripping the below file based on a pattern: **Starts**02-MAY-2017 03:48:13 **Ends**02-MAY-2017 03:48:13 +---------------------------------------------------------------------------+ Start of log messages ... (2 Replies)
Discussion started by: Prasannag87
2 Replies