From 39cc5f2acc8588b05b8b4bc62b8c456e7c5c31f6 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Mon, 10 Apr 2017 19:51:57 +0200 Subject: [PATCH] latin: interleave playing cards Subsequent letters should be easier to distinguish by context in case colour is lost. --- writing-latn.inc.pl | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/writing-latn.inc.pl b/writing-latn.inc.pl index e401236..b2d436f 100644 --- a/writing-latn.inc.pl +++ b/writing-latn.inc.pl @@ -90,10 +90,9 @@ my $U = 0; # optional unicode alternatives 11 12 13 14 21 22 23 20 > 31 -13 32 33 30 41 42 -13 43 40 10 51 52 53 50 -31 -40 })], -'Half deck' => [ - # A 2-10 J Q K - (map { chr( 0x1F0A0 + $_ ) } 1 .. 11, 13, 14), # spades - (map { "$_" } map { chr( 0x1F0B0 + $_ ) } 1 .. 11, 13, 14), # hearts +'Cards' => [ + map { chr(0x1F0A0 + $_), sprintf('%s', chr(0x1F0B0 + $_)) } # spades, hearts + 1 .. 11, 13, 14 # A 2-10 J Q K ], 'Maritime flags' => [ # International Code of Signals, SVG fills -- 2.30.0