Function: markdown-cleanup-list-numbers

markdown-cleanup-list-numbers is an interactive and byte-compiled function defined in markdown-mode.el.

Signature

(markdown-cleanup-list-numbers)

Documentation

Update the numbering of ordered lists.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-cleanup-list-numbers ()
  "Update the numbering of ordered lists."
  (interactive)
  (save-excursion
    (goto-char (point-min))
    (markdown-cleanup-list-numbers-level "")))