Function: markdown-mark-page
markdown-mark-page is an interactive and byte-compiled function
defined in markdown-mode.el.
Signature
(markdown-mark-page)
Documentation
Put mark at end of this top level section, point at beginning.
The top level section 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 page after the ones already marked.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-mark-page ()
"Put mark at end of this top level section, point at beginning.
The top level section 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 page 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-page)
(point)))
(let ((beginning-of-defun-function #'markdown-backward-page)
(end-of-defun-function #'markdown-forward-page))
(mark-defun))))