Variable: org-image-align
org-image-align is a customizable variable defined in org.el.gz.
Value
left
Documentation
How to align images previewed using org-display-inline-images.
Only stand-alone image links are affected by this setting. These are links without surrounding text.
Possible values of this option are:
left Insert image at specified position.
center Center image previews.
right Right-align image previews.
This variable was added, or its default value changed, in Org version
9.7.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-image-align 'left
"How to align images previewed using `org-display-inline-images'.
Only stand-alone image links are affected by this setting. These
are links without surrounding text.
Possible values of this option are:
left Insert image at specified position.
center Center image previews.
right Right-align image previews."
:group 'org-appearance
:package-version '(Org . "9.7")
:type '(choice
(const :tag "Left align (or don\\='t align) image previews" left)
(const :tag "Center image previews" center)
(const :tag "Right align image previews" right))
:safe #'symbolp)