From c0fcd0bebc6070154399df63fc0932b608402b05 Mon Sep 17 00:00:00 2001 From: pho4cexa Date: Mon, 12 Dec 2022 08:19:53 -0800 Subject: [PATCH] don't output # to html quick band-aid for this bug... better fix will be to modify the sxml->html transformation rules... thanks for the report m455!! --- main.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/main.scm b/main.scm index b6d5b44..f1d2161 100755 --- a/main.scm +++ b/main.scm @@ -124,13 +124,13 @@ (h2 ,repository-name) (p "clone url:" ,CLONE-URL "/" ,repository-name) (nav - ,(when readme-file - `(a (@ href ,relative-root "index.html") "about")) + ,(if readme-file + `(a (@ href ,relative-root "index.html") "about") "") (a (@ href ,relative-root "files.html") "files") - ,(when license-file - `(a (@ href ,relative-root ,license-file ".html") "license")) - ,(when issues-present? - `(a (@ href ,relative-root "ISSUES.html") "issues")) + ,(if license-file + `(a (@ href ,relative-root ,license-file ".html") "license") "") + ,(if issues-present? + `(a (@ href ,relative-root "ISSUES.html") "issues") "") (a (@ href ,relative-root "commits.html") "commits") (a (@ href ,relative-root "contributors.html") "contributors"))) (hr)