X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/4ed40cad555bb1bd5d76b5a59f5d986cb4b58754..aeb47e7600bf4e34a37f3ebfe0e6edc534d92147:/digraphs.plp diff --git a/digraphs.plp b/digraphs.plp index 9a20f58..4c45044 100644 --- a/digraphs.plp +++ b/digraphs.plp @@ -1,81 +1,171 @@ +<(common.inc.plp)><: +use 5.010; # state + +Html({ + title => 'digraph cheat sheet', + version => 'v1.1', + description => [ + "Complete table of digraph characters from RFC-1345.", + ], + keywords => [qw' + digraph mnemonic compose composition pair + character char glyph table unicode vim + '], + stylesheet => [qw'light'], + data => [qw( digraphs.inc.pl )], +}); + +:> +

RFC-1345 Digraphs

+ +

Character mnemonics +following composition key ⎄: +i^k in Vim, +^u^\ in Emacs, +^a^v in Screen. +Also see common Unicode.

+ +

Unofficial proposals +are available as ex commands.

+ <: -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}; +print "\n"; +for my $section (qw{thead tfoot}) { + print "<$section>'; + for my $c1 (@$c1group) { + print '
↳"; + print '', EscapeHTML($_) for map {@$_} @{$colchars}; + print " \n"; } +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, $prop, $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 = $string || chr $codepoint; + utf8::upgrade($glyph); # prevent latin1 output + my $desc = $mnem . ($name && " ($name)"); + my @class = ('X', grep {$_} $prop, $script); - my @class = 'any'; + $glyph = EscapeHTML($glyph); + $glyph = "$glyph" if $script =~ /\bZs\b/; - printf '%s', - join(' ', @class), quote($mnem), quote(chr $chr); + printf "\n".'%s', + join(' ', @class), EscapeHTML($desc), $glyph; + } + print "\n", EscapeHTML($c1), "\n"; } - print "\n"; } print "
\n"; +print '
' if exists $get{split}; +} + +if (exists $get{xorg}) { +:> +
+ +
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 +
+ + +
unicode + latin1 + ascii + vim extension + proposal + not in vim +
+
+<: }