Browse Source

ox-html.el (org-html-protect-char-alist): Make a defvar

* ox-html.el (org-html-protect-char-alist): Make a defvar.
Bastien Guerry 10 years ago
parent
commit
ac4b11e565
1 changed files with 2 additions and 5 deletions
  1. 2 5
      lisp/ox-html.el

+ 2 - 5
lisp/ox-html.el

@@ -790,14 +790,11 @@ link's path."
 
 ;;;; Plain Text
 
-(defcustom org-html-protect-char-alist
+(defvar org-html-protect-char-alist
   '(("&" . "&")
     ("<" . "&lt;")
     (">" . "&gt;"))
-  "Alist of characters to be converted by `org-html-protect'."
-  :group 'org-export-html
-  :type '(repeat (cons (string :tag "Character")
-		       (string :tag "HTML equivalent"))))
+  "Alist of characters to be converted by `org-html-protect'.")
 
 ;;;; Src Block