From 2d102677d1218ec76413252c227e0413d8273214 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Thu, 20 Oct 2022 23:10:46 +0200 Subject: [PATCH] Fix xml attr parsing --- tekuti/marxdown.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tekuti/marxdown.scm b/tekuti/marxdown.scm index 205fefe..6b43a17 100644 --- a/tekuti/marxdown.scm +++ b/tekuti/marxdown.scm @@ -92,7 +92,7 @@ ,@(match attributes (() '()) (((attr . value) ...) - `((@ ,(map list attr value))))) + `((@ . ,(map list attr value))))) . ,(reverse seed)) parent-seed)) (define (ftext string1 string2 seed)