diff options
author | Ludovic Courtès | 2012-11-29 23:24:12 +0100 |
---|---|---|
committer | Ludovic Courtès | 2012-11-29 23:24:12 +0100 |
commit | e2140ac8c217a3523fab8371cfb6e6e8d31ec98e (patch) | |
tree | c626606f3801f807e0d395a379a5b5ac12a308e2 /src | |
parent | 1e59414742f80bd77e499fa13792c94aeecf6cd2 (diff) | |
download | skribilo-e2140ac8c217a3523fab8371cfb6e6e8d31ec98e.tar.gz skribilo-e2140ac8c217a3523fab8371cfb6e6e8d31ec98e.tar.lz skribilo-e2140ac8c217a3523fab8371cfb6e6e8d31ec98e.zip |
html: Fix erroneous tag close for footnotes.
* src/guile/skribilo/engine/html.scm (&html-footnotes): Emit </div> at
the end, not <div>. Reported by Klaus Schilling <schilling.klaus@web.de>.
Diffstat (limited to 'src')
-rw-r--r-- | src/guile/skribilo/engine/html.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/guile/skribilo/engine/html.scm b/src/guile/skribilo/engine/html.scm index 3a58084..2595277 100644 --- a/src/guile/skribilo/engine/html.scm +++ b/src/guile/skribilo/engine/html.scm @@ -954,7 +954,7 @@ (output (markup-body fn) e) (display "\n<br>\n") (loop (cdr fns))))) - (display "<div>"))))) + (display "</div>"))))) ;*---------------------------------------------------------------------*/ ;* html-title-authors ... */ |