Function: org-ascii-publish-to-ascii

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

Signature

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

Documentation

Publish an Org file to ASCII.

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-ascii (plist filename pub-dir)
  "Publish an Org file to ASCII.

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 ascii ,@plist) pub-dir))