X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/6128725dadf468083e2e201b4453a365da81ba8b..a605211aaba5d956789c1d30c09a55494858d086:/Shiar_Sheet/FormatChar.pm?ds=sidebyside diff --git a/Shiar_Sheet/FormatChar.pm b/Shiar_Sheet/FormatChar.pm index 661bb75..6b5fb6c 100644 --- a/Shiar_Sheet/FormatChar.pm +++ b/Shiar_Sheet/FormatChar.pm @@ -1,5 +1,6 @@ package Shiar_Sheet::FormatChar; +use 5.010; use strict; use warnings; @@ -70,7 +71,7 @@ sub cell { push @class, 'u-invalid'; $cell = ''; } - else { + else {{ push @class, 'X'; if ($input =~ s/^-//) { @@ -80,7 +81,31 @@ sub cell { $input =~ s/^\\//; # escaped char ($cell, $title, my $class, $mnem, $entity) = $self->glyphs_html($input); - if ($self->{style} = 'di') { + if ($self->{style} eq 'univer') { + state $agemap = do 'unicode-age.inc.pl' or die $!; + my $version = $agemap->{ord $input}; + if (!$version) { + push @class, 'l1'; # no known unicode assignment + } + elsif ($version < 20) { + push @class, 'l5'; # first release 1993 + } + elsif ($version < 31) { + push @class, 'l4'; # 20th century + } + elsif ($version < 50) { + push @class, 'l4'; # over 10 years ago + } + elsif ($version < 61) { + push @class, 'l3'; # before 2012 + } + else { + push @class, 'l2'; # more recent + } + next; + } + + if ($self->{style} eq 'di') { if ($class =~ /\bu-di\b/) { push @class, ('l3', 'u-di'); # standard digraph } @@ -109,7 +134,7 @@ sub cell { else { push @class, 'l1'; # basic unicode } - } + }} my $anno = ''; if ($cell ne '') { @@ -182,7 +207,8 @@ sub table { if ($cell =~ s/^>//) { # header cell text follows $cell =~ s/_/ /g; # underscores may be used instead of whitespace (for qw//ability) - $rows[-1] .= ''.($cell || ' '); + my $class = $cell =~ s/^-// && ' class="ex"'; + $rows[-1] .= "".($cell || ' '); } next; }