27 lines
430 B
Scheme
27 lines
430 B
Scheme
; Forked from https://github.com/TheLeoP/tree-sitter-mustache
|
|
; Copyright (c) 2024-2025 TheLeoP
|
|
; Licensed under the MIT license.
|
|
; Modifications Copyright 2026 Oscar Wallberg, Apache-2.0
|
|
|
|
[
|
|
(start_delimiter)
|
|
(end_delimiter)
|
|
"{"
|
|
"}"
|
|
] @punctuation.bracket
|
|
|
|
(identifier) @variable
|
|
|
|
(partial_content) @module
|
|
|
|
"." @punctuation.delimiter
|
|
|
|
[
|
|
"#"
|
|
"/"
|
|
"^"
|
|
">"
|
|
] @punctuation.special
|
|
|
|
(comment_statement) @comment @spell
|