diff options
author | Fabian Kirchner <kirchner@posteo.de> | 2023-10-13 20:14:58 +0200 |
---|---|---|
committer | Fabian Kirchner <kirchner@posteo.de> | 2023-10-13 20:14:58 +0200 |
commit | 7fcaeb29bfb87c82468df2ec1cea1c70f96aedff (patch) | |
tree | 18dca6cecc93ddc74c18181d985c519c31573220 /app/Main.hs | |
parent | 1e8edfde87c76f1f599b3a89d4542542fd17c39c (diff) |
print tags like they are written
Diffstat (limited to 'app/Main.hs')
-rw-r--r-- | app/Main.hs | 5 |
1 files changed, 1 insertions, 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 [] |