From f850c09be82e7631c35932e3a3fd037d4fcaa607 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Sun, 29 Mar 2020 17:17:49 +0200 Subject: Fix bug where descriptions didn't render unless the contained url:s. --- config.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config.scm') diff --git a/config.scm b/config.scm index c4996d40..0a8112b6 100644 --- a/config.scm +++ b/config.scm @@ -48,7 +48,7 @@ (let recur ((str str)) (let ((m (regexp-exec regexp str))) (if (not m) - '() + (list str) (cons* (match:prefix m) (a (match:substring m)) (recur (match:suffix m))))))) -- cgit v1.2.3