Variable: org-odt-inline-image-rules

org-odt-inline-image-rules is a customizable variable defined in ox-odt.el.gz.

Value

(("file" . "\\(?:\\.\\(?:gif\\|\\(?:jpe?\\|pn\\|sv\\)g\\)\\)"))

Documentation

Rules characterizing image files that can be inlined into ODT.

A rule consists in an association whose key is the type of link to consider, and value is a regexp that will be matched against link's path.

This variable was added, or its default value changed, in Org version
8.3.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
(defcustom org-odt-inline-image-rules
  `(("file" . ,(regexp-opt '(".jpeg" ".jpg" ".png" ".gif" ".svg"))))
  "Rules characterizing image files that can be inlined into ODT.

A rule consists in an association whose key is the type of link
to consider, and value is a regexp that will be matched against
link's path."
  :version "26.1"
  :package-version '(Org . "8.3")
  :type '(alist :key-type (string :tag "Type")
		:value-type (regexp :tag "Path")))