Variable: hynote-file-suffix-regexp
hynote-file-suffix-regexp is a variable defined in hynote.el.
Value
"\\(\\.kotl\\|\\.kot\\|\\.md\\|\\.markdown\\|\\.mkd\\|\\.mdown\\|\\.mkdn\\|\\.mdwn\\|\\.org\\|\\.otl\\|\\.outl\\)$"
Documentation
Regular expression matching valid filename suffixes to search for HyNotes.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hynote.el
(defvar hynote-file-suffix-regexp
(concat "\\(" (string-join (mapcar #'regexp-quote hynote-file-suffix-list) "\\|")
"\\)$")
"Regular expression matching valid filename suffixes to search for HyNotes.")