Variable: org-export-with-timestamps
org-export-with-timestamps is a customizable variable defined in
ox.el.gz.
Value
t
Documentation
Non-nil means allow timestamps in export.
It can be set to any of the following values:
t export all timestamps.
active export active timestamps only.
inactive export inactive timestamps only.
nil do not export timestamps
This only applies to timestamps isolated in a paragraph containing only timestamps. Other timestamps are always exported.
This option can also be set with the OPTIONS keyword, e.g.
"<:nil".
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defcustom org-export-with-timestamps t
"Non-nil means allow timestamps in export.
It can be set to any of the following values:
t export all timestamps.
`active' export active timestamps only.
`inactive' export inactive timestamps only.
nil do not export timestamps
This only applies to timestamps isolated in a paragraph
containing only timestamps. Other timestamps are always
exported.
This option can also be set with the OPTIONS keyword, e.g.
\"<:nil\"."
:group 'org-export-general
:type '(choice
(const :tag "All timestamps" t)
(const :tag "Only active timestamps" active)
(const :tag "Only inactive timestamps" inactive)
(const :tag "No timestamp" nil))
:safe (lambda (x) (memq x '(t nil active inactive))))