Function: hywiki-page-exists-p

hywiki-page-exists-p is a byte-compiled function defined in hywiki.el.

Signature

(hywiki-page-exists-p WORD)

Documentation

Return HyWiki WORD iff it is an existing page reference.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki-page-exists-p (word)
  "Return HyWiki WORD iff it is an existing page reference."
  (and (stringp word) (not (file-name-directory word))
       (eq (car (hywiki-get-referent word)) 'page)
       word))