X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/95a62b8397c02f6103132a3c248df2c50e6c8829..a0ba9298856b2426c5c66b6d2f2b284d98cee594:/digraphs.plp diff --git a/digraphs.plp b/digraphs.plp index 93dfd75..73189c9 100644 --- a/digraphs.plp +++ b/digraphs.plp @@ -2,10 +2,9 @@ use utf8; use strict; use warnings; +no warnings 'qw'; # to quote or not to quote, that is the question use open IO => ':utf8'; -use Unicode::UCD qw(charinfo); - our $VERSION = '1.0'; $header{content_type} = 'text/html; charset=utf-8'; @@ -17,82 +16,24 @@ $header{content_type} = 'text/html; charset=utf-8'; digraph cheat sheet - +<: + my %styles = map {$_ => $_} qw(dark circus mono red terse); + our $style = exists $get{style} && $styles{$get{style}} || 'light'; + printf(qq{\n}, + $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "$_.css", $_ + ) for keys %styles; +:> - +

RFC-1345 Digraphs

+

i^k in Vim. +Also see common digraphs.

+ +

Unofficial proposals +are available as ex commands.

+ <: my $di = do 'digraphs.inc.pl'; @@ -104,48 +45,56 @@ 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) - -print ''; +my @chars = ( + [qw{! " % ' ( ) * + , - . /}], + ['0'..'9'], [qw{: ; < = > ?}], + ['A'..'M'], ['N'..'Z'], + ['a'..'m'], ['n'..'z'], +); +my @chars2 = (['_'], @chars); # trailing character (extended set) + +print '
'; +print qq'' for map {scalar @$_} @chars2; +print "\n"; for my $section (qw{thead tfoot}) { - print "<$section>'; -for my $c1 (@chars) { - print "'; + for my $c1 (@$c1group) { + print '
 "; - print "$_" for @chars2; + print "<$section>
↳"; + print '', quote($_) for map {@$_} @chars2; + print " \n"; } -print '
$c1"; - for my $c2 (@chars2) { - my $mnem = $c1 . $c2; - if (not defined $di->{$mnem}) { - print ''; - next; +for my $c1group (@chars) { + print '
', quote($c1); + for my $c2 (map {@$_} @chars2) { + my $mnem = $c1 . $c2; + if (not defined $di->{$mnem}) { + print ''; + next; + } + if (ref $di->{$mnem} ne 'ARRAY') { + printf '', quote($mnem); + next; + } + my ($codepoint, $name, $prop, $script, $string) = @{ $di->{$mnem} }; + + 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 = "$glyph" if $prop eq 'Zs'; + + printf "\n".'%s', + join(' ', @class), quote($desc), $glyph; } - my $chr = $di->{$mnem}; - my $glyph = chr $chr; - utf8::upgrade($glyph); # prevent latin1 output - my $info = charinfo($chr); - - my $desc = $mnem; - $desc .= " ($_)" for $info->{name} || (); - - my @class = 'X'; - push @class, $_ for $info->{category} || (); - push @class, $_ for $info->{script} || (); - - $glyph = quote($glyph); - $glyph = "$glyph" if $info->{category} eq 'Zs'; - - printf "\n".'%s', - join(' ', @class), quote($desc), $glyph; + print "\n", quote($c1), "\n"; } - print "\n$c1\n"; } print "
\n"; :> -
- +
+
control spacing modifier @@ -161,17 +110,29 @@ print "
\n"; latin hebrew arabic + korean japanese chinese - +
unicode - ascii latin1 - private + ascii proposed
+ +