feat: The queries for HTML and CSS are now baked in to the thor binary.

This commit is contained in:
Spencer Brower
2026-07-24 16:50:33 -04:00
parent 1992349520
commit 4f0b5c929d
6 changed files with 141 additions and 87 deletions
+13
View File
@@ -0,0 +1,13 @@
(tag_name) @tag
(erroneous_end_tag_name) @tag.error
(doctype) @constant
(attribute_name) @attribute
(attribute_value) @string
(comment) @comment
[
"<"
">"
"</"
"/>"
] @punctuation.bracket
+7
View File
@@ -0,0 +1,7 @@
((script_element
(raw_text) @injection.content)
(#set! injection.language "javascript"))
((style_element
(raw_text) @injection.content)
(#set! injection.language "css"))