diff options
| author | Arun Isaac | 2022-07-08 16:33:21 +0530 |
|---|---|---|
| committer | Arun Isaac | 2022-07-08 16:33:30 +0530 |
| commit | f21248289489925bfa58920ddfd7c413218d9bb7 (patch) | |
| tree | 8a33e90a61ca72885cb8b0c10a8f9f24f10b5efa | |
| parent | e318ded5997b0d644b9b0ead36909feb1427b037 (diff) | |
| download | gn-gemtext-f21248289489925bfa58920ddfd7c413218d9bb7.tar.gz | |
Revert "tissue.scm: Remove html extension from web URIs."
We revert commit e318ded5997b0d644b9b0ead36909feb1427b037 temporarily until the tissue package can be upgraded in guix-forge and guix-bioinformatics.
| -rw-r--r-- | tissue.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tissue.scm b/tissue.scm index 7d0291d..65df566 100644 --- a/tissue.scm +++ b/tissue.scm @@ -34,11 +34,11 @@ ("Zachary Sloan" "zach" "zachs" "zsloan")) #:indexed-documents (append (map (lambda (filename) (indexed-document (cut read-gemtext-issue filename) - (string-append "/" (string-remove-suffix ".gmi" filename)))) + (string-append "/" (replace-extension filename "html")))) (gemtext-files-in-directory "issues")) (map (lambda (filename) (indexed-document (cut read-gemtext-document filename) - (string-append "/" (string-remove-suffix ".gmi" filename)))) + (string-append "/" (replace-extension filename "html")))) (gemtext-files-in-directory "topics"))) #:web-css "/style.css" #:web-files (cons* (file "style.css" |
