Variable: org-html-inline-images
org-html-inline-images is a customizable variable defined in
ox-html.el.gz.
Value
t
Documentation
Non-nil means inline images into exported HTML pages.
This is done using an <img> tag. When nil, an anchor with href is used to link to the image.
This variable was added, or its default value changed, in Org version
8.1.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
;;;; Links :: Inline images
(defcustom org-html-inline-images t
"Non-nil means inline images into exported HTML pages.
This is done using an <img> tag. When nil, an anchor with href is used to
link to the image."
:group 'org-export-html
:version "24.4"
:package-version '(Org . "8.1")
:type 'boolean)