Class: HTML-GENERATOR

Slots

  • ESCAPE-COMMENTS BOOLEAN

    If T, escape comments HTML. If NIL, output the comment as it is (useful for embedding HTML in code comments).

  • HIGHLIGHT-SYNTAX BOOLEAN

    When T, highlight syntax using highlight.js library

  • OUTPUT-DIRECTORY

Hierachy

Precedence List

Source

(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