Function: htmlize-unstringify-face
htmlize-unstringify-face is a byte-compiled function defined in
htmlize.el.
Signature
(htmlize-unstringify-face FACE)
Documentation
If FACE is a string, return it interned, otherwise return it unchanged.
Source Code
;; Defined in ~/.emacs.d/elpa/htmlize-20250724.1703/htmlize.el
(defun htmlize-unstringify-face (face)
"If FACE is a string, return it interned, otherwise return it unchanged."
(if (stringp face)
(intern face)
face))