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, including diary timestamps.
  active-exclude-diary export active timestamps, excluding diary timestamps.
  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".

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

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, including diary timestamps.
  `active-exclude-diary'   export active timestamps, excluding diary timestamps.
  `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
  :package-version '(Org . "9.8")
  :type '(choice
	  (const :tag "All timestamps" t)
	  (const :tag "Active timestamps, including diary timestamps" active)
	  (const :tag "Active timestamps, excluding diary timestamps"
                 active-exclude-diary)
	  (const :tag "Only inactive timestamps" inactive)
	  (const :tag "No timestamp" nil))
  :safe (lambda (x) (memq x '(t nil active active-exclude-diary inactive))))