Variable: htmlize-force-inline-images
htmlize-force-inline-images is a customizable variable defined in
htmlize.el.
Value
nil
Documentation
Non-nil means generate all images inline using data URLs.
Normally htmlize converts image descriptors with :file properties to relative URIs, and those with :data properties to data URIs. With this flag set, the images specified as a file name are loaded into memory and embedded in the HTML as data URIs.
Source Code
;; Defined in ~/.emacs.d/elpa/htmlize-20250724.1703/htmlize.el
(defcustom htmlize-force-inline-images nil
"Non-nil means generate all images inline using data URLs.
Normally htmlize converts image descriptors with :file properties to
relative URIs, and those with :data properties to data URIs. With this
flag set, the images specified as a file name are loaded into memory and
embedded in the HTML as data URIs."
:type 'boolean
:group 'htmlize)