Getting this hyde microblog back up and running for Chicken 5 took a bit of work.


From 952897ceed5e6a4edb37586d10df6ecf211ad926 Mon Sep 17 00:00:00 2001
From: "Christian G. Warden" <cwarden@xerus.org>
Date: Thu, 4 Nov 2021 18:18:49 -0500
Subject: [PATCH 1/3] Update Module Imports for Chicken 5

---
 hyde.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git hyde.scm hyde.scm
index a8defea..ab5a3aa 100644
--- hyde.scm
+++ hyde.scm
@@ -1,5 +1,6 @@
-(use hyde regex posix srfi-1)
-(use lowdown)
+(import hyde regex srfi-1)
+(import chicken.process-context chicken.sort chicken.string)
+(import lowdown)
 (translators (cons (list "md" markdown->html) (translators)))

 (define root-path (make-parameter (string-append (current-directory) "/" (output-dir) "/")))
--
2.25.1
Trying to learn something new every day