Method: (GENERATE-SECTION T HTML-GENERATOR)

Source

(defmethod generate-section (section (generator html-generator))
  (<qbook-page :title (title generator)
               :file-name (make-pathname :name (make-anchor-name (text (first section)))
                                         :type "html")
               (output-directory generator)
               (<:h1 :class "title" (<:as-html (title generator)))
               (<:div :class "contents"
                      (publish section))))
Source Context