X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/5629239957347a7ee23955ca39ba1f021db6d2bc..9588d24fc5f365734cdc8599134432d59c33f0c2:/latin.plp diff --git a/latin.plp b/latin.plp index 6f8e3e0..529b334 100644 --- a/latin.plp +++ b/latin.plp @@ -27,6 +27,13 @@ Html({ stroke: currentColor; fill: none; } + + td { + vertical-align: top; + } + td > svg { + vertical-align: middle; + }

Latin alphabet

@@ -36,18 +43,19 @@ or 'mercan) letters A–Z. Also see related alphabets and common chars.

-
+
<: my @table = do 'writing-latn.inc.pl'; if ($! or $@) { - printf "

Table data not found: %s.

\n", $@ || $!; + Alert("Table data not found", $@ || $!); } else { - print ''; - print ref $_ ne 'ARRAY' ? "
$_" : map {/^$_"} @$_ for @table; - print "
\n\n"; + say ''; + print ref $_ ne 'ARRAY' ? "
$_\n" : map {/^$_\n"} @$_ + for @table; + say "
\n"; } -print "
\n"; +:>