diff --git a/ox-gfm.el b/ox-gfm.el index 530d631..8017d78 100644 --- a/ox-gfm.el +++ b/ox-gfm.el @@ -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