From: Mischa POSLAWSKY Date: Mon, 10 Apr 2017 22:19:39 +0000 (+0200) Subject: latin: highlight vowel columns X-Git-Tag: v1.10~171 X-Git-Url: http://git.shiar.nl/sheet.git/commitdiff_plain/f4202b592c541333b3cd4aca471025dea8cb18fd latin: highlight vowel columns --- diff --git a/latin.plp b/latin.plp index 7f94ebf..897fe0a 100644 --- a/latin.plp +++ b/latin.plp @@ -120,6 +120,7 @@ if ($! or $@) { Alert("Table data not found", $@ || $!); } else { + my %VOWELCOLS = (map { ($_ => 1) } 0, 4, 8, 14, 20, 24); say ''; for my $row (pairs @table) { my ($title, $cells) = @{$row}; @@ -133,13 +134,23 @@ else { $colspan++; next; } + my @class; + push @class ,'l0' if $VOWELCOLS{$col - $colspan}; + push @class, $_ ? 'ex' : 'u-invalid' if s/^-//; + print "\t 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; }