Variable: org-html-protect-char-alist
org-html-protect-char-alist is a variable defined in ox-html.el.gz.
Value
(("&" . "&")
("<" . "<")
(">" . ">"))
Documentation
Alist of characters to be converted by org-html-encode-plain-text.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
;;;; Plain Text
(defvar org-html-protect-char-alist
'(("&" . "&")
("<" . "<")
(">" . ">"))
"Alist of characters to be converted by `org-html-encode-plain-text'.")