diff options
author | Karl Berry <karl@freefriends.org> | 2008-03-10 00:39:58 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-03-10 00:39:58 +0000 |
commit | 5b5d85b1efe254cff2f8e1ea1c4311b22985f308 (patch) | |
tree | 19151eff7885b12194dbb4351fa753dc8e9f34ad /Build/source/utils/texi2html/examples/utf8.init | |
parent | 614bb5959706e51f05a0401e6c18627ba87134f0 (diff) |
remove texi2html, it does not find its files within TL and is readily installable itself
git-svn-id: svn://tug.org/texlive/trunk@6926 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/texi2html/examples/utf8.init')
-rw-r--r-- | Build/source/utils/texi2html/examples/utf8.init | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/Build/source/utils/texi2html/examples/utf8.init b/Build/source/utils/texi2html/examples/utf8.init deleted file mode 100644 index 2d231e30a8f..00000000000 --- a/Build/source/utils/texi2html/examples/utf8.init +++ /dev/null @@ -1,27 +0,0 @@ -# -*-perl-*- -$USE_ISO = 0; -$ENCODING = 'utf-8'; - -# if the encoding isn't utf-8, we should convert to utf-8 characters. - -use Encode; -use Unicode::Normalize; - -foreach my $key (keys(%unicode_accents)) -{ - $style_map{$key}->{'function'} = \&t2h_utf8_accent; - $style_map_texi{$key}->{'function'} = \&t2h_utf8_accent; -} - -foreach my $key (%things_map) -{ - if (exists($unicode_map{$key}) and ($unicode_map{$key} ne '')) - { - $things_map{$key} = chr(hex($unicode_map{$key})); - $texi_map{$key} = chr(hex($unicode_map{$key})); - } -} - -$normal_text = \&t2h_utf8_normal_text; - -1; |