From 153ec1421ef059026fb8fbf208a46cb462d27575 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Mon, 28 Sep 2015 16:30:39 +0200 Subject: [PATCH] latin: cell styling for tap code dots (replacing small bullets) --- latin.plp | 2 +- writing-latn.inc.pl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/latin.plp b/latin.plp index ce8c111..68e6a83 100644 --- a/latin.plp +++ b/latin.plp @@ -37,7 +37,7 @@ if ($! or $@) { } else { print ''; - print ref $_ ne 'ARRAY' ? "
$_" : map {"$_"} @$_ for @table; + print ref $_ ne 'ARRAY' ? "
$_" : map {/^$_"} @$_ for @table; print "
\n\n"; } diff --git a/writing-latn.inc.pl b/writing-latn.inc.pl index 85c292e..c344eb6 100644 --- a/writing-latn.inc.pl +++ b/writing-latn.inc.pl @@ -3,9 +3,9 @@ use utf8; sub disptap { return map { m/\A(-?)(\d)(\d)/; - sprintf('%s ', + sprintf('%s', #TODO: prepend $1 - join "
\n", '•' x $2, '•' x $3, + join "
\n", '·' x $2, '·' x $3, ); } @_; } -- 2.30.0