kjelsrud.dev/node_modules/shiki/samples/hjson.sample

26 lines
445 B
Text
Raw Normal View History

2023-07-19 21:31:30 +02:00
{
// 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/
}