1Description="JSON"
2
3Categories = {"config", "protocol"}
4
5
6Keywords={
7  { Id=1,
8    Regex=[[ \{|\} ]],
9  },
10  { Id=2,
11    Regex=[=[ \[|\] ]=],
12  },
13  { Id=3,
14    Regex=[[ (\"[\w\.\-\d]+?\")\: ]],
15  },
16  { Id=4,
17    Regex=[[ (\"\$[\w\.\-\d\$]+?\")\: ]],
18  }
19
20}
21
22Strings = {
23  Delimiter=[["]]
24}
25
26Comments = {
27  { Block=true,
28    Nested=false,
29    Delimiter = { [[\/\*]], [[\*\/]] }
30  },
31  {
32    Block=false,
33    Delimiter = { [[//]] }
34  }
35}
36
37IgnoreCase=false
38
39PreProcessor = {
40  Prefix=[[#]],
41  Continuation="\\",
42}
43
44Operators=[[\(|\)|\,|\;|\.|\:|\&|<|>|\!|=|\/|\*|\%|\+|\-|\~|\||\^]]
45