Function: markdown-other-window

markdown-other-window is an interactive and byte-compiled function defined in markdown-mode.el.

Signature

(markdown-other-window &optional OUTPUT-BUFFER-NAME)

Documentation

Run markdown-command on current buffer and display in other window.

When OUTPUT-BUFFER-NAME is given, insert the output in the buffer with that name.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-other-window (&optional output-buffer-name)
  "Run `markdown-command' on current buffer and display in other window.
When OUTPUT-BUFFER-NAME is given, insert the output in the buffer with
that name."
  (interactive)
  (markdown-display-buffer-other-window
   (markdown-standalone output-buffer-name)))