Function: markdown-table-move-row-up
markdown-table-move-row-up is an interactive and byte-compiled
function defined in markdown-mode.el.
Signature
(markdown-table-move-row-up)
Documentation
Move table row at point up.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-table-move-row-up ()
"Move table row at point up."
(interactive)
(markdown-table-move-row 'up))