Function: htmlize-font-pre-tag

htmlize-font-pre-tag is a byte-compiled function defined in htmlize.el.

Signature

(htmlize-font-pre-tag FACE-MAP)

Source Code

;; Defined in ~/.emacs.d/elpa/htmlize-20250724.1703/htmlize.el
(defun htmlize-font-pre-tag (face-map)
  (if htmlize-pre-style
      (let ((fstruct (gethash 'default face-map)))
        (format "<pre text=\"%s\" bgcolor=\"%s\">"
                (htmlize-fstruct-foreground fstruct)
                (htmlize-fstruct-background fstruct)))
    (format "<pre>")))