X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/14e719f07fcb43c9a0ada3f9f9f018ff5a20a1cf..0083d6fee99e70519ff4770a4f76f02b6937537d:/digraphs.plp diff --git a/digraphs.plp b/digraphs.plp index 487b59f..8b09697 100644 --- a/digraphs.plp +++ b/digraphs.plp @@ -1,31 +1,18 @@ -<: -use utf8; -use strict; -use warnings; -no warnings 'qw'; # to quote or not to quote, that is the question -use open IO => ':utf8'; - -our $VERSION = 'v1.0'; - -$header{content_type} = 'text/html; charset=utf-8'; - -:> - +<(common.inc.plp)><: + +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'], +}); - - -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. @@ -37,14 +24,6 @@ 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{: ; < = > ?}], @@ -58,13 +37,13 @@ print qq'' for map {scalar @$_} @chars2; print "\n"; for my $section (qw{thead tfoot}) { print "<$section>↳"; - print '', quote($_) for map {@$_} @chars2; + print '', EscapeHTML($_) for map {@$_} @chars2; print " \n"; } for my $c1group (@chars) { print ''; for my $c1 (@$c1group) { - print '', quote($c1); + print '', EscapeHTML($c1); for my $c2 (map {@$_} @chars2) { my $mnem = $c1 . $c2; if (not defined $di->{$mnem}) { @@ -72,7 +51,7 @@ for my $c1group (@chars) { next; } if (ref $di->{$mnem} ne 'ARRAY') { - printf '', quote($mnem); + printf '', EscapeHTML($mnem); next; } my ($codepoint, $name, $prop, $script, $string) = @{ $di->{$mnem} }; @@ -82,13 +61,13 @@ for my $c1group (@chars) { 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", quote($c1), "\n"; + print "\n", EscapeHTML($c1), "\n"; } } print "\n"; @@ -123,12 +102,3 @@ print "\n"; - - -