unicode: common (western) characters
[sheet.git] / digraphs.plp
index 6e8a30a867f4900289f22bd64caffa2ae4566244..81944b2e50c63d8186f81c3abbc8bb734b933c0d 100644 (file)
@@ -21,6 +21,9 @@ $header{content_type} = 'text/html; charset=utf-8';
 <body>
 <h1>RFC-1345 Digraphs</h1>
 
+<p>i^k in <a href="/">Vim</a>.
+Also see <a href="/unicode">common digraphs</a>.</p>
+
 <:
 my $di = do 'digraphs.inc.pl';
 
@@ -32,38 +35,51 @@ sub quote {
        return $_;
 }
 
-my @chars = ((map {chr} ord '!' .. ord 'Z'), 'a'..'z');
-splice @chars, $_, 1, () for 2, 3-1, 5-2, 31-3;  # remove character exceptions # $ & @
-my @chars2 = (@chars, '_');  # trailing character (extended set)
+my @chars = (
+       [qw{! " % ' ( ) * + , - . /}],
+       ['0'..'9'], [qw{: ; < = > ?}],
+       ['A'..'M'], ['N'..'Z'],
+       ['a'..'m'], ['n'..'z'],
+);
+my @chars2 = (['_'], @chars);  # trailing character (extended set)
 
-print '<table>';
+print '<table><col>';
+print qq'<colgroup span="$_">' for map {scalar @$_} @chars2;
+print "</colgroup><col>\n";
 for my $section (qw{thead tfoot}) {
        print "<$section><tr><th>&nbsp;";
-       print "<th>$_" for @chars2;
+       print '<th>', quote($_) for map {@$_} @chars2;
+       print "<th>&nbsp;\n";
 }
-print '<tbody>';
-for my $c1 (@chars) {
-       print "<tr><th>$c1";
-       for my $c2 (@chars2) {
-               my $mnem = $c1 . $c2;
-               if (not defined $di->{$mnem}) {
-                       print '<td>';
-                       next;
-               }
-               my ($codepoint, $name, $prop, $script) = @{ $di->{$mnem} };
+for my $c1group (@chars) {
+       print '<tbody>';
+       for my $c1 (@$c1group) {
+               print '<tr><th>', quote($c1);
+               for my $c2 (map {@$_} @chars2) {
+                       my $mnem = $c1 . $c2;
+                       if (not defined $di->{$mnem}) {
+                               print '<td>';
+                               next;
+                       }
+                       if (ref $di->{$mnem} ne 'ARRAY') {
+                               printf '<td class="X Xr" title="%s">', quote($mnem);
+                               next;
+                       }
+                       my ($codepoint, $name, $prop, $script, $string) = @{ $di->{$mnem} };
 
-               my $glyph = chr $codepoint;
-               utf8::upgrade($glyph);  # prevent latin1 output
-               my $desc = $mnem . ($name && " ($name)");
-               my @class = ('X', grep {$_} $prop, $script);
+                       my $glyph = $string || chr $codepoint;
+                       utf8::upgrade($glyph);  # prevent latin1 output
+                       my $desc = $mnem . ($name && " ($name)");
+                       my @class = ('X', grep {$_} $prop, $script);
 
-               $glyph = quote($glyph);
-               $glyph = "<span>$glyph</span>" if $prop eq 'Zs';
+                       $glyph = quote($glyph);
+                       $glyph = "<span>$glyph</span>" if $prop eq 'Zs';
 
-               printf "\n".'<td class="%s" title="%s">%s',
-                       join(' ', @class), quote($desc), $glyph;
+                       printf "\n".'<td class="%s" title="%s">%s',
+                               join(' ', @class), quote($desc), $glyph;
+               }
+               print "\n<th>", quote($c1), "\n";
        }
-       print "\n<th>$c1\n";
 }
 print "</table>\n";
 :>
@@ -84,6 +100,7 @@ print "</table>\n";
        <td class="X Latin">latin
        <td class="X Hebrew">hebrew
        <td class="X Arabic">arabic
+       <td class="X Hangul">korean
        <td class="X Hiragana">japanese
        <td class="X Bopomofo">chinese
        </table>
@@ -92,12 +109,11 @@ print "</table>\n";
        <td class="X">unicode
        <td class="X Xl">latin1
        <td class="X Xa">ascii
-       <td class="X Co">private
        <td class="X Xz">proposed
        </table>
 </div>
 
-<p class="footer">
+<p id="footer">
        <a href="http://vi.shiar.net/digraphs">vi.<strong>shiar.net</strong>/digraphs</a>
        <a href="git://dev.shiar.net/vi-cheat"><:= "v$VERSION" :></a>
        created by Shiar •