Variable: markdown-regex-footnote-definition

markdown-regex-footnote-definition is a variable defined in markdown-mode.el.

Value

"^ \\{0,3\\}\\[\\(\\^[[:alnum:]-]*?\\)\\]:\\(?:[        ]+\\|$\\)"

Documentation

Regular expression matching a footnote definition, capturing the label.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defconst markdown-regex-footnote-definition
  (concat "^ \\{0,3\\}\\[\\(\\^" markdown-footnote-chars "*?\\)\\]:\\(?:[ \t]+\\|$\\)")
  "Regular expression matching a footnote definition, capturing the label.")