| Line | |
|---|
| 1 | package Encode::Symbol;
|
|---|
| 2 | use Encode;
|
|---|
| 3 | our $VERSION = do { my @r = (q$Revision: 2.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
|
|---|
| 4 |
|
|---|
| 5 | use XSLoader;
|
|---|
| 6 | XSLoader::load(__PACKAGE__,$VERSION);
|
|---|
| 7 |
|
|---|
| 8 | 1;
|
|---|
| 9 | __END__
|
|---|
| 10 |
|
|---|
| 11 | =head1 NAME
|
|---|
| 12 |
|
|---|
| 13 | Encode::Symbol - Symbol Encodings
|
|---|
| 14 |
|
|---|
| 15 | =head1 SYNOPSIS
|
|---|
| 16 |
|
|---|
| 17 | use Encode qw/encode decode/;
|
|---|
| 18 | $symbol = encode("symbol", $utf8); # loads Encode::Symbol implicitly
|
|---|
| 19 | $utf8 = decode("", $symbol); # ditto
|
|---|
| 20 |
|
|---|
| 21 | =head1 ABSTRACT
|
|---|
| 22 |
|
|---|
| 23 | This module implements symbol and dingbats encodings. Encodings
|
|---|
| 24 | supported are as follows.
|
|---|
| 25 |
|
|---|
| 26 | Canonical Alias Description
|
|---|
| 27 | --------------------------------------------------------------------
|
|---|
| 28 | symbol
|
|---|
| 29 | dingbats
|
|---|
| 30 | AdobeZDingbat
|
|---|
| 31 | AdobeSymbol
|
|---|
| 32 | MacDingbats
|
|---|
| 33 |
|
|---|
| 34 | =head1 DESCRIPTION
|
|---|
| 35 |
|
|---|
| 36 | To find out how to use this module in detail, see L<Encode>.
|
|---|
| 37 |
|
|---|
| 38 | =head1 SEE ALSO
|
|---|
| 39 |
|
|---|
| 40 | L<Encode>
|
|---|
| 41 |
|
|---|
| 42 | =cut
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.