"A" is also used for links, just like "a", it seems like.
authorLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Wed, 1 Sep 2010 16:55:22 +0000 (18:55 +0200)
committerLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Wed, 1 Sep 2010 16:55:22 +0000 (18:55 +0200)
lisp/ChangeLog
lisp/gnus-html.el

index d85bb8a..63f9a31 100644 (file)
@@ -1,5 +1,8 @@
 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
+       like "a", it seems like.
+
        * nnwfm.el: Removed.
 
        * nnlistserv.el: Removed.
index 9acbfa3..d4cbb78 100644 (file)
@@ -151,7 +151,8 @@ fit these criteria."
                              (point-marker))
                        images)))))))
        ;; Add a link.
-       ((equal tag "a")
+       ((or (equal tag "a")
+           (equal tag "A"))
        (when (string-match "href=\"\\([^\"]+\\)" parameters)
          (setq url (match-string 1 parameters))
           (gnus-message 8 "Fetching link URL %s" url)