Variable: html2text-replace-list
html2text-replace-list is a variable defined in html2text.el.gz.
Value
Large value
(("´" . "`")
("&" . "&")
("'" . "'")
("¦" . "|")
("¢" . "c")
("ˆ" . "^")
("©" . "(C)")
("¤" . "(#)")
("°" . "degree")
("÷" . "/")
("€" . "e")
("½" . "1/2")
(">" . ">")
("¿" . "?")
("«" . "<<")
("&ldquo" . "\"")
("‹" . "(")
("‘" . "`")
("<" . "<")
("—" . "--")
(" " . " ")
("–" . "-")
("‰" . "%%")
("±" . "+-")
("£" . "£")
(""" . "\"")
("»" . ">>")
("&rdquo" . "\"")
("®" . "(R)")
("›" . ")")
("’" . "'")
("§" . "§")
("¹" . "^1")
("²" . "^2")
("³" . "^3")
("˜" . "~"))
Documentation
The map of entity to text.
This is an alist were each element is a dotted pair consisting of an
old string, and a replacement string. This replacement is done by the
function html2text-substitute which basically performs a
replace-string operation for every element in the list. This is
completely verbatim - without any use of REGEXP.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/html2text.el.gz
(defvar html2text-replace-list
'(("´" . "`")
("&" . "&")
("'" . "'")
("¦" . "|")
("¢" . "c")
("ˆ" . "^")
("©" . "(C)")
("¤" . "(#)")
("°" . "degree")
("÷" . "/")
("€" . "e")
("½" . "1/2")
(">" . ">")
("¿" . "?")
("«" . "<<")
("&ldquo" . "\"")
("‹" . "(")
("‘" . "`")
("<" . "<")
("—" . "--")
(" " . " ")
("–" . "-")
("‰" . "%%")
("±" . "+-")
("£" . "£")
(""" . "\"")
("»" . ">>")
("&rdquo" . "\"")
("®" . "(R)")
("›" . ")")
("’" . "'")
("§" . "§")
("¹" . "^1")
("²" . "^2")
("³" . "^3")
("˜" . "~"))
"The map of entity to text.
This is an alist were each element is a dotted pair consisting of an
old string, and a replacement string. This replacement is done by the
function `html2text-substitute' which basically performs a
`replace-string' operation for every element in the list. This is
completely verbatim - without any use of REGEXP.")