Variable: denote-current-data

denote-current-data is a variable defined in denote.el.

Value

nil

Documentation

Store the current unprocessed data passed to denote.

This is an alist where each car is one among title, keywords, signature, directory, date, id, file-type, template. The value each of them contains is the unprocessed input (e.g. the title before it is sluggified).

This may be used by the hooks denote-after-new-note-hook and denote-after-rename-file-hook to access the relevant data.

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defvar denote-current-data nil
  "Store the current unprocessed data passed to `denote'.
This is an alist where each `car' is one among `title', `keywords',
`signature', `directory', `date', `id', `file-type', `template'.  The
value each of them contains is the unprocessed input (e.g. the title
before it is sluggified).

This may be used by the hooks `denote-after-new-note-hook' and
`denote-after-rename-file-hook' to access the relevant data.")