Function: markdown-live-preview-switch-to-output

markdown-live-preview-switch-to-output is an interactive and byte-compiled function defined in markdown-mode.el.

Signature

(markdown-live-preview-switch-to-output)

Documentation

Turn on markdown-live-preview-mode(var)/markdown-live-preview-mode(fun) and switch to output buffer.

The output buffer is opened in another window.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-live-preview-switch-to-output ()
  "Turn on `markdown-live-preview-mode' and switch to output buffer.
The output buffer is opened in another window."
  (interactive)
  (if markdown-live-preview-mode
      (markdown-display-buffer-other-window (markdown-live-preview-export)))
  (markdown-live-preview-mode))