Function: markdown-blockquote-region
markdown-blockquote-region is an interactive and byte-compiled
function defined in markdown-mode.el.
Signature
(markdown-blockquote-region BEG END)
Documentation
Blockquote the region.
Arguments BEG and END specify the beginning and end of the region.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-blockquote-region (beg end)
"Blockquote the region.
Arguments BEG and END specify the beginning and end of the region."
(interactive "*r")
(markdown-block-region
beg end (concat (markdown-blockquote-indentation
(max (point-min) (1- beg))) "> ")))