Function: icalendar-make-vtodo

icalendar-make-vtodo is a macro defined in icalendar-ast.el.gz.

Signature

(icalendar-make-vtodo &rest TEMPLATES)

Documentation

Construct an iCalendar VTODO node from TEMPLATES.

See icalendar-make-node-from-templates for the format of TEMPLATES. See icalendar-vtodo for the permissible child types.

If TEMPLATES does not contain templates for the icalendar-dtstamp and icalendar-uid properties (both required), they will be automatically provided.

Other relevant functions are documented in the icalendar group.

Shortdoc

;; icalendar
(icalendar-make-vtodo
   (icalendar-summary "Sell another doomsday device")
   (icalendar-description "Need funds for electronium hat experiment.")
   (icalendar-due '(6 6 3002)))
    => (icalendar-vtodo ...)

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-ast.el.gz
(defmacro ical:make-vtodo (&rest templates)
  "Construct an iCalendar VTODO node from TEMPLATES.
See `icalendar-make-node-from-templates' for the format of TEMPLATES.
See `icalendar-vtodo' for the permissible child types.

If TEMPLATES does not contain templates for the `icalendar-dtstamp' and
`icalendar-uid' properties (both required), they will be automatically
provided."
  `(ical:make-node-from-templates ical:vtodo ,@templates))