X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/c7399071b5121ddded1209d9978a6f044f4e5ecc..HEAD:/latin.plp diff --git a/latin.plp b/latin.plp index a801e68..578d858 100644 --- a/latin.plp +++ b/latin.plp @@ -2,7 +2,7 @@ Html({ title => 'latin alphabet cheat sheet', - version => '1.3', + version => '1.7', description => [ ], keywords => [qw' @@ -11,128 +11,112 @@ 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'], }); :>

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 $@) { - Alert("Table data not found", $@ || $!); +my $table = Data('writing-latn'); +{ + say '
'; + say '\n"; } -else { - say ''; - for my $row (pairs @table) { - my ($title, $cells) = @{$row}; - printf '', (lc $title) =~ s/<[^>]+>//gr =~ s/\s+/-/gr; - say '', $id; + my $th = 'th'; + $th .= sprintf ' title="%s"', $_ for $info->{title} || (); + say "<$th>", $info->{name} // ucfirst $id; + 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 ' class=', $_ ? 'ex' : 'u-invalid' if s/^-//; + printf ' class="%s"', "@class" if @class; print '>'; say; } } - say "
', $title; + +my %VOWELCOLS = (map { ($_ => 1) } 0, 4, 8, 14, 20, 24); +say ''; +say ''; +printtr('order'); +say ''; +printtr('default'); +say "
"; + +sub printtr { + for my $id (@_) { + my $info = $table->{$id}; + + if (ref $info eq 'ARRAY') { + printtr(@{$info}); + next; + } + + printf '
\n"; } -:>
- - + -