latin: classify old roman w as invalid
[sheet.git] / latin.plp
index 4326f550f8cb6d26f2224bb7e71000579f1acbe9..d51b91bf0e595cd602d3394c6ca0b900cd384c9d 100644 (file)
--- a/latin.plp
+++ b/latin.plp
@@ -27,7 +27,6 @@ Html({
                line-height: 1ex;
        }
        #old-roman-cursive {
-               stroke-width: 3;
                stroke-linecap: round;
                stroke-linejoin: round;
        }
@@ -67,7 +66,21 @@ else {
                my ($title, $cells) = @{$row};
                printf '<tr id="%s">', (lc $title) =~ s/<[^>]+>//gr =~ s/\s+/-/gr;
                say '<th>', $title;
-               say "\t", '<td>' x !/^<td/, $_ for @{$cells};
+               my $colspan = 1;
+               for (@{$cells}) {
+                       if ($_ eq '>') {
+                               $colspan++;
+                               next;
+                       }
+                       print "\t<td";
+                       if ($colspan > 1) {
+                               print " colspan=$colspan";
+                               $colspan = 1;
+                       }
+                       print ' class=', $_ ? 'ex' : 'u-invalid' if s/^-//;
+                       print '>';
+                       say;
+               }
        }
        say "</table>\n";
 }