Variable: markdown-regex-blockquote
markdown-regex-blockquote is a variable defined in markdown-mode.el.
Value
"^[ ]*\\(?1:[A-Z]?>\\)\\(?2:[ ]*\\)\\(?3:.*\\)$"
Documentation
Regular expression for matching blockquote lines.
Also accounts for a potential capital letter preceding the angle bracket, for use with Leanpub blocks (asides, warnings, info blocks, etc.). Group 1 matches the leading angle bracket. Group 2 matches the separating whitespace. Group 3 matches the text.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defconst markdown-regex-blockquote
"^[ \t]*\\(?1:[A-Z]?>\\)\\(?2:[ \t]*\\)\\(?3:.*\\)$"
"Regular expression for matching blockquote lines.
Also accounts for a potential capital letter preceding the angle
bracket, for use with Leanpub blocks (asides, warnings, info
blocks, etc.).
Group 1 matches the leading angle bracket.
Group 2 matches the separating whitespace.
Group 3 matches the text.")