This commit is contained in:
mantou 2025-08-25 12:19:24 -04:00 committed by GitHub
commit ee87704b76
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 10 additions and 12 deletions

6
Cargo.lock generated
View file

@ -17194,8 +17194,7 @@ dependencies = [
[[package]]
name = "tree-sitter-css"
version = "0.23.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ad6489794d41350d12a7fbe520e5199f688618f43aace5443980d1ddcf1b29e"
source = "git+https://github.com/mantou132/tree-sitter-css?rev=62bb39a376ee8aa0ceb6cab27474b7c7136913b9#62bb39a376ee8aa0ceb6cab27474b7c7136913b9"
dependencies = [
"cc",
"tree-sitter-language",
@ -17280,8 +17279,7 @@ dependencies = [
[[package]]
name = "tree-sitter-html"
version = "0.23.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "261b708e5d92061ede329babaaa427b819329a9d427a1d710abb0f67bbef63ee"
source = "git+https://github.com/mantou132/tree-sitter-html?rev=755c2e2d664ecf6f663106544517bb578beba6a8#755c2e2d664ecf6f663106544517bb578beba6a8"
dependencies = [
"cc",
"tree-sitter-language",

View file

@ -625,7 +625,7 @@ tree-sitter = { version = "0.25.6", features = ["wasm"] }
tree-sitter-bash = "0.25.0"
tree-sitter-c = "0.23"
tree-sitter-cpp = "0.23"
tree-sitter-css = "0.23"
tree-sitter-css = { git = "https://github.com/mantou132/tree-sitter-css", rev = "62bb39a376ee8aa0ceb6cab27474b7c7136913b9" }
tree-sitter-diff = "0.1.0"
tree-sitter-elixir = "0.3"
tree-sitter-embedded-template = "0.23.0"
@ -634,7 +634,7 @@ tree-sitter-go = "0.23"
tree-sitter-go-mod = { git = "https://github.com/camdencheek/tree-sitter-go-mod", rev = "6efb59652d30e0e9cd5f3b3a669afd6f1a926d3c", package = "tree-sitter-gomod" }
tree-sitter-gowork = { git = "https://github.com/zed-industries/tree-sitter-go-work", rev = "acb0617bf7f4fda02c6217676cc64acb89536dc7" }
tree-sitter-heex = { git = "https://github.com/zed-industries/tree-sitter-heex", rev = "1dd45142fbb05562e35b2040c6129c9bca346592" }
tree-sitter-html = "0.23"
tree-sitter-html = { git = "https://github.com/mantou132/tree-sitter-html", rev = "755c2e2d664ecf6f663106544517bb578beba6a8" }
tree-sitter-jsdoc = "0.23"
tree-sitter-json = "0.24"
tree-sitter-md = { git = "https://github.com/tree-sitter-grammars/tree-sitter-markdown", rev = "9a23c1a96c0513d8fc6520972beedd419a973539" }

View file

@ -7,8 +7,8 @@
(call_expression
function: (identifier) @_name (#eq? @_name "css")
arguments: (template_string (string_fragment) @injection.content
(#set! injection.language "css"))
arguments: (template_string) @injection.content
(#set! injection.language "css")
)
(call_expression

View file

@ -11,8 +11,8 @@
(call_expression
function: (identifier) @_name (#eq? @_name "css")
arguments: (template_string (string_fragment) @injection.content
(#set! injection.language "css"))
arguments: (template_string) @injection.content
(#set! injection.language "css")
)
(call_expression

View file

@ -15,5 +15,5 @@ language = "HTML"
"CSS" = "css"
[grammars.html]
repository = "https://github.com/tree-sitter/tree-sitter-html"
commit = "bfa075d83c6b97cd48440b3829ab8d24a2319809"
repository = "https://github.com/mantou132/tree-sitter-html"
commit = "755c2e2d664ecf6f663106544517bb578beba6a8"