Variable: sgml-tag-help

sgml-tag-help is a customizable variable defined in sgml-mode.el.gz.

Value

(("!" . "Empty declaration for comment")
 ("![" . "Embed declarations with parser directive")
 ("!attlist" . "Tag attributes declaration")
 ("!doctype" . "Document type (DTD) declaration")
 ("!element" . "Tag declaration")
 ("!entity" . "Entity (macro) declaration"))

Documentation

Alist of tag name and short description.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/sgml-mode.el.gz
(defcustom sgml-tag-help
  '(("!" . "Empty declaration for comment")
    ("![" . "Embed declarations with parser directive")
    ("!attlist" . "Tag attributes declaration")
    ("!doctype" . "Document type (DTD) declaration")
    ("!element" . "Tag declaration")
    ("!entity" . "Entity (macro) declaration"))
  "Alist of tag name and short description."
  :type '(repeat (cons (string :tag "Tag Name")
		       (string :tag "Description"))))