unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#36475: [PATCH] Handle 'abbr' and 'acronym' tags in shr.el
@ 2019-07-02 14:06 Nicholas Drozd
  2019-07-02 18:26 ` Michael Albinus
  2019-07-04 19:40 ` Basil L. Contovounesios
  0 siblings, 2 replies; 9+ messages in thread
From: Nicholas Drozd @ 2019-07-02 14:06 UTC (permalink / raw)
  To: 36475

[-- Attachment #1: Type: text/plain, Size: 570 bytes --]

I came across some `abbr` tags in the wild: check out the first
paragraph of http://mindprod.com/jgloss/unmainobfuscation.html. EWW
doesn't handle those, so here is a patch for that.

My understanding is that there is also an `acronym` tag which has been
deprecated in favor of `abbr`. I figured we might as well cover that
one too just in case.

I picked the `diary` face for abbreviations, but that choice didn't
have a lot of thought put into it. Whoever commits can choose
something else.

Let's try to get this merged <abbr title="as soon as possible">ASAP</abbr>.

[-- Attachment #2: 0001-Handle-abbr-and-acronym-tags-in-shr.el.patch --]
[-- Type: text/x-patch, Size: 1506 bytes --]

From a720473ad1001d3a72f9b3f3155f5488726cabde Mon Sep 17 00:00:00 2001
From: Nick Drozd <nicholasdrozd@gmail.com>
Date: Mon, 1 Jul 2019 23:46:10 -0500
Subject: [PATCH] Handle 'abbr' and 'acronym' tags in shr.el

* lisp/net/shr.el: Add 'abbr' and 'acronym' tag handling.
* etc/NEWS: Announce change in shr behavrior.
---
 etc/NEWS        |  3 +++
 lisp/net/shr.el | 15 +++++++++++++++
 2 files changed, 18 insertions(+)

diff --git a/etc/NEWS b/etc/NEWS
index abbece374a..464dae2454 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -989,6 +989,9 @@ This attribute is meant to tell screen readers to ignore a tag.
 ---
 *** The <code ...> tag is now handled.
 
+---
+*** The <abbr ...> and <acronym ...> tags are now handled.
+
 ** Htmlfontify
 
 *** The functions 'hfy-color', 'hfy-color-vals' and
diff --git a/lisp/net/shr.el b/lisp/net/shr.el
index 7fdb3212d4..3af3db637a 100644
--- a/lisp/net/shr.el
+++ b/lisp/net/shr.el
@@ -1470,6 +1470,21 @@ shr-tag-a
     (when url
       (shr-urlify (or shr-start start) (shr-expand-url url) title))))
 
+(defun shr-tag-abbr (dom)
+  (let ((title (dom-attr dom 'title))
+	(start (point)))
+    (shr-generic dom)
+    (shr-add-font start (point) 'diary)
+    (add-text-properties
+     start (point)
+     (list
+      'help-echo title
+      'mouse-face 'highlight))))
+
+(defun shr-tag-acronym (dom)
+  ;; `acronym' is deprecated in favor of `abbr'.
+  (shr-tag-abbr dom))
+
 (defun shr-tag-object (dom)
   (unless shr-inhibit-images
     (let ((start (point))
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2019-07-06 12:02 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-02 14:06 bug#36475: [PATCH] Handle 'abbr' and 'acronym' tags in shr.el Nicholas Drozd
2019-07-02 18:26 ` Michael Albinus
2019-07-02 23:11   ` Nicholas Drozd
2019-07-03  6:42     ` Michael Albinus
2019-07-03 20:17       ` Nicholas Drozd
2019-07-04 19:40 ` Basil L. Contovounesios
2019-07-05 13:03   ` Lars Ingebrigtsen
2019-07-05 16:36   ` Nicholas Drozd
2019-07-06 12:02     ` Lars Ingebrigtsen

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).