| 1 |
{ |
| 2 |
// use #, // or /**/ comments, |
| 3 |
// omit quotes for keys |
| 4 |
key: 1 |
| 5 |
// omit quotes for strings |
| 6 |
contains: everything on this line |
| 7 |
// omit commas at the end of a line |
| 8 |
cool: { |
| 9 |
foo: 1 |
| 10 |
bar: 2 |
| 11 |
} |
| 12 |
// allow trailing commas |
| 13 |
list: [ |
| 14 |
1, |
| 15 |
2, |
| 16 |
] |
| 17 |
// and use multiline strings |
| 18 |
realist: |
| 19 |
''' |
| 20 |
My half empty glass, |
| 21 |
I will fill your empty half. |
| 22 |
Now you are half full. |
| 23 |
''' |
| 24 |
// From: https://hjson.github.io/ |
| 25 |
} |
| 26 |
|