Variable: org-ascii-charset

org-ascii-charset is a customizable variable defined in ox-ascii.el.gz.

Value

ascii

Documentation

The charset allowed to represent various elements and objects.

Possible values are:
ascii Only use plain ASCII characters
latin1 Include Latin-1 characters
utf-8 Use all UTF-8 characters

This variable was added, or its default value changed, in Org version
8.0.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-ascii.el.gz
(defcustom org-ascii-charset 'ascii
  "The charset allowed to represent various elements and objects.
Possible values are:
`ascii'    Only use plain ASCII characters
`latin1'   Include Latin-1 characters
`utf-8'    Use all UTF-8 characters"
  :group 'org-export-ascii
  :version "24.4"
  :package-version '(Org . "8.0")
  :type '(choice
	  (const :tag "ASCII" ascii)
	  (const :tag "Latin-1" latin1)
	  (const :tag "UTF-8" utf-8)))