More Han tweaks from Autrjius Tang: most importantly,
[p5sagit/p5-mst-13.2.git] / ext / Encode / TW / TW.pm
CommitLineData
0e567a6c 1package Encode::TW;
2use Encode;
3our $VERSION = '0.02';
4use XSLoader;
5XSLoader::load('Encode::TW',$VERSION);
6
71;
8__END__
b2729934 9=head1 NAME
10
11Encode::TW - Taiwan-based Chinese Encodings
12
13=head1 SYNOPSIS
14
15 use Encode::CN;
16 $big5 = encode("big5", $utf8);
17 $utf8 = encode("big5", $big5);
18
19=head1 DESCRIPTION
20
21This module implements Taiwan-based Chinese charset encodings.
22Encodings supported are as follows.
23
24 big5 The original Big5 encoding
25 big5-hkscs Big5 plus Cantonese characters in Hong Kong
26 cp950 Code Page 950 (Big5 + Microsoft vendor mappings)
27
28To find how to use this module in detail, see L<Encode>.
29
30=head1 NOTES
31
32Due to size concerns, C<EUC-TW> (Extended Unix Character) and C<BIG5PLUS>
33(CMEX's Big5+) are distributed separately on CPAN, under the name
34L<Encode::HanExtra>. That module also contains extra China-based encodings.
35
36=head1 BUGS
37
38The C<CNS11643> encoding files are not complete (only the first two planes,
39C<11643-1> and C<11643-2>, exist in the distribution). For common CNS11643
40manipulation, please use C<EUC-TW> in L<Encode::HanExtra>, which contains
41plane 1-7.
42
43ASCII part (0x00-0x7f) is preserved for all encodings, even though it
44conflicts with mappings by the Unicode Consortium. See
45
46F<http://www.debian.or.jp/~kubota/unicode-symbols.html.en>
47
48to find why it is implemented that way.
49
50=head1 SEE ALSO
51
52L<Encode>
53
54=cut