Variable: org-time-stamp-custom-formats
org-time-stamp-custom-formats is a customizable variable defined in
org.el.gz.
Value
("%m/%d/%y %a" . "%m/%d/%y %a %H:%M")
Documentation
Custom formats for time stamps.
See format-time-string for the syntax.
These are overlaid over the default ISO format if the variable
org-display-custom-times is set. Time like %H:%M should be at the
end of the second format. The custom formats are also honored by export
commands, if custom time display is turned on at the time of export.
Leading "<" and trailing ">" pair will be stripped from the format strings.
This variable was added, or its default value changed, in Org version
9.6.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-time-stamp-custom-formats
'("%m/%d/%y %a" . "%m/%d/%y %a %H:%M") ; american
"Custom formats for time stamps.
See `format-time-string' for the syntax.
These are overlaid over the default ISO format if the variable
`org-display-custom-times' is set. Time like %H:%M should be at the
end of the second format. The custom formats are also honored by export
commands, if custom time display is turned on at the time of export.
Leading \"<\" and trailing \">\" pair will be stripped from the format
strings."
:group 'org-time
:package-version '(Org . "9.6")
:type '(cons string string))