unicode: mathematic (set) comparison operators
[sheet.git] / Shiar_Sheet / FormatChar.pm
index 30aab5ed68d853141c0bd1b844c813eaf34215e6..759ca85f57c1fea8bafffdde0cd4c5c2cf58b2b0 100644 (file)
@@ -14,7 +14,7 @@ our %di = map { $diinfo->{$_}->[0] => $_ } grep { ref $diinfo->{$_} }
 
 sub new {
        my ($class) = @_;
-       bless { unicode => 0, anno => 'di', style => 'di' }, $class;
+       bless { anno => ['di', 0], style => 'di' }, $class;
 }
 
 sub glyph_info {
@@ -81,6 +81,7 @@ sub cell {
                        push @class, 'ex'; # discouraged
                }
 
+               $input =~ s/^\\//;  # escaped char
                ($cell, $title, my $class, $mnem) = $self->glyphs_html($input);
 
                if ($self->{style} = 'di') {
@@ -107,17 +108,50 @@ sub cell {
                }
        }
 
+       my $anno = '';
+       if ($cell ne '') {
+               for (@{ $self->{anno} }) {
+                       if (/html$/) {
+                               require HTML::Entities;
+                               if (my $entity = $HTML::Entities::char2entity{$cell}) {
+                                       $entity = substr($entity, 1, -1) unless /^&/;
+                                       $anno = sprintf(' <small class="digraph">%s</small>', EscapeHTML($entity));
+                                       last;
+                               }
+                       }
+                       elsif ($_ eq 'xml') {
+                               $anno = sprintf(' <small class="digraph">%s</small>',
+                                       sprintf '#%d', ord($cell)
+                               );
+                               last;
+                       }
+                       elsif ($_ eq '&xml') {
+                               $anno = sprintf(' <small class="digraph">%s</small>',
+                                       sprintf '&amp;#%d;', ord($cell)
+                               );
+                               last;
+                       }
+                       elsif ($_ eq 'di') {
+                               if (defined $mnem and length $mnem) {
+                                       $anno = sprintf(' <small class="digraph">%s</small>', EscapeHTML($mnem));
+                                       last;
+                               }
+                       }
+                       else {
+                               if ($_ eq 'hex' or $cell =~ /^[^a-zA-Z]$/) {
+                                       $anno = sprintf(' <small class="%s">%04X</small>', 'value', ord $cell);
+                                       last;
+                               }
+                       }
+               }
+       }
+
        return sprintf('<td%s%s%s>%s%s',
                defined $title  ? qq{ title="$title"}  : '',
                @class ? sprintf(' class="%s"', join ' ', @class) : '',
                $html || '',
-               $cell eq '' ? ('&nbsp;', '') : ($cell,
-                       $self->{anno} eq 'di' && defined $mnem && length $mnem
-                       ? sprintf(' <small class="digraph">%s</small>', EscapeHTML($mnem))
-                       : $self->{unicode} + $cell =~ /^[^a-zA-Z]$/ > 0
-                               ? sprintf(' <small class="%s">%04X</small>', 'value', ord $cell)
-                               : ''
-               ),
+               $cell eq '' ? '&nbsp;' : $cell,
+               $anno,
        );
 }
 
@@ -164,7 +198,7 @@ sub table {
        }
 
        return sprintf qq{<table class="glyphs%s">\n%s</table>\n},
-               $self->{anno} || $self->{unicode} >= 0 ? ' dilabel' : '',
+               @{ $self->{anno} } ? ' dilabel' : '',
                join '', map {"$_\n"} @rows;
 }