mirror of
https://github.com/pnx/tree-sitter-dotenv
synced 2026-06-16 01:54:56 +02:00
value token: "=" can be part of the value.
This commit is contained in:
parent
0512ebe640
commit
e7a97e884a
1 changed files with 1 additions and 1 deletions
|
|
@ -68,6 +68,6 @@ module.exports = grammar({
|
|||
|
||||
boolean: _ => token(choice('true', 'false')),
|
||||
|
||||
value: _ => token(prec(-1, /[^\#\=\s]+/)),
|
||||
value: _ => token(prec(-1, /[^\#\s]+/)),
|
||||
},
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue