Function: org-roam-db-get-deadline-time
org-roam-db-get-deadline-time is a byte-compiled function defined in
org-roam-db.el.
Signature
(org-roam-db-get-deadline-time)
Documentation
Return the deadline time at point in ISO8601 format.
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-db.el
(defun org-roam-db-get-deadline-time ()
"Return the deadline time at point in ISO8601 format."
(when-let* ((time (org-get-deadline-time (point))))
(format-time-string "%FT%T" time)))