Variable: org-export-with-drawers

org-export-with-drawers is a customizable variable defined in ox.el.gz.

Value

(not "LOGBOOK")

Documentation

Non-nil means export contents of standard drawers.

When t, all drawers are exported. This may also be a list of drawer names to export, as strings. If that list starts with not, only drawers with such names will be ignored.

This variable doesn't apply to properties drawers. See org-export-with-properties instead.

This option can also be set with the OPTIONS keyword, e.g. "d:nil".

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defcustom org-export-with-drawers '(not "LOGBOOK")
  "Non-nil means export contents of standard drawers.

When t, all drawers are exported.  This may also be a list of
drawer names to export, as strings.  If that list starts with
`not', only drawers with such names will be ignored.

This variable doesn't apply to properties drawers.  See
`org-export-with-properties' instead.

This option can also be set with the OPTIONS keyword,
e.g. \"d:nil\"."
  :group 'org-export-general
  :version "24.4"
  :package-version '(Org . "8.0")
  :type '(choice
	  (const :tag "All drawers" t)
	  (const :tag "None" nil)
	  (repeat :tag "Selected drawers"
		  (string :tag "Drawer name"))
	  (list :tag "Ignored drawers"
		(const :format "" not)
		(repeat :tag "Specify names of drawers to ignore during export"
			:inline t
			(string :tag "Drawer name"))))
  :safe (lambda (x) (or (booleanp x) (consp x))))