skribilo-bugs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#61306: [PATCH 5/5] html: Use for-each instead of explicit loop.


From: Arun Isaac
Subject: bug#61306: [PATCH 5/5] html: Use for-each instead of explicit loop.
Date: Mon, 6 Feb 2023 00:08:19 +0000

* src/guile/skribilo/engine/html.scm (&html-footnotes): Use for-each
instead of explicit loop.
---
 src/guile/skribilo/engine/html.scm | 41 +++++++++++++++---------------
 1 file changed, 20 insertions(+), 21 deletions(-)

diff --git a/src/guile/skribilo/engine/html.scm 
b/src/guile/skribilo/engine/html.scm
index e9293e6..da40475 100644
--- a/src/guile/skribilo/engine/html.scm
+++ b/src/guile/skribilo/engine/html.scm
@@ -939,27 +939,26 @@
                    (display "<div class=\"skribilo-footnote\">")
                    (display "<hr width='20%' size='2' align='left'>\n"))))
    :action (lambda (n e)
-             (let ((footnotes (markup-body n)))
-                (when (pair? footnotes)
-                   (let loop ((fns footnotes))
-                      (if (pair? fns)
-                          (let ((fn (car fns)))
-                              (display "\n<div class=\"footnote\">")
-
-                              ;; Note: the <a> tags must not be nested.
-                             (format #t "<a name=\"footnote-~a\"></a>"
-                                     (string-canonicalize
-                                      (container-ident fn)))
-                              (format #t "<a href=\"#footnote-site-~a\">"
-                                      (string-canonicalize
-                                       (container-ident fn)))
-                              (format #t "<sup><small>~a</small></sup></a>"
-                                      (markup-option fn :label))
-                             (output (markup-body fn) e)
-
-                             (display "\n</div>\n")
-                             (loop (cdr fns)))))
-                   (display "</div>")))))
+             (let ((footnotes (markup-body n)))
+               (for-each (lambda (fn)
+                           (display "\n<div class=\"footnote\">")
+
+                           ;; Note: the <a> tags must not be nested.
+
+                          (format #t "<a name=\"footnote-~a\"></a>"
+                                  (string-canonicalize
+                                   (container-ident fn)))
+                           (format #t "<a href=\"#footnote-site-~a\">"
+                                   (string-canonicalize
+                                    (container-ident fn)))
+                           (format #t "<sup><small>~a</small></sup></a>"
+                                   (markup-option fn :label))
+                          (output (markup-body fn) e)
+
+                          (display "\n</div>\n"))
+                         footnotes)
+               (when (pair? footnotes)
+                 (display "</div>")))))
 
 ;*---------------------------------------------------------------------*/
 ;*    html-title-authors ...                                           */
-- 
2.38.1






reply via email to

[Prev in Thread] Current Thread [Next in Thread]