Function: org-md-publish-to-md

org-md-publish-to-md is an autoloaded and byte-compiled function defined in ox-md.el.gz.

Signature

(org-md-publish-to-md PLIST FILENAME PUB-DIR)

Documentation

Publish an org file to Markdown.

FILENAME is the filename of the Org file to be published. PLIST is the property list for the given project. PUB-DIR is the publishing directory.

Return output file name.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-md.el.gz
;;;###autoload
(defun org-md-publish-to-md (plist filename pub-dir)
  "Publish an org file to Markdown.

FILENAME is the filename of the Org file to be published.  PLIST
is the property list for the given project.  PUB-DIR is the
publishing directory.

Return output file name."
  (org-publish-org-to 'md filename ".md" plist pub-dir))