X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/bf58fc823d4d25c75c028a7ff225513721c4d824..29a87b835d71d96bef2a123b68b1bf5fa3ce1608:/latin.plp diff --git a/latin.plp b/latin.plp index c930dce..12482e1 100644 --- a/latin.plp +++ b/latin.plp @@ -20,7 +20,7 @@ Html({ font-family: Suetterlin; /* R. G. Arens */ src: url("/suetterlin.ttf"); } - .glyphs tr:first-child+tr td { font-family: Suetterlin } + .glyphs tr:first-child+tr+tr td { font-family: Suetterlin }

Latin alphabet

@@ -39,29 +39,13 @@ unless (exists $get{v}) { $glyphs->{style} = 0; } -my %scriptname = ( - latn => 'Latin', - latnuc => 'Uppercase', - latnlc => 'Lowercase', - latfsuet => 'Sütterlin', - asl => 'ASL', # American manual alphabet - brai => 'Braille', - morse => 'Morse', - tap => 'Tap code', - taps => 'Tap simplified', - ics => 'Maritime flags', # International Code of Signals - sem => 'Flag semaphore', - code39 => 'Code 39', # ISO/IEC 16388 - rm4scc => 'RM4SCC', -); - my @table = do 'writing-latn.inc.pl'; if ($! or $@) { printf "

Table data not found: %s.

\n", $@ || $!; } else { print $glyphs->table([map { - ref $_ ne 'ARRAY' ? ".>$scriptname{$_}" + ref $_ ne 'ARRAY' ? ".>$_" : exists $get{uc} ? map {uc} @$_ : @$_ } @table]); }