From e4217d744a65e29a041ef17e1e91ad3c03943f5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= Date: Fri, 30 Jul 2021 16:40:59 +0100 Subject: [PATCH] Use a white square emoji for blanks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If the park uses a mixture of regular spaces and emoji the alignment will not be preserved nicely in many applications, especially web browsers, because the size of the regular space is not a match for the size of emojis used. Emoji themselves are not all guaranteed to be the same size in all fonts, but at if we use a 'white large square' it appears to be a more reliable size match for the rest of the emoji. Signed-off-by: Daniel P. BerrangΓ© --- README.md | 10 +++++----- main.go | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e345544..f94a05b 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,11 @@ Give them a home for rest and relaxation in a cursor's natural space. ``` Cursor Park & Nature Preserve 🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳 -🌳 🐌 🐐 🌳 -🌳 πŸŒ΄πŸ• 🌳 -🌳 πŸ› 🌳 -🌳 🌳 -🌳 🐝 🌳 +πŸŒ³β¬œβ¬œβ¬œβ¬œβ¬œβ¬œβ¬œβ¬œβ¬œβ¬œβ¬œβ¬œβ¬œπŸ›β¬œβ¬œβ¬œβ¬œπŸŒ³ +🌳🐘⬜⬜⬜⬜⬜⬜⬜⬜🐐⬜⬜⬜⬜⬜⬜⬜⬜🌳 +πŸŒ³β¬œβ¬œβ¬œβ¬œβ¬œβ¬œβ¬œβ¬œβ¬œβ¬œβ¬œβ¬œβ¬œβ¬œβ¬œπŸ¦€β¬œβ¬œπŸŒ³ +πŸŒ³β¬œβ¬œβ¬œβ¬œβ¬œβ¬œβ¬œπŸ¦€β¬œπŸ‘β¬œπŸˆβ¬œβ¬œβ¬œβ¬œβ¬œβ¬œπŸŒ³ +🌳⬜⬜⬜⬜🦍⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜🌳 🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳🌳 ``` diff --git a/main.go b/main.go index e09d0dc..c7f5377 100644 --- a/main.go +++ b/main.go @@ -25,7 +25,7 @@ Cursor Park & Nature Preserve const ( tree = "🌳" - blank = " " + blank = "⬜" ) func main() {