Merge branch 'jgkamat-master'

This commit is contained in:
Lars Tveito 2016-09-06 19:35:44 +02:00
commit 8fa2c82e4c

View File

@ -28,8 +28,7 @@
;;; Code:
(require 'ox-md)
(require 'ox-publish)
;;; User-Configurable Variables
@ -355,6 +354,15 @@ Return output file's name."
(let ((outfile (org-export-output-file-name ".md" subtreep)))
(org-export-to-file 'gfm outfile async subtreep visible-only)))
;;;###autoload
(defun org-gfm-publish-to-gfm (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 'gfm filename ".md" plist pub-dir))
(provide 'ox-gfm)
;;; ox-gfm.el ends here