Macro: render-html

Documentation

Outputs the html of a html-sexp.

Source

(defmacro render-html (&body body)
  "Outputs the html of a html-sexp."
  `(respond-with-html (*html-output-stream*)
     (with-foo-output (*html-output-stream*)
       (html ,@body))))
Source Context