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