diff options
author | Arun Isaac | 2022-07-08 02:19:51 +0530 |
---|---|---|
committer | Arun Isaac | 2022-07-08 02:21:37 +0530 |
commit | 6566606214ad538fa03c4f6b9a1788bfabab5e76 (patch) | |
tree | e47571adade3dcb25533f0b0796d3e4b9ba3b115 | |
parent | e456fc3486d18116cc29bade45c7f648739ec23a (diff) | |
download | tissue-6566606214ad538fa03c4f6b9a1788bfabab5e76.tar.gz tissue-6566606214ad538fa03c4f6b9a1788bfabab5e76.tar.lz tissue-6566606214ad538fa03c4f6b9a1788bfabab5e76.zip |
issue: Allow specifying tags with keyword and tag singulars.
* tissue/issue.scm (file-details): Allow specifying tags with keyword
and tag singulars.
-rw-r--r-- | tissue/issue.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tissue/issue.scm b/tissue/issue.scm index f5becf6..5b34c66 100644 --- a/tissue/issue.scm +++ b/tissue/issue.scm @@ -334,7 +334,9 @@ gemtext file." (hashtable-prepend! result 'assigned (map (cut resolve-alias <> (%aliases)) values))) - (((or 'keywords 'severity 'status 'priority 'tags 'type) . values) + (((or 'keyword 'keywords 'severity 'status + 'priority 'tag 'tags 'type) + . values) (hashtable-prepend! result 'keywords values)) (_ #t)) alist))) |