Function: denote-date-org-timestamp

denote-date-org-timestamp is a byte-compiled function defined in denote.el.

Signature

(denote-date-org-timestamp DATE)

Documentation

Format DATE using the Org inactive timestamp notation.

Source Code

;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-date-org-timestamp (date)
  "Format DATE using the Org inactive timestamp notation."
  (if date
      (format-time-string "[%F %a %R]" date)
    ""))