Variable: hywiki-word-regexp
hywiki-word-regexp is a variable defined in hywiki.el.
Value
"\\<\\([[:upper:]][[:alpha:]]+\\)\\>\\(?:\\.org\\)?"
Documentation
Regexp that matches a HyWikiWord only.
Do not use a start or end line/string anchor in this regexp.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defconst hywiki-word-regexp
(format "\\<\\([[:upper:]][[:alpha:]]+\\)\\>\\(?:%s\\)?"
(regexp-quote hywiki-file-suffix))
"Regexp that matches a HyWikiWord only.
Do not use a start or end line/string anchor in this regexp.")