Variable: markdown-regex-pandoc-inline-footnote
markdown-regex-pandoc-inline-footnote is a variable defined in
markdown-mode.el.
Value
"\\(?1:\\^\\)\\(?2:\\[\\)\\(?3:\\(?:.\\|\n[^\n]\\)*?\\)\\(?4:\\]\\)"
Documentation
Regular expression for Pandoc inline footnote^[footnote text].
Group 1 matches the opening caret. Group 2 matches the opening square bracket. Group 3 matches the footnote text, without the surrounding markup. Group 4 matches the closing square bracket.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defconst markdown-regex-pandoc-inline-footnote
"\\(?1:\\^\\)\\(?2:\\[\\)\\(?3:\\(?:.\\|\n[^\n]\\)*?\\)\\(?4:\\]\\)"
"Regular expression for Pandoc inline footnote^[footnote text].
Group 1 matches the opening caret.
Group 2 matches the opening square bracket.
Group 3 matches the footnote text, without the surrounding markup.
Group 4 matches the closing square bracket.")