Function: markdown-get-start-fence-regexp

markdown-get-start-fence-regexp is a byte-compiled function defined in markdown-mode.el.

Signature

(markdown-get-start-fence-regexp)

Documentation

Return regexp to find all "start" sections of fenced block constructs.

Which construct is actually contained in the match must be found separately.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defsubst markdown-get-start-fence-regexp ()
  "Return regexp to find all \"start\" sections of fenced block constructs.
Which construct is actually contained in the match must be found separately."
  (mapconcat
   #'identity
   (mapcar (lambda (entry) (markdown-maybe-funcall-regexp (caar entry)))
           markdown-fenced-block-pairs)
   "\\|"))