Function: denote-date
denote-date is an autoloaded, interactive and byte-compiled function
defined in denote.el.
Signature
(denote-date)
Documentation
Create note while prompting for a date.
The date can be in YEAR-MONTH-DAY notation like 2022-06-30 or
that plus the time: 2022-06-16 14:30. When the user option
denote-date-prompt-use-org-read-date is non-nil, the date
prompt uses the more powerful Org+calendar system.
This is the equivalent of calling denote when denote-prompts
has the date prompt appended to its existing prompts.
Key Bindings
Aliases
Source Code
;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
;;;###autoload
(defun denote-date ()
"Create note while prompting for a date.
The date can be in YEAR-MONTH-DAY notation like 2022-06-30 or
that plus the time: 2022-06-16 14:30. When the user option
`denote-date-prompt-use-org-read-date' is non-nil, the date
prompt uses the more powerful Org+calendar system.
This is the equivalent of calling `denote' when `denote-prompts'
has the `date' prompt appended to its existing prompts."
(declare (interactive-only t))
(interactive)
(let ((denote-prompts (denote-add-prompts '(date))))
(call-interactively #'denote)))