Variable: markdown-command
markdown-command is a customizable variable defined in
markdown-mode.el.
Value
"markdown"
Documentation
Command to run markdown.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defcustom markdown-command (let ((command (cl-loop for cmd in '("markdown" "pandoc" "markdown_py" "cmark" "cmark-gfm")
when (executable-find cmd)
return (file-name-nondirectory it))))
(or command "markdown"))
"Command to run markdown."
:group 'markdown
:type '(choice (string :tag "Shell command") (repeat (string)) function))