From 75a36bde59fcdbc7c44c69c1e9a90e09d24c9101 Mon Sep 17 00:00:00 2001 From: Philip Kaludercic Date: Sun, 3 May 2026 19:38:25 +0200 Subject: [PATCH] Add for to 'html-tag-alist' and 'html-tag-help' * lisp/textmodes/sgml-mode.el (html-tag-alist): Add very basic skeleton. (html-tag-help): Add description. --- lisp/textmodes/sgml-mode.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/textmodes/sgml-mode.el b/lisp/textmodes/sgml-mode.el index 1201651dd72..be14462d1a0 100644 --- a/lisp/textmodes/sgml-mode.el +++ b/lisp/textmodes/sgml-mode.el @@ -2112,6 +2112,7 @@ This defaults to `sgml-quick-keys', which see." ("param" t ("name") ("value") ("valuetype" ("data") ("ref") ("object")) ("type")) ("person") ;; Tag for person's name tag deprecated in HTML 3.2 + ("picture" \n) ;TODO: suggest inserting and ("pre" \n) ("progress" nil ("value") ("max")) ("q" nil ("cite")) @@ -2261,6 +2262,7 @@ This defaults to `sgml-quick-keys', which see." ("panel" . "Floating panel") ("param" . "Parameters for an object") ("person" . "Person's name") + ("picture" . "Picture") ("pre" . "Preformatted fixed width text") ("progress" . "Completion progress of a task") ("q" . "Quotation")