Variable: htmlize-css-name-prefix
htmlize-css-name-prefix is a customizable variable defined in
htmlize.el.
Value
""
Documentation
The prefix used for CSS names.
The CSS names that htmlize generates from face names are often too
generic for CSS files; for example, font-lock-type-face is transformed
to type. Use this variable to add a prefix to the generated names.
The string "htmlize-" is an example of a reasonable prefix.
Source Code
;; Defined in ~/.emacs.d/elpa/htmlize-20250724.1703/htmlize.el
(defcustom htmlize-css-name-prefix ""
"The prefix used for CSS names.
The CSS names that htmlize generates from face names are often too
generic for CSS files; for example, `font-lock-type-face' is transformed
to `type'. Use this variable to add a prefix to the generated names.
The string \"htmlize-\" is an example of a reasonable prefix."
:type 'string
:group 'htmlize)