Variable: html-ts-mode--font-lock-settings

html-ts-mode--font-lock-settings is a variable defined in html-ts-mode.el.gz.

Value

((((comment) @font-lock-comment-face) t comment t nil html)
 (("doctype" @font-lock-keyword-face) t keyword t nil html)
 (((tag_name) @font-lock-function-name-face) t definition t nil html)
 (((quoted_attribute_value) @font-lock-string-face) t string t nil
  html)
 (((attribute_name) @font-lock-variable-name-face) t property t nil
  html))

Documentation

Tree-sitter font-lock settings for html-ts-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/html-ts-mode.el.gz
(defvar html-ts-mode--font-lock-settings
  (treesit-font-lock-rules
   :language 'html
   :override t
   :feature 'comment
   `((comment) @font-lock-comment-face)
   :language 'html
   :override t
   :feature 'keyword
   `("doctype" @font-lock-keyword-face)
   :language 'html
   :override t
   :feature 'definition
   `((tag_name) @font-lock-function-name-face)
   :language 'html
   :override t
   :feature 'string
   `((quoted_attribute_value) @font-lock-string-face)
   :language 'html
   :override t
   :feature 'property
   `((attribute_name) @font-lock-variable-name-face))
  "Tree-sitter font-lock settings for `html-ts-mode'.")