Variable: html2text-remove-tag-list

html2text-remove-tag-list is a variable defined in html2text.el.gz.

Value

("html" "body" "p" "img" "dir" "head" "div" "br" "font" "title" "meta")

Documentation

A list of removable tags.

This is a list of tags which should be removed, without any formatting. Note that tags in the list are presented *without* any "<" or ">". All occurrences of a tag appearing in this list are removed, irrespective of whether it is a closing or opening tag, or if the tag has additional attributes. The deletion is done by the function html2text-remove-tags.

For instance the text:

"Here comes something <font size"+3" face="Helvetica"> big </font>."

will be reduced to:

"Here comes something big."

If this list contains the element "font".

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/html2text.el.gz
(defvar html2text-remove-tag-list
  '("html" "body" "p" "img" "dir" "head" "div" "br" "font" "title" "meta")
  "A list of removable tags.

This is a list of tags which should be removed, without any
formatting.  Note that tags in the list are presented *without*
any \"<\" or \">\".  All occurrences of a tag appearing in this
list are removed, irrespective of whether it is a closing or
opening tag, or if the tag has additional attributes.  The
deletion is done by the function `html2text-remove-tags'.

For instance the text:

\"Here comes something <font size\"+3\" face=\"Helvetica\"> big </font>.\"

will be reduced to:

\"Here comes something big.\"

If this list contains the element \"font\".")