Variable: org-icalendar-date-time-format

org-icalendar-date-time-format is a customizable variable defined in ox-icalendar.el.gz.

Value

":%Y%m%dT%H%M%S"

Documentation

Format-string for exporting icalendar DATE-TIME.

See format-time-string for a full documentation. The only difference is that org-icalendar-timezone is used for %Z.

Interesting value are:
 - ":%Y%m%dT%H%M%S" for local time
 - ";TZID=%Z:%Y%m%dT%H%M%S" for local time with explicit timezone
 - ":%Y%m%dT%H%M%SZ" for time expressed in Universal Time

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-icalendar.el.gz
(defcustom org-icalendar-date-time-format ":%Y%m%dT%H%M%S"
  "Format-string for exporting icalendar DATE-TIME.

See `format-time-string' for a full documentation.  The only
difference is that `org-icalendar-timezone' is used for %Z.

Interesting value are:
 - \":%Y%m%dT%H%M%S\" for local time
 - \";TZID=%Z:%Y%m%dT%H%M%S\" for local time with explicit timezone
 - \":%Y%m%dT%H%M%SZ\" for time expressed in Universal Time"
  :group 'org-export-icalendar
  :version "24.1"
  :type '(choice
	  (const :tag "Local time" ":%Y%m%dT%H%M%S")
	  (const :tag "Explicit local time" ";TZID=%Z:%Y%m%dT%H%M%S")
	  (const :tag "Universal time" ":%Y%m%dT%H%M%SZ")
	  (string :tag "Explicit format")))