sgml-font-lock-keywords-2
sgml-font-lock-keywords-2 is a variable defined in `
sgml-mode.el
'.
Its value is shown
below.
- This variable may be risky if used as a file-local variable.
Documentation:
Not documented as a variable.
Value:
(("<\\([!?][_:[:alpha:]][-_.:[:alnum:]]*\\)" 1 font-lock-keyword-face)
("?\\([_[:alpha:]][-_.[:alnum:]]*\\)\\(?::\\([_:[:alpha:]][-_.:[:alnum:]]*\\)\\)?"
(1
(if
(match-end 2)
sgml-namespace-face font-lock-function-name-face))
(2 font-lock-function-name-face nil t))
("\\(?:^\\|[ ]\\)\\([_[:alpha:]][-_.[:alnum:]]*\\)\\(?::\\([_:[:alpha:]][-_.:[:alnum:]]*\\)\\)?=[\"']"
(1
(if
(match-end 2)
sgml-namespace-face font-lock-variable-name-face))
(2 font-lock-variable-name-face nil t))
("[&%][_:[:alpha:]][-_.:[:alnum:]]*;?" . font-lock-variable-name-face)
(eval cons
(concat "<"
(regexp-opt
(mapcar 'car sgml-tag-face-alist)
t)
"\\([ ][^>]*\\)?>\\([^<]+\\)\\1>")
'(3
(cdr
(assoc-string
(match-string 1)
sgml-tag-face-alist t))
prepend)))