Variable: org-export-with-planning
org-export-with-planning is a customizable variable defined in
ox.el.gz.
Value
nil
Documentation
Non-nil means include planning info in export.
Planning info is the line containing either SCHEDULED:, DEADLINE:, CLOSED: timestamps, or a combination of them.
This option can also be set with the OPTIONS keyword, e.g. "p:t".
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-planning nil
"Non-nil means include planning info in export.
Planning info is the line containing either SCHEDULED:,
DEADLINE:, CLOSED: timestamps, or a combination of them.
This option can also be set with the OPTIONS keyword,
e.g. \"p:t\"."
:group 'org-export-general
:version "24.4"
:package-version '(Org . "8.0")
:type 'boolean
:safe #'booleanp)