X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/95a62b8397c02f6103132a3c248df2c50e6c8829..HEAD:/digraphs.plp diff --git a/digraphs.plp b/digraphs.plp index 93dfd75..9f96c50 100644 --- a/digraphs.plp +++ b/digraphs.plp @@ -1,155 +1,111 @@ -<: -use utf8; -use strict; -use warnings; -use open IO => ':utf8'; - -use Unicode::UCD qw(charinfo); - -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 $_; -} - -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 ''; +for my $colchars (@columns) { +print '
'; +print qq'' for map {scalar @$_} @{$colchars}; +say ''; for my $section (qw{thead tfoot}) { - print "<$section>'; -for my $c1 (@chars) { - print "'; + for my $c1 (@$c1group) { + print '
 "; - print "$_" for @chars2; + print "<$section>
↳"; + print '', EscapeHTML($_) for map {@$_} @{$colchars}; + say ' '; } -print '
$c1"; - for my $c2 (@chars2) { - my $mnem = $c1 . $c2; - if (not defined $di->{$mnem}) { - print ''; - next; +for my $c1group (@chars) { + print '
', EscapeHTML($c1); + for my $c2 (map {@$_} @$colchars) { + my $mnem = $c1 . $c2; + if (not defined $di->{key}->{$mnem}) { + print ''; + next; + } + if (ref $di->{key}->{$mnem} ne 'ARRAY') { + printf '', EscapeHTML($mnem); + next; + } + my ($codepoint, $name, $support, $script, $string) = + @{ $di->{key}->{$mnem} }; + + my $glyph = $string || !!$codepoint && chr $codepoint; + utf8::upgrade($glyph); # prevent latin1 output + my $desc = $mnem . ($name && " ($name)"); + my @class = ('X', grep {$_} $script); + push @class, $cmp ? $support : + $di->{flagclass}->{$support} // "u-$support" if $support; + + $glyph = EscapeHTML($glyph); + $glyph = "$glyph" if $script =~ /\bZs\b/; + + printf "\n".'%s', + join(' ', @class), EscapeHTML($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; + say "\n", EscapeHTML($c1); } - print "\n$c1\n"; } -print "
\n"; +say ''; +print '
' if exists $get{split}; +} + :> -
- +
<: unless ($cmp) { :> +
control - spacing - modifier - spacing modifier + space + combining + spacing modifier quote punctuation symbol @@ -161,17 +117,15 @@ print "
\n"; latin hebrew arabic + korean japanese chinese - - -
unicode - ascii - latin1 - private - proposed +<: } :> + <: + printf qq(\n\t
%s), $cmp ? $_ : $di->{flagclass}{$_} // "u-$_", $di->{flag}->{$_} + for sort keys %{ $di->{flag} }; +:>
-