Variable: org-export-timestamp-file

org-export-timestamp-file is a customizable variable defined in ox.el.gz.

Value

t

Documentation

Non-nil means insert a time stamp into the exported file.

The time stamp shows when the file was created. This option can also be set with the OPTIONS keyword, e.g. "timestamp:nil".

Aliases

org-export-time-stamp-file

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defcustom org-export-timestamp-file t
  "Non-nil means insert a time stamp into the exported file.
The time stamp shows when the file was created.  This option can
also be set with the OPTIONS keyword, e.g. \"timestamp:nil\"."
  :group 'org-export-general
  :type 'boolean
  :safe #'booleanp)