X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/81aefba6ac586eccbe18b4e90efc175e34fff5ad..HEAD:/apl.plp diff --git a/apl.plp b/apl.plp index 6fdf3ca..302a55d 100644 --- a/apl.plp +++ b/apl.plp @@ -27,9 +27,7 @@ EOT use Shiar_Sheet::FormatChar; my $glyphs = Shiar_Sheet::FormatChar->new; - -my @ops = do 'apl.inc.pl'; -@ops > 1 or die "cannot open operator include: $@\n"; +my $ops = Data('apl'); :>

APL Symbols

@@ -49,9 +47,9 @@ my @ops = do 'apl.inc.pl'; <: -for my $op (@ops) { +for my $op (@{$ops}) { $op or do { - print "\n"; + say ''; next; }; @@ -60,36 +58,26 @@ for my $op (@ops) { my $codepoint = ord $chr; my $ascii = $codepoint <= 127; my $info = $glyphs->glyph_info($codepoint); - my ($class, $name, $mnem, $html, $string) = @{$info}; + my ($class, $name, $mnem, $entity, $string) = @{$info}; printf '%s', $chr, EscapeHTML($name || '?'), $class; printf '%s', @{$_} for ( [$ascii ? 'l5' : defined $altkey ? 'l4' : 'l3', $altkey], [defined $mnem ? $class =~ /\bu-di\b/ ? 'l4' : 'l3' : $ascii ? 'l5' : 'l1', EscapeHTML($mnem) // sprintf('%s%0*X', $codepoint < 256 ? (x => 2) : (u => 4), $codepoint)], - [defined $html ? 'l4' : $ascii ? 'l5' : 'l1', $html // "#$codepoint"], + [defined $entity ? 'l4' : $ascii ? 'l5' : 'l1', $entity // "#$codepoint"], ); printf( - defined $_ ? '%s' : '', - map { !!$_->[1] && qq( title="$_->[1]"), $_->[0] } - [map { EscapeHTML($_) } split /\n/, $_, 2] + '%s', + map { defined ? (!!$_->[1] && qq( title="$_->[1]"), $_->[0]) : (' class=Xi', '') } + $_ && [map { EscapeHTML($_) } split /\n/, $_, 2] ) for $monad, $dyad; - print "\n"; + say ''; } :> -
- -
- -
unicode 1.1 - 20th century - in 6.0 (2010) - recent assignments - proposed - irregular -
-
+<: +say for '
', $glyphs->legend;