Function: markdown-insert-header-setext-dwim
markdown-insert-header-setext-dwim is an interactive and byte-compiled
function defined in markdown-mode.el.
Signature
(markdown-insert-header-setext-dwim &optional ARG)
Documentation
Insert or replace header markup, with preference for setext.
See markdown-insert-header-dwim for details, including how ARG is handled.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-insert-header-setext-dwim (&optional arg)
"Insert or replace header markup, with preference for setext.
See `markdown-insert-header-dwim' for details, including how ARG is handled."
(interactive "*P")
(markdown-insert-header-dwim arg t))