X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/01d61f72fed7ac041786ea69d1b080f45a4c49d1..a0f942a8498d6f1574c57c5943a7d21eb9634898:/latin.plp diff --git a/latin.plp b/latin.plp index 03820d2..c9c59ad 100644 --- a/latin.plp +++ b/latin.plp @@ -21,28 +21,127 @@ 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 } + #ita2 td, + #tap-code td, + #tap-simplified td { + white-space: normal; + word-spacing: 5em; /* force line break between words */ + } + #tap-code td, + #tap-simplified td { + line-height: 1ex; + } + #ita2 td { + font-size: 50%; + } + #pigpen { + stroke-linecap: square; + } + #nyctographs, + #old-roman-cursive { + stroke-linecap: round; + stroke-linejoin: round; + } + td { + white-space: nowrap; + } + + .sample { + vertical-align: middle; + } + #old-roman-cursive .sample span { + margin-right: -10px; + } + #tap-code .sample, + #tap-simplified .sample { + font-size: 80%; + } + #ita2 .sample, + #tap-code .sample, + #tap-simplified .sample { + word-spacing: 0; + } + #ita2 .sample span, + #tap-code .sample span, + #tap-simplified .sample span { + margin-right: 1ex; + white-space: nowrap; + } + #morse .sample span { + margin-right: 0.5ex; + } + #pigpen .sample svg { + margin-right: 0.1em; + } + #nyctographs .sample svg { + background: rgba(0,0,0, .1); + padding: 0.1em; + margin-right: 0.2em; + } + + svg path:not([fill]) { + stroke: currentColor; + fill: none; + } + svg circle:not([fill]) { + fill: currentColor; + } + + td { + vertical-align: top; + } + td > svg { + vertical-align: middle; + }

Latin alphabet

-

Variant encodings of the common ASCII (latin, roman, +

Variant encodings of the common ASCII (latin, roman, or 'mercan) letters A–Z. Also see related alphabets -and common chars.

+and font comparison.

-
+
<: +use List::Util qw( pairs ); + 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 ''; + for my $row (pairs @table) { + my ($title, $cells) = @{$row}; + printf '', (lc $title) =~ s/<[^>]+>//gr =~ s/\s+/-/gr; + say '
', $title; + my $colspan = 1; + my $col = 0; + for (@{$cells}) { + $col++; + if ($_ eq '>') { + $colspan++; + next; + } + print "\t 1) { + print " colspan=$colspan"; + $colspan = 1; + } + print ' hidden' if $col > 26; # sample only + print ' class=', $_ ? 'ex' : 'u-invalid' if s/^-//; + print '>'; + say; + } + } + say "
\n"; } -print "
\n"; +:>
+ + +