Function: org-ascii-convert-region-to-utf8

org-ascii-convert-region-to-utf8 is an autoloaded, interactive and byte-compiled function defined in ox-ascii.el.gz.

Signature

(org-ascii-convert-region-to-utf8)

Documentation

Assume region has Org syntax, and convert it to UTF-8.

Key Bindings

Aliases

org-export-region-to-utf8

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-ascii.el.gz
;;;###autoload
(defun org-ascii-convert-region-to-utf8 ()
  "Assume region has Org syntax, and convert it to UTF-8."
  (interactive)
  (let ((org-ascii-charset 'utf-8))
    (org-export-replace-region-by 'ascii)))