From 7fcaeb29bfb87c82468df2ec1cea1c70f96aedff Mon Sep 17 00:00:00 2001
From: Fabian Kirchner <kirchner@posteo.de>
Date: Fri, 13 Oct 2023 20:14:58 +0200
Subject: print tags like they are written

---
 app/Main.hs | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/app/Main.hs b/app/Main.hs
index 0cb5036..d69530f 100644
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -171,10 +171,7 @@ main = do
                       map
                         ( \(I.Tag k v) ->
                             P.annotate (P.colorDull P.Yellow) $
-                              -- TODO print tags like they are written
-                              --
-                              -- i.e. without colon (`:`)
-                              P.pretty ("@" `T.append` k `T.append` ":" `T.append` v)
+                              P.pretty ("@" `T.append` k `T.append` " " `T.append` v)
                         )
                         ( issue.tags
                             ++ if internalTags then issue.internalTags else []
-- 
cgit v1.2.3