latin: common styling for tap code rows
[sheet.git] / latin.plp
index 1fda12c5fb40846fa8cc49b62f11fb0c1cf93dd9..6d23534414ceef6883a09bc46508b0eb9c17ae1c 100644 (file)
--- a/latin.plp
+++ b/latin.plp
@@ -21,7 +21,11 @@ Html({
                font-family: Suetterlin; /* R. G. Arens */
                src: url("/suetterlin.ttf");
        }
-       .glyphs tr:first-child+tr+tr td { font-family: Suetterlin }
+       #sütterlin td { font-family: Suetterlin }
+       #tap-code td,
+       #tap-simplified td {
+               line-height: 1ex;
+       }
 
        svg path:not([fill]) {
                stroke: currentColor;
@@ -56,8 +60,9 @@ else {
        say '<table class="glyphs">';
        for my $row (pairs @table) {
                my ($title, $cells) = @{$row};
-               say '<tr><th>', $title;
-               print /^<td/ ? $_ : "\t<td>$_\n" for @{$cells};
+               printf '<tr id="%s">', (lc $title) =~ s/<[^>]+>//gr =~ s/\s+/-/gr;
+               say '<th>', $title;
+               say "\t", '<td>' x !/^<td/, $_ for @{$cells};
        }
        say "</table>\n";
 }