Function: org-ascii-publish-to-latin1

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

Signature

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

Documentation

Publish an Org file to Latin-1.

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

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