If T, escape comments HTML. If NIL, output the comment as it is (useful for embedding HTML in code comments).
When T, highlight syntax using highlight.js library
(defclass html-generator (generator)
((escape-comments :initarg :escape-comments
:accessor escape-comments
:type boolean
:initform t
:documentation "If T, escape comments HTML. If NIL, output the comment as it is (useful for embedding HTML in code comments).")
(highlight-syntax :initarg :highlight-syntax
:accessor highlight-syntax
:type boolean
:initform nil
:documentation "When T, highlight syntax using highlight.js library")
(output-directory :initarg :output-directory :accessor output-directory)))
Source Context