Variable: markdown-regex-block-separator-noindent

markdown-regex-block-separator-noindent is a variable defined in markdown-mode.el.

Value

"\\(\\`\\|\\(\n[\n	\f ]*\n\\)[^\n	\f ]\\)"

Documentation

Regexp for block separators before lines with no indentation.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defconst markdown-regex-block-separator-noindent
  (concat "\\(\\`\\|\\(" markdown-regex-block-separator "\\)[^\n\t\f ]\\)")
  "Regexp for block separators before lines with no indentation.")