Linux server.serveridoramd.com 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
LiteSpeed
Server IP : 138.128.189.138 & Your IP : 216.73.216.158
Domains :
Cant Read [ /etc/named.conf ]
User : avisosenacribj05
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
perl5 /
vendor_perl /
Pod /
Delete
Unzip
Name
Size
Permission
Date
Action
Perldoc
[ DIR ]
drwxr-xr-x
2025-10-21 18:27
Simple
[ DIR ]
drwxr-xr-x
2025-10-21 18:27
Text
[ DIR ]
drwxr-xr-x
2025-10-21 18:27
Checker.pm
31.74
KB
-rw-r--r--
2016-05-30 19:03
Escapes.pm
17.47
KB
-rw-r--r--
2014-12-09 21:31
Find.pm
15.45
KB
-rw-r--r--
2015-02-01 12:47
InputObjects.pm
26.87
KB
-rw-r--r--
2015-02-01 12:24
LaTeX.pm
58.19
KB
-rw-r--r--
2019-10-13 11:50
Man.pm
77.97
KB
-rw-r--r--
2018-05-07 19:06
ParseLink.pm
6.25
KB
-rw-r--r--
2018-05-07 19:06
ParseUtils.pm
20.68
KB
-rw-r--r--
2015-02-01 12:25
Parser.pm
64.23
KB
-rw-r--r--
2015-02-01 12:25
Perldoc.pm
63.58
KB
-rw-r--r--
2017-03-16 00:53
PlainText.pm
24.98
KB
-rw-r--r--
2015-02-01 12:25
Plainer.pm
1.88
KB
-rw-r--r--
2014-07-04 19:39
Select.pm
23.93
KB
-rw-r--r--
2015-02-01 12:25
Simple.pm
52.66
KB
-rw-r--r--
2016-11-29 23:14
Simple.pod
13.89
KB
-rw-r--r--
2016-11-29 23:14
Text.pm
35.6
KB
-rw-r--r--
2018-05-07 19:06
Usage.pm
29.05
KB
-rw-r--r--
2016-05-23 20:09
Save
Rename
package Pod::Plainer; use 5.006; use strict; use warnings; use Pod::Parser; our @ISA = qw(Pod::Parser); our $VERSION = '1.04'; our %E = qw( < lt > gt ); sub escape_ltgt { (undef, my $text) = @_; $text =~ s/([<>])/E<$E{$1}>/g; $text } sub simple_delimiters { (undef, my $seq) = @_; $seq -> left_delimiter( '<' ); $seq -> right_delimiter( '>' ); $seq; } sub textblock { my($parser,$text,$line) = @_; print {$parser->output_handle()} $parser->parse_text( { -expand_text => q(escape_ltgt), -expand_seq => q(simple_delimiters) }, $text, $line ) -> raw_text(); } 1; __END__ =head1 NAME Pod::Plainer - Perl extension for converting Pod to old-style Pod. =head1 SYNOPSIS use Pod::Plainer; my $parser = Pod::Plainer -> new (); $parser -> parse_from_filehandle(\*STDIN); =head1 DESCRIPTION Pod::Plainer uses Pod::Parser which takes Pod with the (new) 'CE<lt>E<lt> .. E<gt>E<gt>' constructs and returns the old(er) style with just 'CE<lt>E<gt>'; '<' and '>' are replaced by 'EE<lt>ltE<gt>' and 'EE<lt>gtE<gt>'. This can be used to pre-process Pod before using tools which do not recognise the new style Pods. =head2 METHODS =over =item escape_ltgt Replace '<' and '>' by 'EE<lt>ltE<gt>' and 'EE<lt>gtE<gt>'. =item simple_delimiters Replace delimiters by 'E<lt>' and 'E<gt>'. =item textblock Redefine C<textblock> from L<Pod::Parser> to use C<escape_ltgt> and C<simple_delimiters>. =back =head2 EXPORT None by default. =head1 AUTHOR Robin Barker, rmbarker@cpan.org =head1 SEE ALSO See L<Pod::Parser>. =head1 COPYRIGHT AND LICENSE Copyright (C) 2009, 2010, 2014 by Robin Barker This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.1 or, at your option, any later version of Perl 5 you may have available. =cut $Id: Plainer.pm 365 2014-07-04 19:39:20Z robin $