Variable: markdown-regex-gfm-code-block-close

markdown-regex-gfm-code-block-close is a variable defined in markdown-mode.el.

Value

"^[[:blank:]]*\\(?1:`\\{3,\\}\\)\\(?2:\\s *?\\)$"

Documentation

Regular expression matching closing of GFM code blocks.

Group 1 matches the closing three or more backquotes. Group 2 matches any whitespace and the final newline.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defconst markdown-regex-gfm-code-block-close
  "^[[:blank:]]*\\(?1:`\\{3,\\}\\)\\(?2:\\s *?\\)$"
  "Regular expression matching closing of GFM code blocks.
Group 1 matches the closing three or more backquotes.
Group 2 matches any whitespace and the final newline.")