X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/4cccd0f03b54ed366c5de96fb40cea688c6482e9..1d743a55b5335cd7aaa5f9a8f2c782e7a46564b7:/digraphs.plp diff --git a/digraphs.plp b/digraphs.plp index b62b577..8b09697 100644 --- a/digraphs.plp +++ b/digraphs.plp @@ -1,82 +1,79 @@ -<: -use utf8; -use strict; -use warnings; -use open IO => ':utf8'; - -our $VERSION = '1.0'; +<(common.inc.plp)><: -$header{content_type} = 'text/html; charset=utf-8'; +Html({ + title => 'digraph cheat sheet', + version => 'v1.0', + description => [ + "Complete table of digraph characters from RFC-1345.", + ], + keywords => [qw' + digraph compose character char glyph table unicode vim + '], + stylesheet => [qw'light'], +}); -:> - +:> +

RFC-1345 Digraphs

- -digraph cheat sheet - - - +

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

- -

RFC-1345 Digraphs

+

Unofficial proposals +are available as ex commands.

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