Function: markdown-outline-next
markdown-outline-next is an interactive and byte-compiled function
defined in markdown-mode.el.
Signature
(markdown-outline-next)
Documentation
Move to next list item, when in a list, or next visible heading.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-outline-next ()
"Move to next list item, when in a list, or next visible heading."
(interactive)
(let ((bounds (markdown-next-list-item-bounds)))
(if bounds
(goto-char (nth 0 bounds))
(markdown-next-visible-heading 1))))