Variable: diary-icalendar-description-regexp

diary-icalendar-description-regexp is a customizable variable defined in diary-icalendar.el.gz.

Value

nil

Documentation

Regular expression to match description in an entry.

If this is nil, the entire entry (after the date and time specification) is used as the description. Thus, it is only necessary to set this variable if you want to export diary entries where the text to be used as the description should not include the full entry body. In that case, the description should match group 1 of this regexp.

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

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/diary-icalendar.el.gz
(defcustom di:description-regexp nil
  "Regular expression to match description in an entry.

If this is nil, the entire entry (after the date and time specification)
is used as the description.  Thus, it is only necessary to set this
variable if you want to export diary entries where the text to be used
as the description should not include the full entry body.  In that case,
the description should match group 1 of this regexp."
  :version "31.1"
  :type '(radio
          (const :tag "Use full entry body" nil)
          (regexp :tag "Regexp")))