Function: markdown-mark-paragraph
markdown-mark-paragraph is an interactive and byte-compiled function
defined in markdown-mode.el.
Signature
(markdown-mark-paragraph)
Documentation
Put mark at end of this block, point at beginning.
The block marked is the one that contains point or follows point.
Interactively, if this command is repeated or (in Transient Mark mode) if the mark is active, it marks the next block after the ones already marked.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
;;; Marking and Narrowing =====================================================
(defun markdown-mark-paragraph ()
"Put mark at end of this block, point at beginning.
The block marked is the one that contains point or follows point.
Interactively, if this command is repeated or (in Transient Mark
mode) if the mark is active, it marks the next block after the
ones already marked."
(interactive)
(if (or (and (eq last-command this-command) (mark t))
(and transient-mark-mode mark-active))
(set-mark
(save-excursion
(goto-char (mark))
(markdown-forward-paragraph)
(point)))
(let ((beginning-of-defun-function #'markdown-backward-paragraph)
(end-of-defun-function #'markdown-forward-paragraph))
(mark-defun))))