chickadee » awful » sxml->html

sxml->html #!optional procedureparameter

The procedure used to transform SXML into HTML. The default value is:

(let ((rules `((literal *preorder* . ,(lambda (t b) b))
               . ,universal-conversion-rules*)))
  (lambda (sxml)
    (with-output-to-string
      (lambda ()
        (SRV:send-reply (pre-post-order* sxml rules))))))

This parameter has been introduced in awful 0.36.