Function: markdown-match-gfm-code-blocks

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

Signature

(markdown-match-gfm-code-blocks LAST)

Documentation

Match GFM quoted code blocks from point to LAST.

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

Source Code

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