Questions tagged [cl-who]

Common Lisp With HTML Output (CL-WHO) is a Lisp mark-up language

Common Lisp With HTML Output (CL-WHO) is a Lisp mark-up language developed by Edi Weitz.

Further Reading:

17 questions
0
votes
1 answer

with-html-output adds string when using :li

I'm working my way through Lisp For The Web by Adam Tornhill and I'm stuck at generating a html page with an li element in it. (with-html-output (*standard-output* nil :prologue t :indent t) (htm (:li (:a :href "Link" "Vote!") …
Held
  • 15
  • 1
  • 3
0
votes
1 answer

Strings not rendered in CL-WHO template

(require :cl-who) (defmacro rawpage ((&rest head) &body body) `(cl-who:with-html-output-to-string (*standard-output* nil :prologue t) (:html (:head (:meta :charset "utf-8") ,@head) (:body ,@body)))) (defmacro str+…
itea
  • 444
  • 3
  • 5
1
2