Variable: diary-icalendar-export-nonmarking-as-vjournal
diary-icalendar-export-nonmarking-as-vjournal is a customizable
variable defined in diary-icalendar.el.gz.
Value
nil
Documentation
Whether to export nonmarking diary entries as VJOURNAL components.
If this variable is non-nil, nonmarking diary entries (those prefixed
with diary-nonmarking-symbol) will be exported as iCalendar VJOURNAL
components, rather than VEVENT components. VJOURNAL components are
intended to represent notes, documents, or other data associated with a
date. External calendar applications may treat VJOURNAL components
differently than VEVENTs, so consult your application's documentation
before setting this variable to t.
If this variable is nil, nonmarking entries will be exported as VEVENT
components which do not take up busy time in the calendar (i.e., with
the TRANSP property set to "TRANSPARENT"; see icalendar-transp).
This variable was added, or its default value changed, in Emacs 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/diary-icalendar.el.gz
(defcustom di:export-nonmarking-as-vjournal nil
"Whether to export nonmarking diary entries as VJOURNAL components.
If this variable is non-nil, nonmarking diary entries (those prefixed
with `diary-nonmarking-symbol') will be exported as iCalendar VJOURNAL
components, rather than VEVENT components. VJOURNAL components are
intended to represent notes, documents, or other data associated with a
date. External calendar applications may treat VJOURNAL components
differently than VEVENTs, so consult your application's documentation
before setting this variable to t.
If this variable is nil, nonmarking entries will be exported as VEVENT
components which do not take up busy time in the calendar (i.e., with
the TRANSP property set to \"TRANSPARENT\"; see `icalendar-transp')."
:version "31.1"
:type '(choice (const :tag "Export nonmarking entries as VEVENT" nil)
(const :tag "Export nonmarking entries as VJOURNAL" t))
:link '(url-link "https://www.rfc-editor.org/rfc/rfc5545#section-3.6.3"))