predefined entities for XML
Brought to you by:
lenst
(defun sgml-make-entity-table ()
(if sgml-xml-p
(sgml-make-xml-entity-table)
(list nil)))
(defun sgml-make-xml-entity-table ()
"Includes all predefined entities from section 4.6 of
XML spec."
'(nil ("amp" text "&" nil)
("lt" text "<" nil)
("gt" text ">" nil)
("quot" text """ nil)
("apos" text "'" nil)))