Function: markdown-live-preview-re-export

markdown-live-preview-re-export is an interactive and byte-compiled function defined in markdown-mode.el.

Signature

(markdown-live-preview-re-export)

Documentation

Re-export the current live previewed content.

If the current buffer is a buffer displaying the exported version of a markdown-live-preview-mode(var)/markdown-live-preview-mode(fun) buffer, call markdown-live-preview-export and update this buffer's contents.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-live-preview-re-export ()
  "Re-export the current live previewed content.
If the current buffer is a buffer displaying the exported version of a
`markdown-live-preview-mode' buffer, call `markdown-live-preview-export' and
update this buffer's contents."
  (interactive)
  (when markdown-live-preview-source-buffer
    (with-current-buffer markdown-live-preview-source-buffer
      (markdown-live-preview-export))))