• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Pod/H09-Dec-2014-733501

t/H09-Dec-2014-289224

ChangesH A D09-Dec-20141.8 KiB6342

MANIFESTH A D09-Dec-2014290 1211

MANIFEST.SKIPH A D07-Feb-201453 86

META.jsonH A D09-Dec-20141.1 KiB5352

META.ymlH A D09-Dec-2014572 2928

Makefile.PLH A D08-Feb-20141.5 KiB6549

READMEH A D07-Feb-20142.4 KiB9259

README

1README for Pod::Escapes
2                                        Time-stamp: "2004-04-27 19:55:10 ADT"
3
4NAME
5    Pod::Escapes -- for resolving Pod E<...> sequences
6
7SYNOPSIS
8      use Pod::Escapes qw(e2char);
9      ...la la la, parsing POD, la la la...
10      $text = e2char($e_node->label);
11      unless(defined $text) {
12        print "Unknown E sequence \"", $e_node->label, "\"!";
13      }
14      ...else print/interpolate $text...
15
16DESCRIPTION
17    This module provides things that are useful in decoding Pod E<...>
18    sequences. Presumably, it should be used only by Pod parsers and/or
19    formatters.
20
21    By default, Pod::Escapes exports none of its symbols. But you can request
22    any of them to be exported. Either request them individually, as with `use
23    Pod::Escapes qw(symbolname symbolname2...);', or you can do `use
24    Pod::Escapes qw(:ALL);' to get all exportable symbols.
25
26[...]
27
28CAVEATS
29    On Perl versions before 5.7, Unicode characters with a value over 255 (like
30    lambda or emdash) can't be conveyed. This module does work under such early
31    Perl versions, but in the place of each such character, you get a "?".
32    Latin-1 characters (characters 160-255) are unaffected.
33
34SEE ALSO
35    perlpod
36
37    perlpodspec
38
39    Text::Unidecode
40
41[...]
42
43
44PREREQUISITES
45
46This suite requires Perl 5; I've only used it under Perl 5.004, so for
47anything lower, you're on your own.
48
49Pod::Escapes doesn't use any nonstandard modules.
50
51
52INSTALLATION
53
54You install Pod::Escapes, as you would install any perl module
55library, by running these commands:
56
57   perl Makefile.PL
58   make
59   make test
60   make install
61
62If you want to install a private copy of Pod::Escapes in your home
63directory, then you should try to produce the initial Makefile with
64something like this command:
65
66  perl Makefile.PL LIB=~/perl
67
68
69DOCUMENTATION
70
71POD-format documentation is included in Escapes.pm.  POD is readable
72with the 'perldoc' utility.  See ChangeLog for recent changes.
73
74
75MACPERL INSTALLATION NOTES
76
77Don't bother with the makefiles.  Just make a Pod directory in your
78MacPerl site_lib or lib directory, and move Escapes.pm into there.
79
80
81SUPPORT
82
83Questions, bug reports, useful code bits, and suggestions for
84Pod::Escapes should just be sent to me at sburke@cpan.org
85
86
87AVAILABILITY
88
89The latest version of Pod::Escapes is available from the
90Comprehensive Perl Archive Network (CPAN).  Visit
91<http://www.perl.com/CPAN/> to find a CPAN site near you.
92