X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/378d119f5791fea807f36749ce9ecb5a5c60952e..8ed454fdd94aae38d04fcd96cab15ef3b86b9cc5:/Shiar_Sheet/FormatChar.pm diff --git a/Shiar_Sheet/FormatChar.pm b/Shiar_Sheet/FormatChar.pm index a501b94..ba38035 100644 --- a/Shiar_Sheet/FormatChar.pm +++ b/Shiar_Sheet/FormatChar.pm @@ -6,7 +6,7 @@ use warnings; use Data::Dump 'pp'; use PLP::Functions 'EscapeHTML'; -our $VERSION = '1.00'; +our $VERSION = '1.01'; our $diinfo = do 'digraphs.inc.pl'; our %di = map { $diinfo->{$_}->[0] => $_ } grep { ref $diinfo->{$_} } @@ -14,7 +14,7 @@ our %di = map { $diinfo->{$_}->[0] => $_ } grep { ref $diinfo->{$_} } sub new { my ($class) = @_; - bless {}, $class; + bless { digraph => 1, unicode => 0 }, $class; } sub glyph_info { @@ -38,7 +38,7 @@ sub glyph_html { my $title = sprintf 'U+%04X%s', $codepoint, $name && " ($name)"; my @class = ('X', grep {$_} $prop, $script); - $cell = "$cell" if $prop eq 'Zs'; + $cell = "$cell" if $prop and $prop eq 'Zs'; $cell = ' ' if $cell eq ''; return ($cell, EscapeHTML($title), join(' ', @class), $mnem); @@ -101,9 +101,9 @@ sub cell { @class ? sprintf(' class="%s"', join ' ', @class) : '', $html || '', $cell eq '' ? ' ' : $cell, - defined $mnem && length $mnem + $self->{digraph} && defined $mnem && length $mnem ? sprintf(' %s', EscapeHTML($mnem)) - : $cell =~ /^[^a-zA-Z]$/ + : $self->{unicode} + $cell =~ /^[^a-zA-Z]$/ > 0 ? sprintf(' %04X', 'value', ord $cell) : '', ); @@ -151,9 +151,21 @@ sub table { $colspan = 1; } - return sprintf qq{\n%s
\n}, + return sprintf qq{\n%s
\n}, + $self->{digraph} || $self->{unicode} >= 0 ? ' dilabel' : '', join '', map {"$_\n"} @rows; } +sub print { + my $self = shift; + while (@_) { + printf '

%s

'."\n\n", shift; + while (ref $_[0] and $_ = shift) { + print $self->table($_); + } + print '
'; + } +} + 1;