about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/guile/skribilo/engine/html.scm6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/guile/skribilo/engine/html.scm b/src/guile/skribilo/engine/html.scm
index b00b93c..b57cba1 100644
--- a/src/guile/skribilo/engine/html.scm
+++ b/src/guile/skribilo/engine/html.scm
@@ -1048,7 +1048,11 @@ ignored, return #f."
      (html-open 'div
                 `((style . ,(style-declaration
                              '((text-align . "center"))))))
-     (display (string-join authors ", "))
+     (display (string-join (map (lambda (author)
+                                  (with-output-to-string
+                                    (cut output author engine)))
+                                authors)
+                           ", "))
      (html-close 'div))))
 
 ;*---------------------------------------------------------------------*/