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

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

Value

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

Documentation

Regexp for a HyWikiWord with an optional #section, :Lline-num, :Ccol-num.

Section may not contain whitespace or square brackets. Use '-' to substitute for spaces in the section/headline name.

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-regexp
  (concat hywiki-word-regexp hywiki-word-section-regexp "??"
	  hywiki-word-line-and-column-numbers-regexp "?")
  "Regexp for a HyWikiWord with an optional #section, :Lline-num, :Ccol-num.
Section may not contain whitespace or square brackets.  Use '-' to
substitute for spaces in the section/headline name.

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.")