X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/e84402a9c62d8b57f9fd78a81d639692108a46e3..29b407ddf91b653e6e8380f73e221628a392376f:/digraphs.plp diff --git a/digraphs.plp b/digraphs.plp index 9f0b370..44f93e6 100644 --- a/digraphs.plp +++ b/digraphs.plp @@ -1,83 +1,179 @@ +<(common.inc.plp)><: + +my $mode = ($Request // '') eq 'xorg' || exists $get{xorg}; +my $modename = $mode ? 'X.Org' : 'RFC-1345'; + +Html({ + title => 'digraph cheat sheet', + version => '1.2', + description => [ + "Complete table of digraph characters from $modename.", + ], + keywords => [qw' + digraph mnemonic compose composition pair + character char glyph table unicode vim xorg x11 x + '], + stylesheet => [qw'light'], + data => [qw( digraphs.inc.pl )], +}); + +:> +

<:= $modename :> Digraphs

+ +

Character mnemonics following compose key ⎄<: +say join("\n", + $mode ? ( + ' in the X Window System (Shift+AltGr by default).', + 'Differences from RFC-1345 are indicated.', + ) : (':', + 'i^k in Vim,', + '^u^\ in Emacs,', + '^a^v in Screen.', + 'Similar but different from X.Org.', + ), + 'Also see common Unicode.

', +); +say '

Unofficial proposals', + ' are available as ex commands.' if not $mode; +:> + <: -use utf8; -use strict; -use warnings; -use open IO => ':utf8'; - -our $VERSION = '1.0'; - -$header{content_type} = 'text/html; charset=utf-8'; - -:> - - - -digraph cheat sheet - - - - -

RFC-1345 Digraphs

-<: -my $di = do 'digraphs.inc.pl'; - -sub quote { - local $_ = shift; - s/"/"/g; - s//>/g; - return $_; +for my $colchars (@columns) { +print ''; +print qq'' for map {scalar @$_} @{$colchars}; +say ''; +for my $section (qw{thead tfoot}) { + print "<$section>'; + for my $c1 (@$c1group) { + print '
↳"; + print '', EscapeHTML($_) for map {@$_} @{$colchars}; + say ' '; } +for my $c1group (@chars) { + print '
', EscapeHTML($c1); + for my $c2 (map {@$_} @$colchars) { + my $mnem = $c1 . $c2; + if (not defined $di->{$mnem}) { + print ''; + next; + } + if (ref $di->{$mnem} ne 'ARRAY') { + printf '', EscapeHTML($mnem); + next; + } + my ($codepoint, $name, $support, $script, $string) = @{ $di->{$mnem} }; -my @chars = ((map {chr} ord '!' .. ord 'Z'), 'a'..'z'); -splice @chars, $_, 1, () for 2, 3-1, 5-2, 31-3; # remove character exceptions # $ & @ -print ''; -print ''; -for my $c1 (@chars) { - print "
 '; -print "$_" for @chars, '_'; -print '
$c1"; - for my $c2 (@chars, '_') { - my $mnem = $c1 . $c2; - if (not defined $di->{$mnem}) { - print ''; - next; - } - my $chr = $di->{$mnem}; - my $glyph = chr $chr; - utf8::upgrade($glyph); # prevent latin1 output + my $glyph = $string || chr $codepoint; + utf8::upgrade($glyph); # prevent latin1 output + my $desc = $mnem . ($name && " ($name)"); + my @class = ('X', grep {$_} $support && "u-$support", $script); - my @class = 'any'; + $glyph = EscapeHTML($glyph); + $glyph = "$glyph" if $script =~ /\bZs\b/; - printf '%s', - join(' ', @class), quote($mnem), quote($glyph); + printf "\n".'%s', + join(' ', @class), EscapeHTML($desc), $glyph; + } + say "\n", EscapeHTML($c1); } - print "\n"; } -print "
\n"; +say '
'; +print '
' if exists $get{split}; +} + +if ($mode) { +:> +
+ +
matching RFC-1345 + matching proposal + unique to Xorg + conflict + duplicate +
+
+<: } else { :> +
+ +
control + space + combining + spacing modifier + quote + punctuation + symbol + math + currency + numeric + greek + cyrillic + latin + hebrew + arabic + korean + japanese + chinese +
+ + +
full support + vim extension + vim v8.0 + proposal + not in vim +
+
+<: }