support colon sign as normal char
This commit is contained in:
parent
39c2cf6c72
commit
a89fa766ea
2 changed files with 165 additions and 159 deletions
|
|
@ -87,7 +87,7 @@ quote = '"' / "'"
|
|||
// ------------------ steps and cycles ---------------------------
|
||||
|
||||
// single step definition (e.g bd)
|
||||
step_char = [0-9a-zA-Z~] / "-" / "#" / "." / "^" / "_"
|
||||
step_char = [0-9a-zA-Z~] / "-" / "#" / "." / "^" / "_" / ":"
|
||||
step = ws chars:step_char+ ws { return chars.join("") }
|
||||
|
||||
// define a sub cycle e.g. [1 2, 3 [4]]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue