NAME
Pod::Escapes - for resolving Pod E<...> sequences
SYNOPSIS
use Pod::Escapes qw(e2char);
...la la la, parsing POD, la la la...$text = e2char($enode->label);
unless(defined $text) {
print "Unknown E sequence \"", $enode->label, "\"!";
}...else print/interpolate $text...
DESCRIPTION
This module provides things that are useful in decoding Pod E<...> sequences. Presumably, it should be used only by Pod parsers and/or formatters.By default, Pod::Escapes exports none of its symbols. But you can
request any of them to be exported. Either request them individually,as with "use Pod::Escapes qw(symbolname symbolname2...);", or you can
do "use Pod::Escapes qw(:ALL);" to get all exportable symbols.
GGOOOODDIIEESSe2char($econtent)
Given a name or number that could appear in a "E" sequence, this returns the string that it stands for. For example, "e2char('sol')", "e2char('47')", "e2char('0x2F')", and "e2char('057')" all return "/", because "E ", "E<47>", "E<0x2f>", and "E<057>", all mean "/". If the name has no known value (as with a name of "qacute") or is syntactally invalid (as with a name of "1/4"), this returns undef. e2charnum($econtent)
Given a name or number that could appear in a "E" sequence, this returns the number of the Unicode character that this stands for. For example, "e2char('sol')", "e2char('47')", "e2char('0x2F')", and "e2char('057')" all return 47, because "E ", "E<47>", "E<0x2f>", and "E<057>", all mean "/", whose Unicode number is 47. If the name has no known value (as with a name of "qacute") or is syntactally invalid (as with a name of "1/4"), this returns undef. $Name2character{name}
Maps from names (as in "E") like "eacute" or "sol" to the string that each stands for. Note that this does not include numerics (like "64" or "x981c"). Under old Perl versions (before 5.7) you get a "?" in place of characters whose Unicode value is over 255. $Name2characternumber{name}
Maps from names (as in "E") like "eacute" or "sol" to the Unicode value that each stands for. For example, $Name2characternumber{'eacute'} is 201, and
$Name2characternumber{'eacute'} is 8364. You get the correct
Unicode value, regardless of the version of Perl you're using -
which differs from %Name2character's behavior under pre-5.7 Perls.
Note that this hash does not include numerics (like "64" or "x981c").$Latin1Codetofallback{integer}
For numbers in the range 160 (0x00A0) to 255 (0x00FF), this mapsfrom the character code for a Latin-1 character (like 233 for
lowercase e-acute) to the US-ASCII character that best aproximates
it (like "e"). You may find this useful if you are rendering PODin a format that you think deals well only with US-ASCII
characters.$Latin1Chartofallback{character}
Just as above, but maps from characters (like "\xE9", lowercasee-acute) to characters (like "e").
$Code2USASCII{integer}
This maps from US-ASCII codes (like 32) to the corresponding
character (like space, for 32). Only characters 32 to 126 aredefined. This is meant for use by "e2char($x)" when it senses that
it's running on a non-ASCII platform (where chr(32) doesn't get you
a space - but $Code2USASCII{32} will). It's documented here just
in case you might find it useful. CCAAVVEEAATTSS On Perl versions before 5.7, Unicode characters with a value over 255 (like lambda or emdash) can't be conveyed. This module does work under such early Perl versions, but in the place of each such character, youget a "?". Latin-1 characters (characters 160-255) are unaffected.
Under EBCDIC platforms, "e2char($n)" may not always be the same as
"chr(e2charnum($n))", and ditto for $Name2character{$name} and
"chr($Name2characternumber{$name})".
SEE ALSO
perlpod perlpodspec Text::Unidecode COPYRIGHT AND DISCLAIMERSCopyright (c) 2001-2004 Sean M. Burke. All rights reserved.
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. Portions of the data tables in this module are derived from the entity declarations in the W3C XHTML specification. Currently (October 2001), that's these three:http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent
http://www.w3.org/TR/xhtml1/DTD/xhtml-special.ent
http://www.w3.org/TR/xhtml1/DTD/xhtml-symbol.ent
AUTHOR Sean M. Burke "sburke@cpan.org"perl v5.8.8 2004-05-07 Pod::Escapes(3)