aboutsummaryrefslogtreecommitdiffstats
path: root/app/Issue
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2023-11-07 22:40:48 +0100
committerLibravatar Alexander Foremny <aforemny@posteo.de>2023-11-07 22:40:48 +0100
commit218a71f38b33484bb884cb617afe337c1ffaab92 (patch)
tree2f828bd7bb3aa37cb11d5435cd6ec942cef57b13 /app/Issue
parent561ef3d43d94bdf098fee37295d7588905ec0c9e (diff)
add internal tag `title'
Diffstat (limited to 'app/Issue')
-rw-r--r--app/Issue/Tag.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Issue/Tag.hs b/app/Issue/Tag.hs
index 90c7520..2f584b3 100644
--- a/app/Issue/Tag.hs
+++ b/app/Issue/Tag.hs
@@ -51,7 +51,8 @@ extractTags =
internalTags :: Text -> Maybe Provenance -> [T.Text] -> [Tag]
internalTags title provenance' markers =
concat
- [ [ Tag "id" $ Just $ toSpinalCase title
+ [ [ Tag "id" $ Just $ toSpinalCase title,
+ Tag "title" $ Just $ title
],
maybe
[]