fix(package): hemar: treesitter language name

This commit is contained in:
2025-11-27 19:13:07 +00:00
parent 345f94742e
commit 8048c4adff
2 changed files with 153 additions and 20 deletions

View File

@@ -1,5 +1,5 @@
module.exports = grammar({
name: "mytempl",
name: "hemar",
rules: {
source_file: $ => repeat($.element),
@@ -31,7 +31,7 @@ module.exports = grammar({
string: $ => choice(
// no whitespace, ], \, ., "
token(prec(-1, /[^] .\\"]+/)),
// " ... " with "" = escaped "
// " ... " with "" = escaped "
token(prec(-1, /"([^"]|"")*"/)),
),