Function: hywiki-org-link-store
hywiki-org-link-store is a byte-compiled function defined in
hywiki.el.
Signature
(hywiki-org-link-store)
Documentation
Store a link to a HyWikiWord at point, if any.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki-org-link-store ()
"Store a link to a HyWikiWord at point, if any."
(when (hywiki-word-at)
(let* ((page-name (hywiki-word-at))
(link (concat
(when hywiki-org-link-type-required
(concat hywiki-org-link-type ":"))
page-name)))
(org-link-store-props
:type hywiki-org-link-type
:link link
:description page-name))))