From 76083ddd912b754772cfebf05374243cfc8a7717 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Wed, 16 Mar 2022 15:49:06 +0530 Subject: tissue: Add CSS class specific to each tag. This will let users customize the color of their tags. * tissue/web.scm (issue-list-item-markup-writer-action): Add CSS class specific to each tag. --- tissue/web.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/tissue/web.scm b/tissue/web.scm index 36c0428..bd6e0b0 100644 --- a/tissue/web.scm +++ b/tissue/web.scm @@ -122,6 +122,7 @@ NEW-EXTENSION." (uri-encode (sanitize-string tag)) ".html")) (class ,(string-append "tag" + (string-append " tag-" (sanitize-string tag)) (if (not (null? (lset-intersection string=? words (list "bug" "critical")))) -- cgit v1.2.3