X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/29a87b835d71d96bef2a123b68b1bf5fa3ce1608..4481ab42a10ea48159274387ca93c17840e8c850:/latin.plp diff --git a/latin.plp b/latin.plp index 12482e1..8ad53c0 100644 --- a/latin.plp +++ b/latin.plp @@ -31,23 +31,14 @@ and common chars.

<: -use Shiar_Sheet::FormatChar; -my $glyphs = Shiar_Sheet::FormatChar->new; -unless (exists $get{v}) { - $glyphs->{unicode}--; - $glyphs->{anno} = []; - $glyphs->{style} = 0; -} - my @table = do 'writing-latn.inc.pl'; if ($! or $@) { printf "

Table data not found: %s.

\n", $@ || $!; } else { - print $glyphs->table([map { - ref $_ ne 'ARRAY' ? ".>$_" - : exists $get{uc} ? map {uc} @$_ : @$_ - } @table]); + print ''; + print ref $_ ne 'ARRAY' ? "
$_" : map {"$_"} @$_ for @table; + print "
\n\n"; } print "
\n";