emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

html2text-remove-tags documentation


From: Deniz Dogan
Subject: html2text-remove-tags documentation
Date: Sun, 24 Jul 2011 11:11:05 +0200
User-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:5.0) Gecko/20110624 Thunderbird/5.0

This is the definition of `html2text-remove-tags' in lisp/gnus/html2text.el:

(defun html2text-remove-tags (tag-list)
  "Removes the tags listed in the list `html2text-remove-tag-list'.
See the documentation for that variable."
  (interactive)
  (dolist (tag tag-list)
    (goto-char (point-min))
(while (re-search-forward (format "\\(</?%s[^>]*>\\)" tag) (point-max) t)
      (delete-region (match-beginning 0) (match-end 0)))))

As you can see, the documentation is clearly incorrect. The function removes the tags in TAG-LIST, not `html2text-remove-tag-list'. Furthermore, the function is interactive which doesn't make sense the way it's written now.

So what should we do about this function?

I suggest we make TAG-LIST optional and defaulted to `html2text-remove-tag-list', i.e., (or tag-list html2text-remove-tag-list). If called interactively, TAG-LIST should be a space-or-comma-separated string of tags to remove.

Such a definition could be:

(defun html2text-remove-tags (&optional tag-list)
  "Remove the tags in TAG-LIST.
If TAG-LIST is nil, use `html2text-remove-tag-list'.
If called interactively, "
  (interactive "MTags to remove: ")
  (setq tag-list (if (called-interactively-p 'any)
                     (split-string tag-list "[ ,]" t)
                   (or tag-list html2text-remove-tag-list)))
  (dolist (tag tag-list)
    (goto-char (point-min))
(while (re-search-forward (format "\\(</?%s[^>]*>\\)" tag) (point-max) t)
      (delete-region (match-beginning 0) (match-end 0)))))

This definition would not break any existing code as far as I can tell and both fixes and adds functionality.

What do you think?

Deniz



reply via email to

[Prev in Thread] Current Thread [Next in Thread]