X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/28151a28db84c6d6018232f36c0003ecd562b3f0..c9e24e105a536e99e4c2221e9e3dffe15eb78132:/digraphs.plp diff --git a/digraphs.plp b/digraphs.plp index 5192c25..237cc7b 100644 --- a/digraphs.plp +++ b/digraphs.plp @@ -3,12 +3,15 @@ :> - + digraph cheat sheet + + <:= stylesheet(qw'light') :> + @@ -23,14 +26,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{: ; < = > ?}], @@ -44,13 +39,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}) { @@ -58,7 +53,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} }; @@ -68,13 +63,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";