Function: org-ascii--translate
org-ascii--translate is a byte-compiled function defined in
ox-ascii.el.gz.
Signature
(org-ascii--translate S INFO)
Documentation
Translate string S according to specified language and charset.
INFO is a plist used as a communication channel.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-ascii.el.gz
(defun org-ascii--translate (s info)
"Translate string S according to specified language and charset.
INFO is a plist used as a communication channel."
(let ((charset (intern (format ":%s" (plist-get info :ascii-charset)))))
(org-export-translate s charset info)))