Function: markdown-back-to-heading

markdown-back-to-heading is an interactive and byte-compiled function defined in markdown-mode.el.

Signature

(markdown-back-to-heading &optional INVISIBLE-OK)

Documentation

Move to previous heading line, or beg of this line if it's a heading.

Only visible heading lines are considered, unless INVISIBLE-OK is non-nil.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-back-to-heading (&optional invisible-ok)
  "Move to previous heading line, or beg of this line if it's a heading.
Only visible heading lines are considered, unless INVISIBLE-OK is non-nil."
  (interactive)
  (markdown-move-heading-common #'outline-back-to-heading invisible-ok))