Variable: org-export-with-entities

org-export-with-entities is a customizable variable defined in ox.el.gz.

Value

t

Documentation

Non-nil means interpret entities when exporting.

For example, HTML export converts \alpha to α and \AA to
Å.

For a list of supported names, see the constant org-entities and the user option org-entities-user.

This option can also be set with the OPTIONS keyword, e.g. "e:nil".

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defcustom org-export-with-entities t
  "Non-nil means interpret entities when exporting.

For example, HTML export converts \\alpha to α and \\AA to
Å.

For a list of supported names, see the constant `org-entities'
and the user option `org-entities-user'.

This option can also be set with the OPTIONS keyword,
e.g. \"e:nil\"."
  :group 'org-export-general
  :type 'boolean
  :safe #'booleanp)