Function: org-ascii-publish-to-utf8
org-ascii-publish-to-utf8 is an autoloaded and byte-compiled function
defined in ox-ascii.el.gz.
Signature
(org-ascii-publish-to-utf8 PLIST FILENAME PUB-DIR)
Documentation
Publish an org file to UTF-8.
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-ascii.el.gz
;;;###autoload
(defun org-ascii-publish-to-utf8 (plist filename pub-dir)
"Publish an org file to UTF-8.
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
'ascii filename ".txt" `(:ascii-charset utf-8 ,@plist) pub-dir))