X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/b388f9311a7891b227aa3b1f52b1d439418af782..2a99bcdadec88d7483903e2c8420ad3e78fcb805:/latin.plp diff --git a/latin.plp b/latin.plp index 1fda12c..687e082 100644 --- a/latin.plp +++ b/latin.plp @@ -11,37 +11,43 @@ 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.

@@ -53,14 +59,61 @@ if ($! or $@) { Alert("Table data not found", $@ || $!); } else { + say '\n"; + + my %VOWELCOLS = (map { ($_ => 1) } 0, 4, 8, 14, 20, 24); say ''; + say ''; + for my $row (pairs @table) { - my ($title, $cells) = @{$row}; - say '', $id; + say '
# ASCII − 64'; + print '', $_ for 1 .. 26; + say '
', $title; - print /^$_\n" for @{$cells}; + my ($id, $info) = @{$row}; + + printf '
', $info->{title} // 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 "
\n"; } :>
+ + +