]> git.eshelyaron.com Git - emacs.git/commitdiff
Prefer 'strong' and 'em' to 'b' and 'i' in html-mode
authorStefan Kangas <stefankangas@gmail.com>
Wed, 6 May 2020 01:30:20 +0000 (03:30 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Wed, 6 May 2020 01:30:20 +0000 (03:30 +0200)
* lisp/textmodes/sgml-mode.el (html-face-tag-alist): Prefer inserting
'strong' and 'em' tags to 'b' and 'i' in html-mode.  (Bug#41031)
* lisp/textmodes/sgml-mode.el (html-mode): Update docstring to do the
same.

lisp/textmodes/sgml-mode.el

index 9b29b844d01892f0425586c82c736e0f670e5b40..b5ff6a69671c0c7d889d1aa37fa98d09ed03af6f 100644 (file)
@@ -1852,8 +1852,8 @@ This takes effect when first loading the library.")
   "Keymap for commands for use in HTML mode.")
 
 (defvar html-face-tag-alist
-  '((bold . "b")
-    (italic . "i")
+  '((bold . "strong")
+    (italic . "em")
     (underline . "u")
     (mode-line . "rev"))
   "Value of `sgml-face-tag-alist' for HTML mode.")
@@ -2363,7 +2363,7 @@ have <h1>Very Major Headlines</h1> through <h6>Very Minor Headlines</h6>
 
 <p>Paragraphs only need an opening tag.  Line breaks and multiple spaces are
 ignored unless the text is <pre>preformatted.</pre>  Text can be marked as
-<b>bold</b>, <i>italic</i> or <u>underlined</u> using the normal M-o or
+<strong>bold</strong>, <em>italic</em> or <u>underlined</u> using the normal M-o or
 Edit/Text Properties/Face commands.
 
 Pages can have <a name=\"SOMENAME\">named points</a> and can link other points