Function: markdown-syntax-propertize-blockquotes

markdown-syntax-propertize-blockquotes is a byte-compiled function defined in markdown-mode.el.

Signature

(markdown-syntax-propertize-blockquotes START END)

Documentation

Match blockquotes from START to END.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-syntax-propertize-blockquotes (start end)
  "Match blockquotes from START to END."
  (save-excursion
    (goto-char start)
    (while (and (re-search-forward markdown-regex-blockquote end t)
                (not (markdown-code-block-at-pos (match-beginning 0))))
      (put-text-property (match-beginning 0) (match-end 0)
                         'markdown-blockquote
                         (match-data t)))))