X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/0dd2b5ce328daf14b51f94c951acef2ca40a5fd4..3d996ccf6608b325f5c92e988bd576fd1ee6a165:/writing-latn.inc.pl diff --git a/writing-latn.inc.pl b/writing-latn.inc.pl index 3db23c4..eb037de 100644 --- a/writing-latn.inc.pl +++ b/writing-latn.inc.pl @@ -1,13 +1,13 @@ use utf8; sub disptap { - map { + return map { m/\A(-?)(\d)(\d)/; - $1 . '\\' # escape dot - . ('.̇' x ($2 < $3 ? $2 : $3)) # min($2,$3) without losing captures - . ('.' x ($3 - $2)) - . (' ̇' x ($2 - $3)) - } @_ + sprintf('%s ', + #TODO: prepend $1 + join "
\n", '•' x $2, '•' x $3, + ); + } @_; } my %C = qw(red #EC1C24 blue #3953A3 yellow #F9EC31 black #231F20); @@ -33,7 +33,7 @@ tap => [disptap(qw{ 11 12 13 14 15 21 22 23 24 -24 25 31 32 33 34 35 41 42 43 44 45 51 52 53 54 55 })], -tap => [disptap(qw{ +taps => [disptap(qw{ 11 12 13 14 21 22 23 24 31 -31 -13 32 33 34 41 42 -13 43 44 15 51 52 53 -25 -31 54 })],