Files
Basalt2/node_modules/shiki/samples/hjson.sample
Robert Jelic b0a4a6da9c Vitepress
2025-02-10 06:53:23 +01:00

26 lines
445 B
Plaintext

{
// use #, // or /**/ comments,
// omit quotes for keys
key: 1
// omit quotes for strings
contains: everything on this line
// omit commas at the end of a line
cool: {
foo: 1
bar: 2
}
// allow trailing commas
list: [
1,
2,
]
// and use multiline strings
realist:
'''
My half empty glass,
I will fill your empty half.
Now you are half full.
'''
// From: https://hjson.github.io/
}