diff options
-rw-r--r-- | src/guile/skribilo/engine/html.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/guile/skribilo/engine/html.scm b/src/guile/skribilo/engine/html.scm index a48745e..12c068e 100644 --- a/src/guile/skribilo/engine/html.scm +++ b/src/guile/skribilo/engine/html.scm @@ -943,6 +943,8 @@ (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 @@ -953,7 +955,8 @@ (format #t "<sup><small>~a</small></sup></a>" (markup-option fn :label)) (output (markup-body fn) e) - (display "\n<br>\n") + + (display "\n</div>\n") (loop (cdr fns))))) (display "</div>"))))) |