Function: markdown-insert-blockquote

markdown-insert-blockquote is an interactive and byte-compiled function defined in markdown-mode.el.

Signature

(markdown-insert-blockquote)

Documentation

Start a blockquote section (or blockquote the region).

If Transient Mark mode is on and a region is active, it is used as the blockquote text.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-insert-blockquote ()
  "Start a blockquote section (or blockquote the region).
If Transient Mark mode is on and a region is active, it is used as
the blockquote text."
  (interactive)
  (if (use-region-p)
      (markdown-blockquote-region (region-beginning) (region-end))
    (markdown-ensure-blank-line-before)
    (insert (markdown-blockquote-indentation (point)) "> ")
    (markdown-ensure-blank-line-after)))