From a86a347cd31f3cf18daeccebe0eeceabce738d46 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Fri, 21 Apr 2017 22:06:34 +0200 Subject: [PATCH] charset: encode wingdings3 font Reference: --- Encode/Wingdings3.pm | 22 ++++++++++++++++++++++ charset.plp | 3 ++- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 Encode/Wingdings3.pm diff --git a/Encode/Wingdings3.pm b/Encode/Wingdings3.pm new file mode 100644 index 0000000..85ce8d1 --- /dev/null +++ b/Encode/Wingdings3.pm @@ -0,0 +1,22 @@ +package Encode::Webdings3; + +use 5.014; +use warnings; +use utf8; + +our $VERSION = '1.00'; + +use parent 'Encode::Wingdings'; +__PACKAGE__->Define('wingdings3'); + +our @MAP = (qw[ + ⭠ ⭢ ⭡ ⭣ ⭦ ⭧ ⭩ ⭨ ⭰ ⭲ ⭱ ⭳ ⭶ ⭸ ⭻ ⭽ ⭤ ⭥ ⭪ ⭬ ⭫ ⭭ ⭍ ⮠ ⮡ ⮢ ⮣ ⮤ ⮥ ⮦ ⮧ + ⮐ ⮑ ⮒ ⮓ ⮀ ⮃ ⭾ ⭿ ⮄ ⮆ ⮅ ⮇ ⮏ ⮍ ⮎ ⮌ ⭮ ⭯ ⎋ ⌤ ⌃ ⌥ ⎵ ⏡ ⇪ ⮸ 🢠 🢡 🢢 🢣 🢤 🢥 + 🢦 🢧 🢨 🢩 🢪 🢫 ← → ↑ ↓ ↖ ↗ ↙ ↘ 🡘 🡙 ▲ ▼ △ ▽ ◄ ► ◁ ▷ ◣ ◢ ◤ ◥ 🞀 🞂 🞁  + 🞃 ▲ ▼ ◀ ▶ ⮜ ⮞ ⮝ ⮟ 🠐 🠒 🠑 🠓 🠔 🠖 🠕 🠗 🠘 🠚 🠙 🠛 🠜 🠞 🠝 🠟 🠀 🠂 🠁 🠃 🠄 🠆 🠅 + 🠇 🠈 🠊 🠉 🠋 🠠 🠢 🠤 🠦 🠨 🠨 🠪 🢜 🢝 🢞 🢟 🠮 🠰 🠲 🠴 🠶 🠸 🠺 🠹 🠻 🢘 🢚 🢙 🢛 🠼 🠾 🠽 + 🠿 🡀 🡂 🡁 🡃 🡄 🡆 🡅 🡇 ⮨ ⮩ ⮪ ⮫ ⮬ ⮭ ⮮ ⮯ 🡠 🡢 🡡 🡣 🡤 🡥 🡧 🡦 🡰 🡲 🡱 🡳 🡴 🡵 🡷 + 🡶 🢀 🢂 🢁 🢃 🢄 🢅 🢇 🢆 🢐 🢒 🢑 🢓 🢔 🢖 🢕 🢗 +]); + +1; diff --git a/charset.plp b/charset.plp index 7891ee3..381ea14 100644 --- a/charset.plp +++ b/charset.plp @@ -105,7 +105,7 @@ sub tabinput { hebrew => [qw( iso-8859-8 cp1255 MacHebrew cp862 U59-5F )], thai => [qw( iso-8859-11 cp874 MacThai )], vietnamese => [qw( viscii cp1258 MacVietnamese )], - symbols => [qw( symbol dingbats MacDingbats wingdings wingdings2 webdings )], + symbols => [qw( symbol dingbats MacDingbats wingdings wingdings2 wingdings3 webdings )], # iso-code shorthand 1 => 'westeur', @@ -140,6 +140,7 @@ sub tabinput { 'AdobeSymbol' => ['symbol' => '32-127+160', '' => '32-127+160'], # minor differences, irrelevant except for different '€' 'wingdings' => ['' => '32'], 'wingdings2' => ['' => '32'], + 'wingdings3' => ['' => '32'], 'webdings' => ['' => '32'], 'iso-8859-2' => ['iso-8859-1' => '160'], -- 2.30.0