Function: markdown-match-blockquotes
markdown-match-blockquotes is a byte-compiled function defined in
markdown-mode.el.
Signature
(markdown-match-blockquotes LAST)
Documentation
Match blockquotes from point to LAST.
Use data stored in 'markdown-blockquote text property during syntax analysis.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-match-blockquotes (last)
"Match blockquotes from point to LAST.
Use data stored in \\='markdown-blockquote text property during syntax
analysis."
(markdown-match-propertized-text 'markdown-blockquote last))