Variable: org-timestamp-formats

org-timestamp-formats is a variable defined in org.el.gz.

Value

("%Y-%m-%d %a" . "%Y-%m-%d %a %H:%M")

Documentation

Formats for format-time-string which are used for time stamps.

The value is a cons cell containing two strings. The car and cdr of the cons cell are used to format time stamps that do not and do contain time, respectively.

Leading "<"/"[" and trailing ">"/"]" pair will be stripped from the format strings.

Also, see org-time-stamp-format.

Aliases

org-time-stamp-formats

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defconst org-timestamp-formats '("%Y-%m-%d %a" . "%Y-%m-%d %a %H:%M")
  "Formats for `format-time-string' which are used for time stamps.

The value is a cons cell containing two strings.  The `car' and `cdr'
of the cons cell are used to format time stamps that do not and do
contain time, respectively.

Leading \"<\"/\"[\" and trailing \">\"/\"]\" pair will be stripped
from the format strings.

Also, see `org-time-stamp-format'.")