Variable: hywiki-word-with-optional-suffix-exact-regexp

hywiki-word-with-optional-suffix-exact-regexp is a variable defined in hywiki.el.

Value

"\\`\\<\\([[:upper:]][[:alpha:]]+\\)\\>\\(?:\\.org\\)?\\(#[^][#\n
\f]+\\)??\\(:L?\\([-+]?[0-9]+\\)\\(:C?\\([-+]?[0-9]+\\)\\)?\\)?\\'"

Documentation

Exact match regexp for a HyWikiWord with an optional #section.

The section may contain spaces or tabs but not square brackets; it is preferable, however, to substitute '-' for whitespace in the section/headline name to simplify recognition.

Group 1 is the HyWikiWord. Group 2 is any optional #section with the # included. Group 4 is any optional 1-based line number to jump to for any file-based referents (relative to any section given). Group 6 is any optional 0-based column number to jump to for any file-based referents.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defconst hywiki-word-with-optional-suffix-exact-regexp
  (concat "\\`" hywiki-word-regexp "\\(#[^][#\n\r\f]+\\)??"
	  hywiki-word-line-and-column-numbers-regexp "?\\'")
  "Exact match regexp for a HyWikiWord with an optional #section.
The section may contain spaces or tabs but not square brackets;
it is preferable, however, to substitute '-' for whitespace in
the section/headline name to simplify recognition.

Group 1 is the HyWikiWord.
Group 2 is any optional #section with the # included.
Group 4 is any optional 1-based line number to jump to for any
file-based referents (relative to any section given).
Group 6 is any optional 0-based column number to jump to for any
file-based referents.")