From 978ae8fd03b3c7ced09c53ad3f06ff1a73ed2759 Mon Sep 17 00:00:00 2001 From: nat Date: Thu, 22 May 2025 13:28:45 -0700 Subject: [PATCH] escape html when displaying git changelog --- www/src/pages/home.hy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/src/pages/home.hy b/www/src/pages/home.hy index 1ed351a..339e79a 100644 --- a/www/src/pages/home.hy +++ b/www/src/pages/home.hy @@ -15,7 +15,7 @@ (h2 "site info" ~(run "make-footnote \"as of last build\"")) (details (summary "git changelog") - (pre ~(run "git log --pretty=format:'%ad %s' --date=short"))) + (pre ~(run #[[git log --pretty=format:'%ad %s' --date=short | sed 's//\>/g']]))) (details (summary "file tree of the site on the server")