Variable: org-odt-inline-formula-rules

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

Value

(("file" . "\\.\\(mathml\\|mml\\|odf\\)\\'"))

Documentation

Rules characterizing formula 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.0.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
;;;; Links

(defcustom org-odt-inline-formula-rules
  '(("file" . "\\.\\(mathml\\|mml\\|odf\\)\\'"))
  "Rules characterizing formula 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 "24.4"
  :package-version '(Org . "8.0")
  :type '(alist :key-type (string :tag "Type")
		:value-type (regexp :tag "Path")))