summary refs log tree commit diff
path: root/ennu.el
diff options
context:
space:
mode:
Diffstat (limited to 'ennu.el')
-rw-r--r--ennu.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/ennu.el b/ennu.el
index 977771c..9a4adfa 100644
--- a/ennu.el
+++ b/ennu.el
@@ -188,9 +188,11 @@ last form in BODY."
                       (when-let ((tags (ennu-post-tags post)))
                         (insert "Tags: ")
                         (insert
-                         (string-join (seq-map (apply-partially 'format "[[tag:%s]]")
-                                               tags)
-                                      ", "))
+                         (string-join
+                          (seq-map (lambda (tag)
+                                     (format "[[tag:%s][%s]]" (ennu-add-tongue-suffix tag tongue) tag))
+                                   tags)
+                          ", "))
                         (insert "\n\n")))
                     posts)
             (unless (= page-number 1)