Function: org-odt--encode-plain-text
org-odt--encode-plain-text is a byte-compiled function defined in
ox-odt.el.gz.
Signature
(org-odt--encode-plain-text TEXT &optional NO-WHITESPACE-FILLING)
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
(defun org-odt--encode-plain-text (text &optional no-whitespace-filling)
(dolist (pair '(("&" . "&") ("<" . "<") (">" . ">")))
(setq text (replace-regexp-in-string (car pair) (cdr pair) text t t)))
(if no-whitespace-filling text
(org-odt--encode-tabs-and-spaces text)))