Function: org-md-convert-region-to-md
org-md-convert-region-to-md is an autoloaded, interactive and
byte-compiled function defined in ox-md.el.gz.
Signature
(org-md-convert-region-to-md)
Documentation
Assume the current region has Org syntax, and convert it to Markdown.
This can be used in any buffer. For example, you can write an itemized list in Org syntax in a Markdown buffer and use this command to convert it.
Key Bindings
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-md.el.gz
;;;###autoload
(defun org-md-convert-region-to-md ()
"Assume the current region has Org syntax, and convert it to Markdown.
This can be used in any buffer. For example, you can write an
itemized list in Org syntax in a Markdown buffer and use
this command to convert it."
(interactive)
(org-export-replace-region-by 'md))