Variable: org-ascii-bullets

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

Value

((ascii 42 43 45) (latin1 167 182) (utf-8 9674))

Documentation

Bullet characters for headlines converted to lists in ASCII export.

Alist whose key is a symbol among ascii, latin1 and utf-8 and whose value is a list of characters.

The first character is used for the first level considered as low level, and so on. If there are more levels than characters given here, the list will be repeated.

Note that this variable doesn't affect plain lists representation.

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-bullets '((ascii ?* ?+ ?-)
			       (latin1 ?§ ?¶)
			       (utf-8 ?◊))
  "Bullet characters for headlines converted to lists in ASCII export.

Alist whose key is a symbol among `ascii', `latin1' and `utf-8'
and whose value is a list of characters.

The first character is used for the first level considered as low
level, and so on.  If there are more levels than characters given
here, the list will be repeated.

Note that this variable doesn't affect plain lists
representation."
  :group 'org-export-ascii
  :version "24.4"
  :package-version '(Org . "8.0")
  :type '(list
	  (cons :tag "Bullet characters for low level headlines"
		(const :tag "ASCII charset" ascii)
		(repeat character))
	  (cons :tag "Bullet characters for low level headlines"
		(const :tag "Latin-1 charset" latin1)
		(repeat character))
	  (cons :tag "Bullet characters for low level headlines"
		(const :tag "UTF-8 charset" utf-8)
		(repeat character))))