Function: markdown-match-pre-blocks

markdown-match-pre-blocks is a byte-compiled function defined in markdown-mode.el.

Signature

(markdown-match-pre-blocks LAST)

Documentation

Match preformatted blocks from point to LAST.

Use data stored in 'markdown-pre text property during syntax analysis.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-match-pre-blocks (last)
  "Match preformatted blocks from point to LAST.
Use data stored in \\='markdown-pre text property during syntax
analysis."
  (markdown-match-propertized-text 'markdown-pre last))