Function: hywiki-denote-file-to-wikiword
hywiki-denote-file-to-wikiword is an interactive and byte-compiled
function defined in hywiki.el.
Signature
(hywiki-denote-file-to-wikiword DENOTE-FILE)
Documentation
Return a hywikiword from the denote description associated with DENOTE-FILE.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260822.1645/hywiki.el
(defun hywiki-denote-file-to-wikiword (denote-file)
"Return a hywikiword from the denote description associated with DENOTE-FILE."
(interactive
(list (denote-file-prompt nil "HyWiki denote file: "
nil t)))
(if denote-file
(hywiki-string-to-wikiword
(denote-get-link-description denote-file))
(error "(hywiki-denote-file-to-wikiword): Denote file not found: \"%s\""
denote-file)))