Function: markdown-fontify-blockquotes
markdown-fontify-blockquotes is a byte-compiled function defined in
markdown-mode.el.
Signature
(markdown-fontify-blockquotes LAST)
Documentation
Apply font-lock properties to blockquotes from point to LAST.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-fontify-blockquotes (last)
"Apply font-lock properties to blockquotes from point to LAST."
(when (markdown-match-blockquotes last)
(let ((display-string
(markdown--first-displayable markdown-blockquote-display-char)))
(add-text-properties
(match-beginning 1) (match-end 1)
(if markdown-hide-markup
`(face markdown-blockquote-face display ,display-string)
`(face markdown-markup-face)))
(font-lock-append-text-property
(match-beginning 0) (match-end 0) 'face 'markdown-blockquote-face)
t)))