X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/81aefba6ac586eccbe18b4e90efc175e34fff5ad..d22e7febda8720bc38069f7061adb43b98143c48:/latin.plp diff --git a/latin.plp b/latin.plp index a166ff8..199a49c 100644 --- a/latin.plp +++ b/latin.plp @@ -2,44 +2,120 @@ Html({ title => 'latin alphabet cheat sheet', - version => '1.1', + version => '1.5', description => [ ], keywords => [qw' latin roman alphabet script letter unicode font glyph abc - writing comparison character sample test language spelling - cursive fraktur blind deaf + code encoding spelling symbol writing comparison character + 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'], }); :>

Latin alphabet

-

Also see other alphabets -and common chars.

+

Variant encodings of the common ASCII (latin, roman, +or 'mercan) letters A–Z. +Also see related alphabets +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 '\n"; + + my %VOWELCOLS = (map { ($_ => 1) } 0, 4, 8, 14, 20, 24); + say ''; + say ''; + + for my $row (pairs @table) { + my ($id, $info) = @{$row}; + + printf '', $id; + my $th = 'th'; + $th .= sprintf ' title="%s"', $_ for $info->{title} || (); + say "<$th>", $info->{name} // ucfirst $id; + + my $colspan = 1; + 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; + } + printf ' class="%s"', "@class" if @class; + print '>'; + say; + } + } + say "
# ASCII − 64'; + print '', $_ for 1 .. 26; + say '
\n"; } -print "
\n"; +:>
+ + +