Variable: org-html-protect-char-alist

org-html-protect-char-alist is a variable defined in ox-html.el.gz.

Value

(("&" . "&amp;") ("<" . "&lt;") (">" . "&gt;"))

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
  '(("&" . "&amp;")
    ("<" . "&lt;")
    (">" . "&gt;"))
  "Alist of characters to be converted by `org-html-encode-plain-text'.")