summaryrefslogtreecommitdiffstats
path: root/feed.scm
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2024-03-31 16:05:15 +0300
committerJan Tuomi <jans.tuomi@gmail.com>2024-03-31 16:05:15 +0300
commit7eb044672595946e0b360ff57128dad50892a2ee (patch)
tree74b73170ae8cb3afefeecbde0ec65f61b5f7a7a6 /feed.scm
parentbb78febbbd6c54c91216df0714b54c2f418358ec (diff)
Remove .html suffix from archive links, add deploy.sh
Diffstat (limited to 'feed.scm')
-rw-r--r--feed.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/feed.scm b/feed.scm
index ff90fc3..4add4f8 100644
--- a/feed.scm
+++ b/feed.scm
@@ -85,7 +85,7 @@
(define kind (assocdr 'kind (cdr pair)))
(define link (pipe path
(@ replace (format "^~A\\/?" src-dir) "/")
- (@ replace "\\.md$" ".html")))
+ (@ replace "\\.md$" "")))
(format "* [~A (~A) [~A]](~A)" title date kind link))
(define index-lis (map to-li fm-sorted))