charset: omit unassigned half of ascii table
[sheet.git] / latin.plp
index 66ef3ec4c365dfbdae5b46677c635239618ba86c..687e082e08b5548f8d9a752c63d4f717e72918eb 100644 (file)
--- a/latin.plp
+++ b/latin.plp
@@ -11,82 +11,22 @@ Html({
                secret cursive fraktur blind braille morse deaf asl hand
                barcode bar color semaphore flag
        '],
-       stylesheet => [qw'light dark red'],
+       stylesheet => [qw( light dark red mono )],
        data => ['writing-latn.inc.pl'],
 });
 
 :>
 <style>
-       @font-face {
-               font-family: Suetterlin; /* R. G. Arens */
-               src: url("/suetterlin.ttf");
-       }
-       #sütterlin td { font-family: Suetterlin }
-       #ita2 td,
-       #tap-code td,
-       #tap-simplified td {
-               white-space: normal;
-               word-spacing: 5em; /* force line break between words */
-       }
-       #tap-code td,
-       #tap-simplified td {
-               line-height: 1ex;
-       }
-       #ita2 td {
-               font-size: 50%;
-       }
-       #cards td {
-               font-family: Symbola, "DejaVu Sans", serif, sans;
-       }
-       #pigpen {
-               stroke-linecap: square;
-       }
-       #nyctographs,
-       #old-roman-cursive {
-               stroke-linecap: round;
-               stroke-linejoin: round;
-       }
        td {
                white-space: nowrap;
        }
+       th {
+               width: auto !important;
+       }
 
-       .sample {
+       td svg {
                vertical-align: middle;
-               text-align: left;
-               padding: 1px 0.3em;
-       }
-       #old-roman-cursive .sample span {
-               margin-right: -10px;
-       }
-       #tap-code .sample,
-       #tap-simplified .sample {
-               font-size: 80%;
-       }
-       #ita2 .sample,
-       #tap-code .sample,
-       #tap-simplified .sample {
-               word-spacing: 0;
-       }
-       #ita2 .sample span,
-       #tap-code .sample span,
-       #tap-simplified .sample span {
-               margin-right: 1ex;
-               white-space: nowrap;
-       }
-       #sutton-asl .sample span,
-       #maritime-flags .sample span,
-       #morse .sample span {
-               margin-right: 0.5ex;
-       }
-       #pigpen .sample svg {
-               margin-right: 0.1em;
        }
-       #nyctographs .sample svg {
-               background: rgba(0,0,0, .1);
-               padding: 0.1em;
-               margin-right: 0.2em;
-       }
-
        svg path:not([fill]) {
                stroke: currentColor;
                fill: none;
@@ -95,11 +35,10 @@ Html({
                fill: currentColor;
        }
 
-       td {
-               vertical-align: top;
-       }
-       td > svg {
-               vertical-align: middle;
+       .sample {
+               text-align: left;
+               padding: 1px 0.3em;
+               white-space: normal;
        }
 </style>
 
@@ -120,26 +59,52 @@ if ($! or $@) {
        Alert("Table data not found", $@ || $!);
 }
 else {
+       say '<style>';
+       for my $row (pairs @table) {
+               my ($id, $info) = @{$row};
+               my $style = $info->{style} or next;
+               ref $style or $style = [$style];
+               say "\t", !/^@/ && "#$id ", $_ for @{$style};
+       }
+       say "</style>\n";
+
+       my %VOWELCOLS = (map { ($_ => 1) } 0, 4, 8, 14, 20, 24);
        say '<table class="glyphs">';
+       say '<thead><tr><th># <small>ASCII − 64</small>';
+       print '<td>', $_ for 1 .. 26;
+       say '</thead>';
+
        for my $row (pairs @table) {
-               my ($title, $cells) = @{$row};
-               printf '<tr id="%s">', (lc $title) =~ s/<[^>]+>//gr =~ s/\s+/-/gr;
-               say '<th>', $title;
+               my ($id, $info) = @{$row};
+
+               printf '<tr id="%s">', $id;
+               say '<th>', $info->{title} // ucfirst $id;
+
                my $colspan = 1;
                my $col = 0;
-               for (@{$cells}) {
+               for (@{ $info->{list} }) {
                        $col++;
                        if ($_ eq '>') {
                                $colspan++;
                                next;
                        }
+                       my @class;
+                       push @class ,'l0' if $VOWELCOLS{$col - $colspan};
+                       push @class, $_ ? 'ex' : 'u-invalid' if s/^-//;
+
                        print "\t<td";
+                       if ($col > 26) {
+                               # special character for sample generation
+                               print ' hidden';  # sample only
+                       }
+                       else {
+                               print ' title=', chr($col + ord('A') - $colspan);
+                       }
                        if ($colspan > 1) {
                                print " colspan=$colspan";
                                $colspan = 1;
                        }
-                       print ' hidden' if $col > 26;  # sample only
-                       print ' class=', $_ ? 'ex' : 'u-invalid' if s/^-//;
+                       printf ' class="%s"', "@class" if @class;
                        print '>';
                        say;
                }