Function: markdown-move-subtree-up
markdown-move-subtree-up is an interactive and byte-compiled function
defined in markdown-mode.el.
Signature
(markdown-move-subtree-up)
Documentation
Move the current subtree of ATX headings up.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-move-subtree-up ()
"Move the current subtree of ATX headings up."
(interactive)
(outline-move-subtree-up 1))