sc: refer to ventral sacs overlord by its common name
[sheet.git] / digraphs.plp
index 05d9241f41cdef1c86dc6671d807c1cd9e170524..65d2a3bc99ec1673f7f0cdd1b2f352310e2fb023 100644 (file)
@@ -9,7 +9,7 @@ warn "error in $include: ", @{$@} if ref $@;
 
 Html({
        title => "$mode digraph cheat sheet",
-       version => '1.3',
+       version => '1.5',
        description => $di->{description} // [
                "Complete table of digraph characters from",
                ($di->{title} // $mode) . ".",
@@ -18,7 +18,6 @@ Html({
                digraph mnemonic compose composition pair
                character char glyph table unicode vim
        '],
-       stylesheet => [qw'light'],
        data => ["data/$include.json"],
 });
 
@@ -79,7 +78,7 @@ for my $c1group (@chars) {
                        my ($codepoint, $name, $support, $script, $string) =
                                @{ $di->{key}->{$mnem} };
 
-                       my $glyph = $string || chr $codepoint;
+                       my $glyph = $string || !!$codepoint && chr $codepoint;
                        utf8::upgrade($glyph);  # prevent latin1 output
                        my $desc = $mnem . ($name && " ($name)");
                        my @class = ('X', grep {$_} $script);