PluginProbe
Code Block Pro – Beautiful Syntax Highlighting / 1.27.6
Code Block Pro – Beautiful Syntax Highlighting v1.27.6
1.27.1 1.27.2 1.27.3 1.27.4 1.27.5 1.27.6 1.27.7 1.28.0 1.3.0 1.4.0 1.5.0 1.5.1 1.5.2 1.6.0 1.7.0 1.8.0 1.9.0 1.9.1 1.9.2 1.9.3 trunk 1.1.0 1.10.0 1.11.0 1.11.1 All 63 releases
code-block-pro / build / shiki / samples / jsonnet.sample

jsonnet.sample in Code Block Pro – Beautiful Syntax Highlighting 1.27.6, at build/shiki/samples/jsonnet.sample

34 lines 903 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* A C-style comment. */
2 # A Python-style comment.
3 {
4 cocktails: {
5 // Ingredient quantities are in fl oz.
6 'Tom Collins': {
7 ingredients: [
8 { kind: "Farmer's Gin", qty: 1.5 },
9 { kind: 'Lemon', qty: 1 },
10 { kind: 'Simple Syrup', qty: 0.5 },
11 { kind: 'Soda', qty: 2 },
12 { kind: 'Angostura', qty: 'dash' },
13 ],
14 garnish: 'Maraschino Cherry',
15 served: 'Tall',
16 description: |||
17 The Tom Collins is essentially gin and
18 lemonade. The bitters add complexity.
19 |||,
20 },
21 Manhattan: {
22 ingredients: [
23 { kind: 'Rye', qty: 2.5 },
24 { kind: 'Sweet Red Vermouth', qty: 1 },
25 { kind: 'Angostura', qty: 'dash' },
26 ],
27 garnish: 'Maraschino Cherry',
28 served: 'Straight Up',
29 description: @'A clear \ red drink.',
30 },
31 },
32 }
33 # From https://jsonnet.org/learning/tutorial.html
34