]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't insert subscript on a newline
authorRahguzar <rahguzar@zohomail.eu>
Wed, 25 Oct 2023 13:20:29 +0000 (15:20 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 25 Nov 2023 10:56:48 +0000 (12:56 +0200)
* lisp/net/shr.el (shr-tag-sub): Don't insert subscript on a
newline.  (Bug#66676)

lisp/net/shr.el

index 71c16ebd126651b976e8244e3bfe46ee99053413..9f030b4c7430e1c92abf88ec95afc01bdf25a351 100644 (file)
@@ -1451,6 +1451,13 @@ ones, in case fg and bg are nil."
     (add-face-text-property start (point) 'shr-sup)))
 
 (defun shr-tag-sub (dom)
+  ;; Why would a subscript be at the beginning of a line?  It does
+  ;; happen sometimes because of a <br> tag and the intent seems to be
+  ;; alignment of subscript and superscript but I don't think that is
+  ;; possible in Emacs.  So we remove the newline in that case.
+  (when (bolp)
+    (forward-char -1)
+    (delete-char 1))
   (let ((start (point)))
     (shr-generic dom)
     (put-text-property start (point) 'display `(raise ,shr-sub-raise-factor))