Variable: htmlize-ignore-face-size

htmlize-ignore-face-size is a customizable variable defined in htmlize.el.

Value

absolute

Documentation

Whether face size should be ignored when generating HTML.

If this is nil, face sizes are used. If set to t, sizes are ignored If set to absolute, only absolute size specifications are ignored. Please note that font sizes only work with CSS-based output types.

Source Code

;; Defined in ~/.emacs.d/elpa/htmlize-20250724.1703/htmlize.el
(defcustom htmlize-ignore-face-size 'absolute
  "Whether face size should be ignored when generating HTML.
If this is nil, face sizes are used.  If set to t, sizes are ignored
If set to `absolute', only absolute size specifications are ignored.
Please note that font sizes only work with CSS-based output types."
  :type '(choice (const :tag "Don't ignore" nil)
                 (const :tag "Ignore all" t)
                 (const :tag "Ignore absolute" absolute))
  :group 'htmlize)