X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/9641797ec955d7b136a2287e012d093fa2bc1cb0..cf5d941b1a839d049b4f322caebaff605cdd4efc:/latin.plp diff --git a/latin.plp b/latin.plp index 32e0b02..1dcd8c7 100644 --- a/latin.plp +++ b/latin.plp @@ -11,7 +11,7 @@ Html({ secret cursive fraktur blind braille morse deaf asl hand barcode bar color semaphore flag '], - stylesheet => [qw'light dark red'], + stylesheet => [qw( light dark red mono )], data => ['writing-latn.inc.pl'], }); @@ -22,34 +22,100 @@ Html({ src: url("/suetterlin.ttf"); } #sütterlin td { font-family: Suetterlin } + #ita2 td, #tap-code td, - #tap-simplified td { + #short-tap td { + white-space: normal; + word-spacing: 5em; /* force line break between words */ + } + #tap-code td, + #short-tap td { line-height: 1ex; } + #ita2 td { + font-size: 50%; + } + #cards td { + font-family: Symbola, "DejaVu Sans", serif, sans; + } + #pigpen { + stroke-linecap: square; + } + #nyctographs, #old-roman-cursive { stroke-linecap: round; stroke-linejoin: round; } + td { + white-space: nowrap; + } + th { + width: auto !important; + } + + .sample { + vertical-align: middle; + text-align: left; + padding: 1px 0.3em; + } + #old-roman-cursive .sample span { + margin-right: -10px; + } + #tap-code .sample, + #short-tap .sample { + font-size: 80%; + } + #ita2 .sample, + #tap-code .sample, + #short-tap .sample { + word-spacing: 0; + } + #ita2 .sample span, + #tap-code .sample span, + #short-tap .sample span { + margin-right: 1ex; + white-space: nowrap; + } + #sutton-asl .sample span, + #maritime-flags .sample span, + #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; + } + #unistrokes svg path { + stroke-linecap: round; + stroke-linejoin: round; + } svg path:not([fill]) { stroke: currentColor; fill: none; } + svg circle:not([fill]) { + fill: currentColor; + } td { vertical-align: top; } - td > svg { + 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.

@@ -61,23 +127,42 @@ if ($! or $@) { Alert("Table data not found", $@ || $!); } else { + my %VOWELCOLS = (map { ($_ => 1) } 0, 4, 8, 14, 20, 24); say ''; + say ''; + for my $row (pairs @table) { - my ($title, $cells) = @{$row}; + my ($title, $info) = @{$row}; printf '', (lc $title) =~ s/<[^>]+>//gr =~ s/\s+/-/gr; say '
# ASCII − 64'; + print '', $_ for 1 .. 26; + say '
', $title; my $colspan = 1; - for (@{$cells}) { + my $col = 0; + for (@{ $info->{list} }) { + $col++; if ($_ eq '>') { $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 '>' unless s/^'; say; } } @@ -86,3 +171,6 @@ else { :> + + +