Function: org-ascii-entity

org-ascii-entity is a byte-compiled function defined in ox-ascii.el.gz.

Signature

(org-ascii-entity ENTITY CONTENTS INFO)

Documentation

Transcode an ENTITY object from Org to ASCII.

CONTENTS are the definition itself. INFO is a plist holding contextual information.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-ascii.el.gz
;;;; Entity

(defun org-ascii-entity (entity _contents info)
  "Transcode an ENTITY object from Org to ASCII.
CONTENTS are the definition itself.  INFO is a plist holding
contextual information."
  (org-element-property
   (intern (concat ":" (symbol-name (plist-get info :ascii-charset))))
   entity))