X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/2d8ef982c433355f3716b2f3e0de9f814e3b3313..v1.3-61-g0c4ca53d08:/Shiar_Sheet/FormatChar.pm diff --git a/Shiar_Sheet/FormatChar.pm b/Shiar_Sheet/FormatChar.pm index c123506..185e0af 100644 --- a/Shiar_Sheet/FormatChar.pm +++ b/Shiar_Sheet/FormatChar.pm @@ -86,13 +86,13 @@ sub cell { if ($self->{digraph}) { if (defined $mnem) { push @class, $class =~ /\bXz\b/ ? ('l2', 'u-prop') # unofficial - : ('l4', 'u-di'); # standard digraph + : ('l3', 'u-di'); # standard digraph } } else { my $codepoint = ord(substr $input, 0, 1); if ($codepoint <= 0xFF) { - push @class, 'l4', 'u-lat1'; # latin1 + push @class, 'l3', 'u-lat1'; # latin1 } elsif ($codepoint <= 0xD7FF) { push @class, 'l2', 'u-bmp'; # bmp @@ -100,10 +100,10 @@ sub cell { } if ($input =~ /[ -~]/) { - push @class, 'l5', 'u-ascii'; # ascii + push @class, 'l4', 'u-ascii'; # ascii } else { - push @class, 'l0'; # basic unicode + push @class, 'l1'; # basic unicode } }