Function: hywiki-denote-id-to-wikiword
hywiki-denote-id-to-wikiword is a byte-compiled function defined in
hywiki.el.
Signature
(hywiki-denote-id-to-wikiword DENOTE-ID)
Documentation
Return a hywikiword from the denote description associated with DENOTE-ID.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260822.1645/hywiki.el
(defun hywiki-denote-id-to-wikiword (denote-id)
"Return a hywikiword from the denote description associated with DENOTE-ID."
(let ((denote-file (denote-get-path-by-id denote-id)))
(if denote-file
(hywiki-string-to-wikiword
(denote-get-link-description denote-file))
(error "(hywiki-denote-id-to-wikiword): Denote file not found for id: \"%s\""
denote-id))))