Function: org-toggle-pretty-entities

org-toggle-pretty-entities is an interactive and byte-compiled function defined in org.el.gz.

Signature

(org-toggle-pretty-entities)

Documentation

Toggle the composition display of entities as UTF8 characters.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-toggle-pretty-entities ()
  "Toggle the composition display of entities as UTF8 characters."
  (interactive)
  (setq-local org-pretty-entities (not org-pretty-entities))
  (org-restart-font-lock)
  (if org-pretty-entities
      (message "Entities are now displayed as UTF8 characters")
    (save-restriction
      (widen)
      (decompose-region (point-min) (point-max))
      (message "Entities are now displayed as plain text"))))