Variable: org-export-with-properties

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

Value

nil

Documentation

Non-nil means export contents of properties drawers.

When t, all properties are exported. This may also be a list of properties to export, as strings.

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

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

Source Code

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

When t, all properties are exported.  This may also be a list of
properties to export, as strings.

This option can also be set with the OPTIONS keyword,
e.g. \"prop:t\"."
  :group 'org-export-general
  :version "26.1"
  :package-version '(Org . "8.3")
  :type '(choice
	  (const :tag "All properties" t)
	  (const :tag "None" nil)
	  (repeat :tag "Selected properties"
		  (string :tag "Property name")))
  :safe (lambda (x) (or (booleanp x)
			(and (listp x) (cl-every #'stringp x)))))