Variable: org-export-use-babel

org-export-use-babel is a customizable variable defined in ob-exp.el.gz.

Value

t

Documentation

Switch controlling code evaluation and header processing during export.

When set to nil no code will be evaluated as part of the export process and no header arguments will be obeyed. Users who wish to avoid evaluating code on export should use the header argument
:eval never-export.

This variable was added, or its default value changed, in Emacs 24.1.

Aliases

org-export-babel-evaluate (obsolete since 9.1)

Source Code

;; Defined in /usr/src/emacs/lisp/org/ob-exp.el.gz
(defcustom org-export-use-babel t
  "Switch controlling code evaluation and header processing during export.
When set to nil no code will be evaluated as part of the export
process and no header arguments will be obeyed.  Users who wish
to avoid evaluating code on export should use the header argument
`:eval never-export'."
  :group 'org-babel
  :version "24.1"
  :type '(choice (const :tag "Never" nil)
		 (const :tag "Always" t))
  :safe #'null)