@arborium/arborium 1.0.3 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/arborium.iife.js +2 -2
- package/dist/arborium.iife.js.map +1 -1
- package/dist/arborium.js +1066 -196
- package/dist/arborium.js.map +1 -1
- package/dist/loader.d.ts +2 -1
- package/dist/plugins-manifest.d.ts +14 -0
- package/dist/themes/base-rustdoc.css +429 -0
- package/dist/themes/rustdoc-ayu.css +72 -0
- package/dist/themes/rustdoc-dark.css +72 -0
- package/dist/themes/rustdoc-light.css +72 -0
- package/dist/types.d.ts +1 -1
- package/package.json +7 -6
- package/dist/themes/base-docsrs.css +0 -74
- package/dist/themes/docsrs-ayu.css +0 -72
- package/dist/themes/docsrs-dark.css +0 -72
- package/dist/themes/docsrs-light.css +0 -72
package/dist/arborium.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
class
|
|
2
|
-
constructor(
|
|
3
|
-
super(
|
|
1
|
+
class L extends Error {
|
|
2
|
+
constructor(s) {
|
|
3
|
+
super(s), this.name = "WasiError";
|
|
4
4
|
}
|
|
5
5
|
}
|
|
6
|
-
class
|
|
7
|
-
write(
|
|
6
|
+
class f {
|
|
7
|
+
write(s) {
|
|
8
8
|
return BigInt(0);
|
|
9
9
|
}
|
|
10
|
-
blockingWriteAndFlush(
|
|
10
|
+
blockingWriteAndFlush(s) {
|
|
11
11
|
}
|
|
12
12
|
blockingFlush() {
|
|
13
13
|
}
|
|
@@ -17,260 +17,1130 @@ class k {
|
|
|
17
17
|
subscribe() {
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
class
|
|
21
|
-
read(
|
|
20
|
+
class E {
|
|
21
|
+
read(s) {
|
|
22
22
|
return new Uint8Array(0);
|
|
23
23
|
}
|
|
24
|
-
blockingRead(
|
|
24
|
+
blockingRead(s) {
|
|
25
25
|
return new Uint8Array(0);
|
|
26
26
|
}
|
|
27
27
|
subscribe() {
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
|
-
function
|
|
31
|
-
const
|
|
30
|
+
function W() {
|
|
31
|
+
const a = new f(), s = new f(), m = new E(), r = {
|
|
32
32
|
getEnvironment: () => [],
|
|
33
33
|
getArguments: () => []
|
|
34
|
-
},
|
|
35
|
-
exit: (
|
|
36
|
-
if (
|
|
37
|
-
throw new
|
|
34
|
+
}, n = {
|
|
35
|
+
exit: (e) => {
|
|
36
|
+
if (e.tag === "err")
|
|
37
|
+
throw new L(`WASI exit with error: ${e.val}`);
|
|
38
38
|
}
|
|
39
|
-
},
|
|
39
|
+
}, o = { getStdin: () => m }, l = { getStdout: () => a }, u = { getStderr: () => s }, w = {
|
|
40
40
|
now: () => {
|
|
41
|
-
const
|
|
41
|
+
const e = Date.now();
|
|
42
42
|
return {
|
|
43
|
-
seconds: BigInt(Math.floor(
|
|
44
|
-
nanoseconds:
|
|
43
|
+
seconds: BigInt(Math.floor(e / 1e3)),
|
|
44
|
+
nanoseconds: e % 1e3 * 1e6
|
|
45
45
|
};
|
|
46
46
|
},
|
|
47
47
|
resolution: () => ({ seconds: BigInt(0), nanoseconds: 1e6 })
|
|
48
|
-
},
|
|
48
|
+
}, d = {
|
|
49
49
|
Descriptor: class {
|
|
50
50
|
},
|
|
51
51
|
DirectoryEntryStream: class {
|
|
52
52
|
},
|
|
53
53
|
filesystemErrorCode: () => null
|
|
54
|
-
},
|
|
54
|
+
}, t = {
|
|
55
55
|
getDirectories: () => []
|
|
56
|
-
},
|
|
57
|
-
getRandomBytes: (
|
|
58
|
-
const
|
|
59
|
-
return crypto.getRandomValues(
|
|
56
|
+
}, j = { Error: L }, i = { InputStream: E, OutputStream: f }, p = {
|
|
57
|
+
getRandomBytes: (e) => {
|
|
58
|
+
const g = new Uint8Array(Number(e));
|
|
59
|
+
return crypto.getRandomValues(g), g;
|
|
60
60
|
},
|
|
61
61
|
getRandomU64: () => {
|
|
62
|
-
const
|
|
63
|
-
return crypto.getRandomValues(
|
|
62
|
+
const e = new Uint8Array(8);
|
|
63
|
+
return crypto.getRandomValues(e), new DataView(e.buffer).getBigUint64(0, !0);
|
|
64
64
|
}
|
|
65
65
|
};
|
|
66
66
|
return {
|
|
67
67
|
// Unversioned (used by published grammars)
|
|
68
|
-
"wasi:cli/environment":
|
|
69
|
-
"wasi:cli/exit":
|
|
70
|
-
"wasi:cli/stdin":
|
|
71
|
-
"wasi:cli/stdout":
|
|
72
|
-
"wasi:cli/stderr":
|
|
68
|
+
"wasi:cli/environment": r,
|
|
69
|
+
"wasi:cli/exit": n,
|
|
70
|
+
"wasi:cli/stdin": o,
|
|
71
|
+
"wasi:cli/stdout": l,
|
|
72
|
+
"wasi:cli/stderr": u,
|
|
73
73
|
"wasi:clocks/wall-clock": w,
|
|
74
|
-
"wasi:filesystem/types":
|
|
75
|
-
"wasi:filesystem/preopens":
|
|
76
|
-
"wasi:io/error":
|
|
77
|
-
"wasi:io/streams":
|
|
78
|
-
"wasi:random/random":
|
|
74
|
+
"wasi:filesystem/types": d,
|
|
75
|
+
"wasi:filesystem/preopens": t,
|
|
76
|
+
"wasi:io/error": j,
|
|
77
|
+
"wasi:io/streams": i,
|
|
78
|
+
"wasi:random/random": p,
|
|
79
79
|
// Versioned @0.2.3 (for newer builds)
|
|
80
|
-
"wasi:cli/environment@0.2.3":
|
|
81
|
-
"wasi:cli/exit@0.2.3":
|
|
82
|
-
"wasi:cli/stdin@0.2.3":
|
|
83
|
-
"wasi:cli/stdout@0.2.3":
|
|
84
|
-
"wasi:cli/stderr@0.2.3":
|
|
80
|
+
"wasi:cli/environment@0.2.3": r,
|
|
81
|
+
"wasi:cli/exit@0.2.3": n,
|
|
82
|
+
"wasi:cli/stdin@0.2.3": o,
|
|
83
|
+
"wasi:cli/stdout@0.2.3": l,
|
|
84
|
+
"wasi:cli/stderr@0.2.3": u,
|
|
85
85
|
"wasi:clocks/wall-clock@0.2.3": w,
|
|
86
|
-
"wasi:filesystem/types@0.2.3":
|
|
87
|
-
"wasi:filesystem/preopens@0.2.3":
|
|
88
|
-
"wasi:io/error@0.2.3":
|
|
89
|
-
"wasi:io/streams@0.2.3":
|
|
90
|
-
"wasi:random/random@0.2.3":
|
|
86
|
+
"wasi:filesystem/types@0.2.3": d,
|
|
87
|
+
"wasi:filesystem/preopens@0.2.3": t,
|
|
88
|
+
"wasi:io/error@0.2.3": j,
|
|
89
|
+
"wasi:io/streams@0.2.3": i,
|
|
90
|
+
"wasi:random/random@0.2.3": p
|
|
91
91
|
};
|
|
92
92
|
}
|
|
93
|
-
const
|
|
93
|
+
const A = {
|
|
94
94
|
"arborium:grammar/types@0.1.0": {
|
|
95
95
|
// Types are just interfaces, nothing to export
|
|
96
96
|
}
|
|
97
|
-
},
|
|
97
|
+
}, U = {
|
|
98
|
+
entries: [
|
|
99
|
+
{
|
|
100
|
+
language: "ada",
|
|
101
|
+
package: "@arborium/ada",
|
|
102
|
+
version: "1.0.5",
|
|
103
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/ada@1.0.5/grammar.js",
|
|
104
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/ada@1.0.5/grammar.core.wasm",
|
|
105
|
+
local_js: "/langs/group-moss/ada/npm/grammar.js",
|
|
106
|
+
local_wasm: "/langs/group-moss/ada/npm/grammar.core.wasm"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
language: "agda",
|
|
110
|
+
package: "@arborium/agda",
|
|
111
|
+
version: "1.0.5",
|
|
112
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/agda@1.0.5/grammar.js",
|
|
113
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/agda@1.0.5/grammar.core.wasm",
|
|
114
|
+
local_js: "/langs/group-fern/agda/npm/grammar.js",
|
|
115
|
+
local_wasm: "/langs/group-fern/agda/npm/grammar.core.wasm"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
language: "asciidoc",
|
|
119
|
+
package: "@arborium/asciidoc",
|
|
120
|
+
version: "1.0.5",
|
|
121
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/asciidoc@1.0.5/grammar.js",
|
|
122
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/asciidoc@1.0.5/grammar.core.wasm",
|
|
123
|
+
local_js: "/langs/group-willow/asciidoc/npm/grammar.js",
|
|
124
|
+
local_wasm: "/langs/group-willow/asciidoc/npm/grammar.core.wasm"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
language: "asm",
|
|
128
|
+
package: "@arborium/asm",
|
|
129
|
+
version: "1.0.5",
|
|
130
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/asm@1.0.5/grammar.js",
|
|
131
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/asm@1.0.5/grammar.core.wasm",
|
|
132
|
+
local_js: "/langs/group-birch/asm/npm/grammar.js",
|
|
133
|
+
local_wasm: "/langs/group-birch/asm/npm/grammar.core.wasm"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
language: "awk",
|
|
137
|
+
package: "@arborium/awk",
|
|
138
|
+
version: "1.0.5",
|
|
139
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/awk@1.0.5/grammar.js",
|
|
140
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/awk@1.0.5/grammar.core.wasm",
|
|
141
|
+
local_js: "/langs/group-hazel/awk/npm/grammar.js",
|
|
142
|
+
local_wasm: "/langs/group-hazel/awk/npm/grammar.core.wasm"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
language: "bash",
|
|
146
|
+
package: "@arborium/bash",
|
|
147
|
+
version: "1.0.5",
|
|
148
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/bash@1.0.5/grammar.js",
|
|
149
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/bash@1.0.5/grammar.core.wasm",
|
|
150
|
+
local_js: "/langs/group-hazel/bash/npm/grammar.js",
|
|
151
|
+
local_wasm: "/langs/group-hazel/bash/npm/grammar.core.wasm"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
language: "batch",
|
|
155
|
+
package: "@arborium/batch",
|
|
156
|
+
version: "1.0.5",
|
|
157
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/batch@1.0.5/grammar.js",
|
|
158
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/batch@1.0.5/grammar.core.wasm",
|
|
159
|
+
local_js: "/langs/group-hazel/batch/npm/grammar.js",
|
|
160
|
+
local_wasm: "/langs/group-hazel/batch/npm/grammar.core.wasm"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
language: "c",
|
|
164
|
+
package: "@arborium/c",
|
|
165
|
+
version: "1.0.5",
|
|
166
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/c@1.0.5/grammar.js",
|
|
167
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/c@1.0.5/grammar.core.wasm",
|
|
168
|
+
local_js: "/langs/group-birch/c/npm/grammar.js",
|
|
169
|
+
local_wasm: "/langs/group-birch/c/npm/grammar.core.wasm"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
language: "c-sharp",
|
|
173
|
+
package: "@arborium/c-sharp",
|
|
174
|
+
version: "1.0.5",
|
|
175
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/c-sharp@1.0.5/grammar.js",
|
|
176
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/c-sharp@1.0.5/grammar.core.wasm",
|
|
177
|
+
local_js: "/langs/group-sage/c-sharp/npm/grammar.js",
|
|
178
|
+
local_wasm: "/langs/group-sage/c-sharp/npm/grammar.core.wasm"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
language: "caddy",
|
|
182
|
+
package: "@arborium/caddy",
|
|
183
|
+
version: "1.0.5",
|
|
184
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/caddy@1.0.5/grammar.js",
|
|
185
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/caddy@1.0.5/grammar.core.wasm",
|
|
186
|
+
local_js: "/langs/group-maple/caddy/npm/grammar.js",
|
|
187
|
+
local_wasm: "/langs/group-maple/caddy/npm/grammar.core.wasm"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
language: "capnp",
|
|
191
|
+
package: "@arborium/capnp",
|
|
192
|
+
version: "1.0.5",
|
|
193
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/capnp@1.0.5/grammar.js",
|
|
194
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/capnp@1.0.5/grammar.core.wasm",
|
|
195
|
+
local_js: "/langs/group-pine/capnp/npm/grammar.js",
|
|
196
|
+
local_wasm: "/langs/group-pine/capnp/npm/grammar.core.wasm"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
language: "clojure",
|
|
200
|
+
package: "@arborium/clojure",
|
|
201
|
+
version: "1.0.5",
|
|
202
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/clojure@1.0.5/grammar.js",
|
|
203
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/clojure@1.0.5/grammar.core.wasm",
|
|
204
|
+
local_js: "/langs/group-cedar/clojure/npm/grammar.js",
|
|
205
|
+
local_wasm: "/langs/group-cedar/clojure/npm/grammar.core.wasm"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
language: "cmake",
|
|
209
|
+
package: "@arborium/cmake",
|
|
210
|
+
version: "1.0.5",
|
|
211
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/cmake@1.0.5/grammar.js",
|
|
212
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/cmake@1.0.5/grammar.core.wasm",
|
|
213
|
+
local_js: "/langs/group-maple/cmake/npm/grammar.js",
|
|
214
|
+
local_wasm: "/langs/group-maple/cmake/npm/grammar.core.wasm"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
language: "commonlisp",
|
|
218
|
+
package: "@arborium/commonlisp",
|
|
219
|
+
version: "1.0.5",
|
|
220
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/commonlisp@1.0.5/grammar.js",
|
|
221
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/commonlisp@1.0.5/grammar.core.wasm",
|
|
222
|
+
local_js: "/langs/group-fern/commonlisp/npm/grammar.js",
|
|
223
|
+
local_wasm: "/langs/group-fern/commonlisp/npm/grammar.core.wasm"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
language: "cpp",
|
|
227
|
+
package: "@arborium/cpp",
|
|
228
|
+
version: "1.0.5",
|
|
229
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/cpp@1.0.5/grammar.js",
|
|
230
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/cpp@1.0.5/grammar.core.wasm",
|
|
231
|
+
local_js: "/langs/group-birch/cpp/npm/grammar.js",
|
|
232
|
+
local_wasm: "/langs/group-birch/cpp/npm/grammar.core.wasm"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
language: "css",
|
|
236
|
+
package: "@arborium/css",
|
|
237
|
+
version: "1.0.5",
|
|
238
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/css@1.0.5/grammar.js",
|
|
239
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/css@1.0.5/grammar.core.wasm",
|
|
240
|
+
local_js: "/langs/group-acorn/css/npm/grammar.js",
|
|
241
|
+
local_wasm: "/langs/group-acorn/css/npm/grammar.core.wasm"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
language: "d",
|
|
245
|
+
package: "@arborium/d",
|
|
246
|
+
version: "1.0.5",
|
|
247
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/d@1.0.5/grammar.js",
|
|
248
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/d@1.0.5/grammar.core.wasm",
|
|
249
|
+
local_js: "/langs/group-birch/d/npm/grammar.js",
|
|
250
|
+
local_wasm: "/langs/group-birch/d/npm/grammar.core.wasm"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
language: "dart",
|
|
254
|
+
package: "@arborium/dart",
|
|
255
|
+
version: "1.0.5",
|
|
256
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/dart@1.0.5/grammar.js",
|
|
257
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/dart@1.0.5/grammar.core.wasm",
|
|
258
|
+
local_js: "/langs/group-pine/dart/npm/grammar.js",
|
|
259
|
+
local_wasm: "/langs/group-pine/dart/npm/grammar.core.wasm"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
language: "devicetree",
|
|
263
|
+
package: "@arborium/devicetree",
|
|
264
|
+
version: "1.0.5",
|
|
265
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/devicetree@1.0.5/grammar.js",
|
|
266
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/devicetree@1.0.5/grammar.core.wasm",
|
|
267
|
+
local_js: "/langs/group-pine/devicetree/npm/grammar.js",
|
|
268
|
+
local_wasm: "/langs/group-pine/devicetree/npm/grammar.core.wasm"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
language: "diff",
|
|
272
|
+
package: "@arborium/diff",
|
|
273
|
+
version: "1.0.5",
|
|
274
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/diff@1.0.5/grammar.js",
|
|
275
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/diff@1.0.5/grammar.core.wasm",
|
|
276
|
+
local_js: "/langs/group-willow/diff/npm/grammar.js",
|
|
277
|
+
local_wasm: "/langs/group-willow/diff/npm/grammar.core.wasm"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
language: "dockerfile",
|
|
281
|
+
package: "@arborium/dockerfile",
|
|
282
|
+
version: "1.0.5",
|
|
283
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/dockerfile@1.0.5/grammar.js",
|
|
284
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/dockerfile@1.0.5/grammar.core.wasm",
|
|
285
|
+
local_js: "/langs/group-maple/dockerfile/npm/grammar.js",
|
|
286
|
+
local_wasm: "/langs/group-maple/dockerfile/npm/grammar.core.wasm"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
language: "dot",
|
|
290
|
+
package: "@arborium/dot",
|
|
291
|
+
version: "1.0.5",
|
|
292
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/dot@1.0.5/grammar.js",
|
|
293
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/dot@1.0.5/grammar.core.wasm",
|
|
294
|
+
local_js: "/langs/group-maple/dot/npm/grammar.js",
|
|
295
|
+
local_wasm: "/langs/group-maple/dot/npm/grammar.core.wasm"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
language: "elisp",
|
|
299
|
+
package: "@arborium/elisp",
|
|
300
|
+
version: "1.0.5",
|
|
301
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/elisp@1.0.5/grammar.js",
|
|
302
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/elisp@1.0.5/grammar.core.wasm",
|
|
303
|
+
local_js: "/langs/group-sage/elisp/npm/grammar.js",
|
|
304
|
+
local_wasm: "/langs/group-sage/elisp/npm/grammar.core.wasm"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
language: "elixir",
|
|
308
|
+
package: "@arborium/elixir",
|
|
309
|
+
version: "1.0.5",
|
|
310
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/elixir@1.0.5/grammar.js",
|
|
311
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/elixir@1.0.5/grammar.core.wasm",
|
|
312
|
+
local_js: "/langs/group-fern/elixir/npm/grammar.js",
|
|
313
|
+
local_wasm: "/langs/group-fern/elixir/npm/grammar.core.wasm"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
language: "elm",
|
|
317
|
+
package: "@arborium/elm",
|
|
318
|
+
version: "1.0.5",
|
|
319
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/elm@1.0.5/grammar.js",
|
|
320
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/elm@1.0.5/grammar.core.wasm",
|
|
321
|
+
local_js: "/langs/group-fern/elm/npm/grammar.js",
|
|
322
|
+
local_wasm: "/langs/group-fern/elm/npm/grammar.core.wasm"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
language: "erlang",
|
|
326
|
+
package: "@arborium/erlang",
|
|
327
|
+
version: "1.0.5",
|
|
328
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/erlang@1.0.5/grammar.js",
|
|
329
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/erlang@1.0.5/grammar.core.wasm",
|
|
330
|
+
local_js: "/langs/group-fern/erlang/npm/grammar.js",
|
|
331
|
+
local_wasm: "/langs/group-fern/erlang/npm/grammar.core.wasm"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
language: "fish",
|
|
335
|
+
package: "@arborium/fish",
|
|
336
|
+
version: "1.0.5",
|
|
337
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/fish@1.0.5/grammar.js",
|
|
338
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/fish@1.0.5/grammar.core.wasm",
|
|
339
|
+
local_js: "/langs/group-hazel/fish/npm/grammar.js",
|
|
340
|
+
local_wasm: "/langs/group-hazel/fish/npm/grammar.core.wasm"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
language: "fsharp",
|
|
344
|
+
package: "@arborium/fsharp",
|
|
345
|
+
version: "1.0.5",
|
|
346
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/fsharp@1.0.5/grammar.js",
|
|
347
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/fsharp@1.0.5/grammar.core.wasm",
|
|
348
|
+
local_js: "/langs/group-sage/fsharp/npm/grammar.js",
|
|
349
|
+
local_wasm: "/langs/group-sage/fsharp/npm/grammar.core.wasm"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
language: "gleam",
|
|
353
|
+
package: "@arborium/gleam",
|
|
354
|
+
version: "1.0.5",
|
|
355
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/gleam@1.0.5/grammar.js",
|
|
356
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/gleam@1.0.5/grammar.core.wasm",
|
|
357
|
+
local_js: "/langs/group-fern/gleam/npm/grammar.js",
|
|
358
|
+
local_wasm: "/langs/group-fern/gleam/npm/grammar.core.wasm"
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
language: "glsl",
|
|
362
|
+
package: "@arborium/glsl",
|
|
363
|
+
version: "1.0.5",
|
|
364
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/glsl@1.0.5/grammar.js",
|
|
365
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/glsl@1.0.5/grammar.core.wasm",
|
|
366
|
+
local_js: "/langs/group-moss/glsl/npm/grammar.js",
|
|
367
|
+
local_wasm: "/langs/group-moss/glsl/npm/grammar.core.wasm"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
language: "go",
|
|
371
|
+
package: "@arborium/go",
|
|
372
|
+
version: "1.0.5",
|
|
373
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/go@1.0.5/grammar.js",
|
|
374
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/go@1.0.5/grammar.core.wasm",
|
|
375
|
+
local_js: "/langs/group-birch/go/npm/grammar.js",
|
|
376
|
+
local_wasm: "/langs/group-birch/go/npm/grammar.core.wasm"
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
language: "graphql",
|
|
380
|
+
package: "@arborium/graphql",
|
|
381
|
+
version: "1.0.5",
|
|
382
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/graphql@1.0.5/grammar.js",
|
|
383
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/graphql@1.0.5/grammar.core.wasm",
|
|
384
|
+
local_js: "/langs/group-maple/graphql/npm/grammar.js",
|
|
385
|
+
local_wasm: "/langs/group-maple/graphql/npm/grammar.core.wasm"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
language: "haskell",
|
|
389
|
+
package: "@arborium/haskell",
|
|
390
|
+
version: "1.0.5",
|
|
391
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/haskell@1.0.5/grammar.js",
|
|
392
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/haskell@1.0.5/grammar.core.wasm",
|
|
393
|
+
local_js: "/langs/group-fern/haskell/npm/grammar.js",
|
|
394
|
+
local_wasm: "/langs/group-fern/haskell/npm/grammar.core.wasm"
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
language: "hcl",
|
|
398
|
+
package: "@arborium/hcl",
|
|
399
|
+
version: "1.0.5",
|
|
400
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/hcl@1.0.5/grammar.js",
|
|
401
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/hcl@1.0.5/grammar.core.wasm",
|
|
402
|
+
local_js: "/langs/group-maple/hcl/npm/grammar.js",
|
|
403
|
+
local_wasm: "/langs/group-maple/hcl/npm/grammar.core.wasm"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
language: "hlsl",
|
|
407
|
+
package: "@arborium/hlsl",
|
|
408
|
+
version: "1.0.5",
|
|
409
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/hlsl@1.0.5/grammar.js",
|
|
410
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/hlsl@1.0.5/grammar.core.wasm",
|
|
411
|
+
local_js: "/langs/group-moss/hlsl/npm/grammar.js",
|
|
412
|
+
local_wasm: "/langs/group-moss/hlsl/npm/grammar.core.wasm"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
language: "html",
|
|
416
|
+
package: "@arborium/html",
|
|
417
|
+
version: "1.0.5",
|
|
418
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/html@1.0.5/grammar.js",
|
|
419
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/html@1.0.5/grammar.core.wasm",
|
|
420
|
+
local_js: "/langs/group-acorn/html/npm/grammar.js",
|
|
421
|
+
local_wasm: "/langs/group-acorn/html/npm/grammar.core.wasm"
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
language: "idris",
|
|
425
|
+
package: "@arborium/idris",
|
|
426
|
+
version: "1.0.5",
|
|
427
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/idris@1.0.5/grammar.js",
|
|
428
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/idris@1.0.5/grammar.core.wasm",
|
|
429
|
+
local_js: "/langs/group-fern/idris/npm/grammar.js",
|
|
430
|
+
local_wasm: "/langs/group-fern/idris/npm/grammar.core.wasm"
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
language: "ini",
|
|
434
|
+
package: "@arborium/ini",
|
|
435
|
+
version: "1.0.5",
|
|
436
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/ini@1.0.5/grammar.js",
|
|
437
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/ini@1.0.5/grammar.core.wasm",
|
|
438
|
+
local_js: "/langs/group-maple/ini/npm/grammar.js",
|
|
439
|
+
local_wasm: "/langs/group-maple/ini/npm/grammar.core.wasm"
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
language: "java",
|
|
443
|
+
package: "@arborium/java",
|
|
444
|
+
version: "1.0.5",
|
|
445
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/java@1.0.5/grammar.js",
|
|
446
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/java@1.0.5/grammar.core.wasm",
|
|
447
|
+
local_js: "/langs/group-cedar/java/npm/grammar.js",
|
|
448
|
+
local_wasm: "/langs/group-cedar/java/npm/grammar.core.wasm"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
language: "javascript",
|
|
452
|
+
package: "@arborium/javascript",
|
|
453
|
+
version: "1.0.5",
|
|
454
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/javascript@1.0.5/grammar.js",
|
|
455
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/javascript@1.0.5/grammar.core.wasm",
|
|
456
|
+
local_js: "/langs/group-acorn/javascript/npm/grammar.js",
|
|
457
|
+
local_wasm: "/langs/group-acorn/javascript/npm/grammar.core.wasm"
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
language: "jinja2",
|
|
461
|
+
package: "@arborium/jinja2",
|
|
462
|
+
version: "1.0.5",
|
|
463
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/jinja2@1.0.5/grammar.js",
|
|
464
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/jinja2@1.0.5/grammar.core.wasm",
|
|
465
|
+
local_js: "/langs/group-willow/jinja2/npm/grammar.js",
|
|
466
|
+
local_wasm: "/langs/group-willow/jinja2/npm/grammar.core.wasm"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
language: "jq",
|
|
470
|
+
package: "@arborium/jq",
|
|
471
|
+
version: "1.0.5",
|
|
472
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/jq@1.0.5/grammar.js",
|
|
473
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/jq@1.0.5/grammar.core.wasm",
|
|
474
|
+
local_js: "/langs/group-maple/jq/npm/grammar.js",
|
|
475
|
+
local_wasm: "/langs/group-maple/jq/npm/grammar.core.wasm"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
language: "json",
|
|
479
|
+
package: "@arborium/json",
|
|
480
|
+
version: "1.0.5",
|
|
481
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/json@1.0.5/grammar.js",
|
|
482
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/json@1.0.5/grammar.core.wasm",
|
|
483
|
+
local_js: "/langs/group-acorn/json/npm/grammar.js",
|
|
484
|
+
local_wasm: "/langs/group-acorn/json/npm/grammar.core.wasm"
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
language: "julia",
|
|
488
|
+
package: "@arborium/julia",
|
|
489
|
+
version: "1.0.5",
|
|
490
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/julia@1.0.5/grammar.js",
|
|
491
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/julia@1.0.5/grammar.core.wasm",
|
|
492
|
+
local_js: "/langs/group-moss/julia/npm/grammar.js",
|
|
493
|
+
local_wasm: "/langs/group-moss/julia/npm/grammar.core.wasm"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
language: "kdl",
|
|
497
|
+
package: "@arborium/kdl",
|
|
498
|
+
version: "1.0.5",
|
|
499
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/kdl@1.0.5/grammar.js",
|
|
500
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/kdl@1.0.5/grammar.core.wasm",
|
|
501
|
+
local_js: "/langs/group-maple/kdl/npm/grammar.js",
|
|
502
|
+
local_wasm: "/langs/group-maple/kdl/npm/grammar.core.wasm"
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
language: "kotlin",
|
|
506
|
+
package: "@arborium/kotlin",
|
|
507
|
+
version: "1.0.5",
|
|
508
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/kotlin@1.0.5/grammar.js",
|
|
509
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/kotlin@1.0.5/grammar.core.wasm",
|
|
510
|
+
local_js: "/langs/group-cedar/kotlin/npm/grammar.js",
|
|
511
|
+
local_wasm: "/langs/group-cedar/kotlin/npm/grammar.core.wasm"
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
language: "lean",
|
|
515
|
+
package: "@arborium/lean",
|
|
516
|
+
version: "1.0.5",
|
|
517
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/lean@1.0.5/grammar.js",
|
|
518
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/lean@1.0.5/grammar.core.wasm",
|
|
519
|
+
local_js: "/langs/group-fern/lean/npm/grammar.js",
|
|
520
|
+
local_wasm: "/langs/group-fern/lean/npm/grammar.core.wasm"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
language: "lua",
|
|
524
|
+
package: "@arborium/lua",
|
|
525
|
+
version: "1.0.5",
|
|
526
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/lua@1.0.5/grammar.js",
|
|
527
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/lua@1.0.5/grammar.core.wasm",
|
|
528
|
+
local_js: "/langs/group-hazel/lua/npm/grammar.js",
|
|
529
|
+
local_wasm: "/langs/group-hazel/lua/npm/grammar.core.wasm"
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
language: "markdown",
|
|
533
|
+
package: "@arborium/markdown",
|
|
534
|
+
version: "1.0.5",
|
|
535
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/markdown@1.0.5/grammar.js",
|
|
536
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/markdown@1.0.5/grammar.core.wasm",
|
|
537
|
+
local_js: "/langs/group-willow/markdown/npm/grammar.js",
|
|
538
|
+
local_wasm: "/langs/group-willow/markdown/npm/grammar.core.wasm"
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
language: "matlab",
|
|
542
|
+
package: "@arborium/matlab",
|
|
543
|
+
version: "1.0.5",
|
|
544
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/matlab@1.0.5/grammar.js",
|
|
545
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/matlab@1.0.5/grammar.core.wasm",
|
|
546
|
+
local_js: "/langs/group-moss/matlab/npm/grammar.js",
|
|
547
|
+
local_wasm: "/langs/group-moss/matlab/npm/grammar.core.wasm"
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
language: "meson",
|
|
551
|
+
package: "@arborium/meson",
|
|
552
|
+
version: "1.0.5",
|
|
553
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/meson@1.0.5/grammar.js",
|
|
554
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/meson@1.0.5/grammar.core.wasm",
|
|
555
|
+
local_js: "/langs/group-maple/meson/npm/grammar.js",
|
|
556
|
+
local_wasm: "/langs/group-maple/meson/npm/grammar.core.wasm"
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
language: "nginx",
|
|
560
|
+
package: "@arborium/nginx",
|
|
561
|
+
version: "1.0.5",
|
|
562
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/nginx@1.0.5/grammar.js",
|
|
563
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/nginx@1.0.5/grammar.core.wasm",
|
|
564
|
+
local_js: "/langs/group-maple/nginx/npm/grammar.js",
|
|
565
|
+
local_wasm: "/langs/group-maple/nginx/npm/grammar.core.wasm"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
language: "ninja",
|
|
569
|
+
package: "@arborium/ninja",
|
|
570
|
+
version: "1.0.5",
|
|
571
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/ninja@1.0.5/grammar.js",
|
|
572
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/ninja@1.0.5/grammar.core.wasm",
|
|
573
|
+
local_js: "/langs/group-maple/ninja/npm/grammar.js",
|
|
574
|
+
local_wasm: "/langs/group-maple/ninja/npm/grammar.core.wasm"
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
language: "nix",
|
|
578
|
+
package: "@arborium/nix",
|
|
579
|
+
version: "1.0.5",
|
|
580
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/nix@1.0.5/grammar.js",
|
|
581
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/nix@1.0.5/grammar.core.wasm",
|
|
582
|
+
local_js: "/langs/group-maple/nix/npm/grammar.js",
|
|
583
|
+
local_wasm: "/langs/group-maple/nix/npm/grammar.core.wasm"
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
language: "objc",
|
|
587
|
+
package: "@arborium/objc",
|
|
588
|
+
version: "1.0.5",
|
|
589
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/objc@1.0.5/grammar.js",
|
|
590
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/objc@1.0.5/grammar.core.wasm",
|
|
591
|
+
local_js: "/langs/group-birch/objc/npm/grammar.js",
|
|
592
|
+
local_wasm: "/langs/group-birch/objc/npm/grammar.core.wasm"
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
language: "ocaml",
|
|
596
|
+
package: "@arborium/ocaml",
|
|
597
|
+
version: "1.0.5",
|
|
598
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/ocaml@1.0.5/grammar.js",
|
|
599
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/ocaml@1.0.5/grammar.core.wasm",
|
|
600
|
+
local_js: "/langs/group-fern/ocaml/npm/grammar.js",
|
|
601
|
+
local_wasm: "/langs/group-fern/ocaml/npm/grammar.core.wasm"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
language: "perl",
|
|
605
|
+
package: "@arborium/perl",
|
|
606
|
+
version: "1.0.5",
|
|
607
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/perl@1.0.5/grammar.js",
|
|
608
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/perl@1.0.5/grammar.core.wasm",
|
|
609
|
+
local_js: "/langs/group-hazel/perl/npm/grammar.js",
|
|
610
|
+
local_wasm: "/langs/group-hazel/perl/npm/grammar.core.wasm"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
language: "php",
|
|
614
|
+
package: "@arborium/php",
|
|
615
|
+
version: "1.0.5",
|
|
616
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/php@1.0.5/grammar.js",
|
|
617
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/php@1.0.5/grammar.core.wasm",
|
|
618
|
+
local_js: "/langs/group-hazel/php/npm/grammar.js",
|
|
619
|
+
local_wasm: "/langs/group-hazel/php/npm/grammar.core.wasm"
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
language: "postscript",
|
|
623
|
+
package: "@arborium/postscript",
|
|
624
|
+
version: "1.0.5",
|
|
625
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/postscript@1.0.5/grammar.js",
|
|
626
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/postscript@1.0.5/grammar.core.wasm",
|
|
627
|
+
local_js: "/langs/group-sage/postscript/npm/grammar.js",
|
|
628
|
+
local_wasm: "/langs/group-sage/postscript/npm/grammar.core.wasm"
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
language: "powershell",
|
|
632
|
+
package: "@arborium/powershell",
|
|
633
|
+
version: "1.0.5",
|
|
634
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/powershell@1.0.5/grammar.js",
|
|
635
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/powershell@1.0.5/grammar.core.wasm",
|
|
636
|
+
local_js: "/langs/group-hazel/powershell/npm/grammar.js",
|
|
637
|
+
local_wasm: "/langs/group-hazel/powershell/npm/grammar.core.wasm"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
language: "prolog",
|
|
641
|
+
package: "@arborium/prolog",
|
|
642
|
+
version: "1.0.5",
|
|
643
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/prolog@1.0.5/grammar.js",
|
|
644
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/prolog@1.0.5/grammar.core.wasm",
|
|
645
|
+
local_js: "/langs/group-moss/prolog/npm/grammar.js",
|
|
646
|
+
local_wasm: "/langs/group-moss/prolog/npm/grammar.core.wasm"
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
language: "python",
|
|
650
|
+
package: "@arborium/python",
|
|
651
|
+
version: "1.0.5",
|
|
652
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/python@1.0.5/grammar.js",
|
|
653
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/python@1.0.5/grammar.core.wasm",
|
|
654
|
+
local_js: "/langs/group-hazel/python/npm/grammar.js",
|
|
655
|
+
local_wasm: "/langs/group-hazel/python/npm/grammar.core.wasm"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
language: "query",
|
|
659
|
+
package: "@arborium/query",
|
|
660
|
+
version: "1.0.5",
|
|
661
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/query@1.0.5/grammar.js",
|
|
662
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/query@1.0.5/grammar.core.wasm",
|
|
663
|
+
local_js: "/langs/group-maple/query/npm/grammar.js",
|
|
664
|
+
local_wasm: "/langs/group-maple/query/npm/grammar.core.wasm"
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
language: "r",
|
|
668
|
+
package: "@arborium/r",
|
|
669
|
+
version: "1.0.5",
|
|
670
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/r@1.0.5/grammar.js",
|
|
671
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/r@1.0.5/grammar.core.wasm",
|
|
672
|
+
local_js: "/langs/group-moss/r/npm/grammar.js",
|
|
673
|
+
local_wasm: "/langs/group-moss/r/npm/grammar.core.wasm"
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
language: "rescript",
|
|
677
|
+
package: "@arborium/rescript",
|
|
678
|
+
version: "1.0.5",
|
|
679
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/rescript@1.0.5/grammar.js",
|
|
680
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/rescript@1.0.5/grammar.core.wasm",
|
|
681
|
+
local_js: "/langs/group-pine/rescript/npm/grammar.js",
|
|
682
|
+
local_wasm: "/langs/group-pine/rescript/npm/grammar.core.wasm"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
language: "ron",
|
|
686
|
+
package: "@arborium/ron",
|
|
687
|
+
version: "1.0.5",
|
|
688
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/ron@1.0.5/grammar.js",
|
|
689
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/ron@1.0.5/grammar.core.wasm",
|
|
690
|
+
local_js: "/langs/group-maple/ron/npm/grammar.js",
|
|
691
|
+
local_wasm: "/langs/group-maple/ron/npm/grammar.core.wasm"
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
language: "ruby",
|
|
695
|
+
package: "@arborium/ruby",
|
|
696
|
+
version: "1.0.5",
|
|
697
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/ruby@1.0.5/grammar.js",
|
|
698
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/ruby@1.0.5/grammar.core.wasm",
|
|
699
|
+
local_js: "/langs/group-hazel/ruby/npm/grammar.js",
|
|
700
|
+
local_wasm: "/langs/group-hazel/ruby/npm/grammar.core.wasm"
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
language: "rust",
|
|
704
|
+
package: "@arborium/rust",
|
|
705
|
+
version: "1.0.5",
|
|
706
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/rust@1.0.5/grammar.js",
|
|
707
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/rust@1.0.5/grammar.core.wasm",
|
|
708
|
+
local_js: "/langs/group-birch/rust/npm/grammar.js",
|
|
709
|
+
local_wasm: "/langs/group-birch/rust/npm/grammar.core.wasm"
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
language: "scala",
|
|
713
|
+
package: "@arborium/scala",
|
|
714
|
+
version: "1.0.5",
|
|
715
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/scala@1.0.5/grammar.js",
|
|
716
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/scala@1.0.5/grammar.core.wasm",
|
|
717
|
+
local_js: "/langs/group-cedar/scala/npm/grammar.js",
|
|
718
|
+
local_wasm: "/langs/group-cedar/scala/npm/grammar.core.wasm"
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
language: "scheme",
|
|
722
|
+
package: "@arborium/scheme",
|
|
723
|
+
version: "1.0.5",
|
|
724
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/scheme@1.0.5/grammar.js",
|
|
725
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/scheme@1.0.5/grammar.core.wasm",
|
|
726
|
+
local_js: "/langs/group-fern/scheme/npm/grammar.js",
|
|
727
|
+
local_wasm: "/langs/group-fern/scheme/npm/grammar.core.wasm"
|
|
728
|
+
},
|
|
729
|
+
{
|
|
730
|
+
language: "scss",
|
|
731
|
+
package: "@arborium/scss",
|
|
732
|
+
version: "1.0.5",
|
|
733
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/scss@1.0.5/grammar.js",
|
|
734
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/scss@1.0.5/grammar.core.wasm",
|
|
735
|
+
local_js: "/langs/group-acorn/scss/npm/grammar.js",
|
|
736
|
+
local_wasm: "/langs/group-acorn/scss/npm/grammar.core.wasm"
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
language: "sparql",
|
|
740
|
+
package: "@arborium/sparql",
|
|
741
|
+
version: "1.0.5",
|
|
742
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/sparql@1.0.5/grammar.js",
|
|
743
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/sparql@1.0.5/grammar.core.wasm",
|
|
744
|
+
local_js: "/langs/group-moss/sparql/npm/grammar.js",
|
|
745
|
+
local_wasm: "/langs/group-moss/sparql/npm/grammar.core.wasm"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
language: "sql",
|
|
749
|
+
package: "@arborium/sql",
|
|
750
|
+
version: "1.0.5",
|
|
751
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/sql@1.0.5/grammar.js",
|
|
752
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/sql@1.0.5/grammar.core.wasm",
|
|
753
|
+
local_js: "/langs/group-maple/sql/npm/grammar.js",
|
|
754
|
+
local_wasm: "/langs/group-maple/sql/npm/grammar.core.wasm"
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
language: "ssh-config",
|
|
758
|
+
package: "@arborium/ssh-config",
|
|
759
|
+
version: "1.0.5",
|
|
760
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/ssh-config@1.0.5/grammar.js",
|
|
761
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/ssh-config@1.0.5/grammar.core.wasm",
|
|
762
|
+
local_js: "/langs/group-maple/ssh-config/npm/grammar.js",
|
|
763
|
+
local_wasm: "/langs/group-maple/ssh-config/npm/grammar.core.wasm"
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
language: "starlark",
|
|
767
|
+
package: "@arborium/starlark",
|
|
768
|
+
version: "1.0.5",
|
|
769
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/starlark@1.0.5/grammar.js",
|
|
770
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/starlark@1.0.5/grammar.core.wasm",
|
|
771
|
+
local_js: "/langs/group-pine/starlark/npm/grammar.js",
|
|
772
|
+
local_wasm: "/langs/group-pine/starlark/npm/grammar.core.wasm"
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
language: "svelte",
|
|
776
|
+
package: "@arborium/svelte",
|
|
777
|
+
version: "1.0.5",
|
|
778
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/svelte@1.0.5/grammar.js",
|
|
779
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/svelte@1.0.5/grammar.core.wasm",
|
|
780
|
+
local_js: "/langs/group-willow/svelte/npm/grammar.js",
|
|
781
|
+
local_wasm: "/langs/group-willow/svelte/npm/grammar.core.wasm"
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
language: "swift",
|
|
785
|
+
package: "@arborium/swift",
|
|
786
|
+
version: "1.0.5",
|
|
787
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/swift@1.0.5/grammar.js",
|
|
788
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/swift@1.0.5/grammar.core.wasm",
|
|
789
|
+
local_js: "/langs/group-pine/swift/npm/grammar.js",
|
|
790
|
+
local_wasm: "/langs/group-pine/swift/npm/grammar.core.wasm"
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
language: "textproto",
|
|
794
|
+
package: "@arborium/textproto",
|
|
795
|
+
version: "1.0.5",
|
|
796
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/textproto@1.0.5/grammar.js",
|
|
797
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/textproto@1.0.5/grammar.core.wasm",
|
|
798
|
+
local_js: "/langs/group-pine/textproto/npm/grammar.js",
|
|
799
|
+
local_wasm: "/langs/group-pine/textproto/npm/grammar.core.wasm"
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
language: "thrift",
|
|
803
|
+
package: "@arborium/thrift",
|
|
804
|
+
version: "1.0.5",
|
|
805
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/thrift@1.0.5/grammar.js",
|
|
806
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/thrift@1.0.5/grammar.core.wasm",
|
|
807
|
+
local_js: "/langs/group-pine/thrift/npm/grammar.js",
|
|
808
|
+
local_wasm: "/langs/group-pine/thrift/npm/grammar.core.wasm"
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
language: "tlaplus",
|
|
812
|
+
package: "@arborium/tlaplus",
|
|
813
|
+
version: "1.0.5",
|
|
814
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/tlaplus@1.0.5/grammar.js",
|
|
815
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/tlaplus@1.0.5/grammar.core.wasm",
|
|
816
|
+
local_js: "/langs/group-moss/tlaplus/npm/grammar.js",
|
|
817
|
+
local_wasm: "/langs/group-moss/tlaplus/npm/grammar.core.wasm"
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
language: "toml",
|
|
821
|
+
package: "@arborium/toml",
|
|
822
|
+
version: "1.0.5",
|
|
823
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/toml@1.0.5/grammar.js",
|
|
824
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/toml@1.0.5/grammar.core.wasm",
|
|
825
|
+
local_js: "/langs/group-maple/toml/npm/grammar.js",
|
|
826
|
+
local_wasm: "/langs/group-maple/toml/npm/grammar.core.wasm"
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
language: "tsx",
|
|
830
|
+
package: "@arborium/tsx",
|
|
831
|
+
version: "1.0.5",
|
|
832
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/tsx@1.0.5/grammar.js",
|
|
833
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/tsx@1.0.5/grammar.core.wasm",
|
|
834
|
+
local_js: "/langs/group-acorn/tsx/npm/grammar.js",
|
|
835
|
+
local_wasm: "/langs/group-acorn/tsx/npm/grammar.core.wasm"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
language: "typescript",
|
|
839
|
+
package: "@arborium/typescript",
|
|
840
|
+
version: "1.0.5",
|
|
841
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/typescript@1.0.5/grammar.js",
|
|
842
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/typescript@1.0.5/grammar.core.wasm",
|
|
843
|
+
local_js: "/langs/group-acorn/typescript/npm/grammar.js",
|
|
844
|
+
local_wasm: "/langs/group-acorn/typescript/npm/grammar.core.wasm"
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
language: "typst",
|
|
848
|
+
package: "@arborium/typst",
|
|
849
|
+
version: "1.0.5",
|
|
850
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/typst@1.0.5/grammar.js",
|
|
851
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/typst@1.0.5/grammar.core.wasm",
|
|
852
|
+
local_js: "/langs/group-willow/typst/npm/grammar.js",
|
|
853
|
+
local_wasm: "/langs/group-willow/typst/npm/grammar.core.wasm"
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
language: "uiua",
|
|
857
|
+
package: "@arborium/uiua",
|
|
858
|
+
version: "1.0.5",
|
|
859
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/uiua@1.0.5/grammar.js",
|
|
860
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/uiua@1.0.5/grammar.core.wasm",
|
|
861
|
+
local_js: "/langs/group-pine/uiua/npm/grammar.js",
|
|
862
|
+
local_wasm: "/langs/group-pine/uiua/npm/grammar.core.wasm"
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
language: "vb",
|
|
866
|
+
package: "@arborium/vb",
|
|
867
|
+
version: "1.0.5",
|
|
868
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/vb@1.0.5/grammar.js",
|
|
869
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/vb@1.0.5/grammar.core.wasm",
|
|
870
|
+
local_js: "/langs/group-sage/vb/npm/grammar.js",
|
|
871
|
+
local_wasm: "/langs/group-sage/vb/npm/grammar.core.wasm"
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
language: "verilog",
|
|
875
|
+
package: "@arborium/verilog",
|
|
876
|
+
version: "1.0.5",
|
|
877
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/verilog@1.0.5/grammar.js",
|
|
878
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/verilog@1.0.5/grammar.core.wasm",
|
|
879
|
+
local_js: "/langs/group-moss/verilog/npm/grammar.js",
|
|
880
|
+
local_wasm: "/langs/group-moss/verilog/npm/grammar.core.wasm"
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
language: "vhdl",
|
|
884
|
+
package: "@arborium/vhdl",
|
|
885
|
+
version: "1.0.5",
|
|
886
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/vhdl@1.0.5/grammar.js",
|
|
887
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/vhdl@1.0.5/grammar.core.wasm",
|
|
888
|
+
local_js: "/langs/group-moss/vhdl/npm/grammar.js",
|
|
889
|
+
local_wasm: "/langs/group-moss/vhdl/npm/grammar.core.wasm"
|
|
890
|
+
},
|
|
891
|
+
{
|
|
892
|
+
language: "vim",
|
|
893
|
+
package: "@arborium/vim",
|
|
894
|
+
version: "1.0.5",
|
|
895
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/vim@1.0.5/grammar.js",
|
|
896
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/vim@1.0.5/grammar.core.wasm",
|
|
897
|
+
local_js: "/langs/group-sage/vim/npm/grammar.js",
|
|
898
|
+
local_wasm: "/langs/group-sage/vim/npm/grammar.core.wasm"
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
language: "vue",
|
|
902
|
+
package: "@arborium/vue",
|
|
903
|
+
version: "1.0.5",
|
|
904
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/vue@1.0.5/grammar.js",
|
|
905
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/vue@1.0.5/grammar.core.wasm",
|
|
906
|
+
local_js: "/langs/group-willow/vue/npm/grammar.js",
|
|
907
|
+
local_wasm: "/langs/group-willow/vue/npm/grammar.core.wasm"
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
language: "x86asm",
|
|
911
|
+
package: "@arborium/x86asm",
|
|
912
|
+
version: "1.0.5",
|
|
913
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/x86asm@1.0.5/grammar.js",
|
|
914
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/x86asm@1.0.5/grammar.core.wasm",
|
|
915
|
+
local_js: "/langs/group-birch/x86asm/npm/grammar.js",
|
|
916
|
+
local_wasm: "/langs/group-birch/x86asm/npm/grammar.core.wasm"
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
language: "xml",
|
|
920
|
+
package: "@arborium/xml",
|
|
921
|
+
version: "1.0.5",
|
|
922
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/xml@1.0.5/grammar.js",
|
|
923
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/xml@1.0.5/grammar.core.wasm",
|
|
924
|
+
local_js: "/langs/group-acorn/xml/npm/grammar.js",
|
|
925
|
+
local_wasm: "/langs/group-acorn/xml/npm/grammar.core.wasm"
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
language: "yaml",
|
|
929
|
+
package: "@arborium/yaml",
|
|
930
|
+
version: "1.0.5",
|
|
931
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/yaml@1.0.5/grammar.js",
|
|
932
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/yaml@1.0.5/grammar.core.wasm",
|
|
933
|
+
local_js: "/langs/group-maple/yaml/npm/grammar.js",
|
|
934
|
+
local_wasm: "/langs/group-maple/yaml/npm/grammar.core.wasm"
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
language: "yuri",
|
|
938
|
+
package: "@arborium/yuri",
|
|
939
|
+
version: "1.0.5",
|
|
940
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/yuri@1.0.5/grammar.js",
|
|
941
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/yuri@1.0.5/grammar.core.wasm",
|
|
942
|
+
local_js: "/langs/group-pine/yuri/npm/grammar.js",
|
|
943
|
+
local_wasm: "/langs/group-pine/yuri/npm/grammar.core.wasm"
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
language: "zig",
|
|
947
|
+
package: "@arborium/zig",
|
|
948
|
+
version: "1.0.5",
|
|
949
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/zig@1.0.5/grammar.js",
|
|
950
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/zig@1.0.5/grammar.core.wasm",
|
|
951
|
+
local_js: "/langs/group-birch/zig/npm/grammar.js",
|
|
952
|
+
local_wasm: "/langs/group-birch/zig/npm/grammar.core.wasm"
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
language: "zsh",
|
|
956
|
+
package: "@arborium/zsh",
|
|
957
|
+
version: "1.0.5",
|
|
958
|
+
cdn_js: "https://cdn.jsdelivr.net/npm/@arborium/zsh@1.0.5/grammar.js",
|
|
959
|
+
cdn_wasm: "https://cdn.jsdelivr.net/npm/@arborium/zsh@1.0.5/grammar.core.wasm",
|
|
960
|
+
local_js: "/langs/group-hazel/zsh/npm/grammar.js",
|
|
961
|
+
local_wasm: "/langs/group-hazel/zsh/npm/grammar.core.wasm"
|
|
962
|
+
}
|
|
963
|
+
]
|
|
964
|
+
}, T = {
|
|
98
965
|
manual: !1,
|
|
99
966
|
theme: "one-dark",
|
|
100
967
|
selector: "pre code",
|
|
101
968
|
cdn: "jsdelivr",
|
|
102
969
|
version: "1",
|
|
103
970
|
// Major version - allows patch/minor upgrades via CDN
|
|
104
|
-
pluginsUrl: "
|
|
971
|
+
pluginsUrl: "",
|
|
972
|
+
// Empty means use bundled manifest
|
|
105
973
|
hostUrl: ""
|
|
106
974
|
// Empty means use CDN based on version
|
|
107
975
|
};
|
|
108
|
-
let
|
|
109
|
-
const
|
|
110
|
-
let
|
|
111
|
-
async function
|
|
112
|
-
if (
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
976
|
+
let b = null, h = null, c = { ...T };
|
|
977
|
+
const y = /* @__PURE__ */ new Map();
|
|
978
|
+
let x = U, _ = null, z = new Set(U.entries.map((a) => a.language));
|
|
979
|
+
async function R() {
|
|
980
|
+
if (c.pluginsUrl)
|
|
981
|
+
return _ || (_ = (async () => {
|
|
982
|
+
console.debug(`[arborium] Loading plugins manifest from: ${c.pluginsUrl}`);
|
|
983
|
+
const a = await fetch(c.pluginsUrl);
|
|
984
|
+
if (!a.ok)
|
|
985
|
+
throw new Error(`Failed to load plugins.json: ${a.status}`);
|
|
986
|
+
x = await a.json(), z = new Set(x.entries.map((s) => s.language)), console.debug(`[arborium] Available languages: ${Array.from(z).join(", ")}`);
|
|
987
|
+
})(), _);
|
|
118
988
|
}
|
|
119
|
-
async function
|
|
120
|
-
const
|
|
121
|
-
if (
|
|
122
|
-
return console.debug(`[arborium] Grammar '${
|
|
123
|
-
await
|
|
124
|
-
const
|
|
125
|
-
if (!
|
|
126
|
-
return console.debug(`[arborium] Grammar '${
|
|
989
|
+
async function q(a) {
|
|
990
|
+
const s = y.get(a);
|
|
991
|
+
if (s)
|
|
992
|
+
return console.debug(`[arborium] Grammar '${a}' found in cache`), s;
|
|
993
|
+
await R();
|
|
994
|
+
const m = x.entries.find((r) => r.language === a);
|
|
995
|
+
if (!m)
|
|
996
|
+
return console.debug(`[arborium] Grammar '${a}' not found in manifest`), null;
|
|
127
997
|
try {
|
|
128
|
-
const
|
|
129
|
-
console.debug(`[arborium] Loading grammar '${
|
|
130
|
-
const
|
|
998
|
+
const r = c.pluginsUrl ? m.local_js : m.cdn_js, n = r.substring(0, r.lastIndexOf("/"));
|
|
999
|
+
console.debug(`[arborium] Loading grammar '${a}' from ${r}`);
|
|
1000
|
+
const o = await import(
|
|
131
1001
|
/* @vite-ignore */
|
|
132
|
-
|
|
133
|
-
),
|
|
134
|
-
const
|
|
135
|
-
if (!
|
|
136
|
-
throw new Error(`Failed to fetch WASM ${
|
|
137
|
-
const
|
|
138
|
-
return WebAssembly.compile(
|
|
1002
|
+
r
|
|
1003
|
+
), l = async (i) => {
|
|
1004
|
+
const p = `${n}/${i}`, e = await fetch(p);
|
|
1005
|
+
if (!e.ok)
|
|
1006
|
+
throw new Error(`Failed to fetch WASM ${i}: ${e.status}`);
|
|
1007
|
+
const g = await e.arrayBuffer();
|
|
1008
|
+
return WebAssembly.compile(g);
|
|
139
1009
|
}, w = {
|
|
140
|
-
...
|
|
141
|
-
...
|
|
142
|
-
},
|
|
143
|
-
if (!
|
|
144
|
-
return console.error(`Grammar '${
|
|
145
|
-
const
|
|
146
|
-
languageId:
|
|
147
|
-
injectionLanguages:
|
|
148
|
-
parse: (
|
|
149
|
-
const
|
|
1010
|
+
...W(),
|
|
1011
|
+
...A
|
|
1012
|
+
}, d = await o.instantiate(l, w), t = d.plugin || d["arborium:grammar/plugin@0.1.0"];
|
|
1013
|
+
if (!t)
|
|
1014
|
+
return console.error(`Grammar '${a}' missing plugin interface`), null;
|
|
1015
|
+
const j = {
|
|
1016
|
+
languageId: a,
|
|
1017
|
+
injectionLanguages: t.injectionLanguages?.() ?? [],
|
|
1018
|
+
parse: (i) => {
|
|
1019
|
+
const p = t.createSession();
|
|
150
1020
|
try {
|
|
151
|
-
|
|
152
|
-
const
|
|
153
|
-
if (
|
|
154
|
-
const
|
|
155
|
-
return console.error(`[arborium] Parse error: ${
|
|
1021
|
+
t.setText(p, i);
|
|
1022
|
+
const e = t.parse(p);
|
|
1023
|
+
if (e.tag === "err") {
|
|
1024
|
+
const S = e.val;
|
|
1025
|
+
return console.error(`[arborium] Parse error: ${S?.message}`), { spans: [], injections: [] };
|
|
156
1026
|
}
|
|
157
|
-
const
|
|
158
|
-
if (!
|
|
159
|
-
return console.error("[arborium] Unexpected parse result:",
|
|
160
|
-
const
|
|
1027
|
+
const g = e.tag === "ok" ? e.val : e;
|
|
1028
|
+
if (!g || typeof g != "object")
|
|
1029
|
+
return console.error("[arborium] Unexpected parse result:", e), { spans: [], injections: [] };
|
|
1030
|
+
const $ = g;
|
|
161
1031
|
return {
|
|
162
|
-
spans:
|
|
163
|
-
injections:
|
|
1032
|
+
spans: $.spans || [],
|
|
1033
|
+
injections: $.injections || []
|
|
164
1034
|
};
|
|
165
1035
|
} finally {
|
|
166
|
-
|
|
1036
|
+
t.freeSession(p);
|
|
167
1037
|
}
|
|
168
1038
|
}
|
|
169
1039
|
};
|
|
170
|
-
return
|
|
171
|
-
} catch (
|
|
172
|
-
return console.error(`[arborium] Failed to load grammar '${
|
|
1040
|
+
return y.set(a, j), console.debug(`[arborium] Grammar '${a}' loaded successfully`), j;
|
|
1041
|
+
} catch (r) {
|
|
1042
|
+
return console.error(`[arborium] Failed to load grammar '${a}':`, r), null;
|
|
173
1043
|
}
|
|
174
1044
|
}
|
|
175
|
-
const
|
|
176
|
-
let
|
|
1045
|
+
const k = /* @__PURE__ */ new Map();
|
|
1046
|
+
let C = 1;
|
|
177
1047
|
function M() {
|
|
178
1048
|
window.arboriumHost = {
|
|
179
1049
|
/** Check if a language is available (sync) */
|
|
180
|
-
isLanguageAvailable(
|
|
181
|
-
return
|
|
1050
|
+
isLanguageAvailable(a) {
|
|
1051
|
+
return z.has(a) || y.has(a);
|
|
182
1052
|
},
|
|
183
1053
|
/** Load a grammar and return a handle (async) */
|
|
184
|
-
async loadGrammar(
|
|
185
|
-
const
|
|
186
|
-
if (!
|
|
187
|
-
for (const [
|
|
188
|
-
if (
|
|
189
|
-
const
|
|
190
|
-
return
|
|
1054
|
+
async loadGrammar(a) {
|
|
1055
|
+
const s = await q(a);
|
|
1056
|
+
if (!s) return 0;
|
|
1057
|
+
for (const [r, n] of k)
|
|
1058
|
+
if (n === s) return r;
|
|
1059
|
+
const m = C++;
|
|
1060
|
+
return k.set(m, s), m;
|
|
191
1061
|
},
|
|
192
1062
|
/** Parse text using a grammar handle (sync) */
|
|
193
|
-
parse(
|
|
194
|
-
const
|
|
195
|
-
return
|
|
1063
|
+
parse(a, s) {
|
|
1064
|
+
const m = k.get(a);
|
|
1065
|
+
return m ? m.parse(s) : { spans: [], injections: [] };
|
|
196
1066
|
}
|
|
197
1067
|
};
|
|
198
1068
|
}
|
|
199
1069
|
function F() {
|
|
200
|
-
if (
|
|
201
|
-
return
|
|
202
|
-
const
|
|
203
|
-
let
|
|
204
|
-
|
|
205
|
-
const
|
|
206
|
-
return `${
|
|
1070
|
+
if (c.hostUrl)
|
|
1071
|
+
return c.hostUrl;
|
|
1072
|
+
const a = c.cdn, s = c.version;
|
|
1073
|
+
let m;
|
|
1074
|
+
a === "jsdelivr" ? m = "https://cdn.jsdelivr.net/npm" : a === "unpkg" ? m = "https://unpkg.com" : m = a;
|
|
1075
|
+
const r = s === "latest" ? "" : `@${s}`;
|
|
1076
|
+
return `${m}/@arborium/arborium${r}/dist`;
|
|
207
1077
|
}
|
|
208
1078
|
async function P() {
|
|
209
|
-
return
|
|
1079
|
+
return b || h || (h = (async () => {
|
|
210
1080
|
M();
|
|
211
|
-
const
|
|
212
|
-
console.debug(`[arborium] Loading host from ${
|
|
1081
|
+
const a = F(), s = `${a}/arborium_host.js`, m = `${a}/arborium_host_bg.wasm`;
|
|
1082
|
+
console.debug(`[arborium] Loading host from ${s}`);
|
|
213
1083
|
try {
|
|
214
|
-
const
|
|
1084
|
+
const r = await import(
|
|
215
1085
|
/* @vite-ignore */
|
|
216
|
-
|
|
1086
|
+
s
|
|
217
1087
|
);
|
|
218
|
-
return await
|
|
219
|
-
highlight:
|
|
220
|
-
isLanguageAvailable:
|
|
221
|
-
}, console.debug("[arborium] Host loaded successfully"),
|
|
222
|
-
} catch (
|
|
223
|
-
return console.error("[arborium] Failed to load host:",
|
|
1088
|
+
return await r.default(m), b = {
|
|
1089
|
+
highlight: r.highlight,
|
|
1090
|
+
isLanguageAvailable: r.isLanguageAvailable
|
|
1091
|
+
}, console.debug("[arborium] Host loaded successfully"), b;
|
|
1092
|
+
} catch (r) {
|
|
1093
|
+
return console.error("[arborium] Failed to load host:", r), null;
|
|
224
1094
|
}
|
|
225
1095
|
})(), h);
|
|
226
1096
|
}
|
|
227
|
-
async function O(
|
|
228
|
-
const
|
|
229
|
-
if (
|
|
1097
|
+
async function O(a, s, m) {
|
|
1098
|
+
const r = await P();
|
|
1099
|
+
if (r)
|
|
230
1100
|
try {
|
|
231
|
-
return
|
|
232
|
-
} catch (
|
|
233
|
-
console.warn("Host highlight failed, falling back to JS:",
|
|
1101
|
+
return r.highlight(a, s);
|
|
1102
|
+
} catch (l) {
|
|
1103
|
+
console.warn("Host highlight failed, falling back to JS:", l);
|
|
234
1104
|
}
|
|
235
|
-
const
|
|
236
|
-
if (!
|
|
237
|
-
return v(
|
|
238
|
-
const
|
|
239
|
-
return
|
|
1105
|
+
const n = await q(a);
|
|
1106
|
+
if (!n)
|
|
1107
|
+
return v(s);
|
|
1108
|
+
const o = n.parse(s);
|
|
1109
|
+
return I(s, o.spans);
|
|
240
1110
|
}
|
|
241
|
-
async function N(
|
|
242
|
-
const
|
|
243
|
-
return
|
|
244
|
-
languageId: () =>
|
|
245
|
-
injectionLanguages: () =>
|
|
246
|
-
highlight: async (
|
|
247
|
-
const
|
|
248
|
-
return
|
|
249
|
-
},
|
|
250
|
-
parse: (
|
|
1111
|
+
async function N(a, s) {
|
|
1112
|
+
const m = await q(a);
|
|
1113
|
+
return m ? {
|
|
1114
|
+
languageId: () => m.languageId,
|
|
1115
|
+
injectionLanguages: () => m.injectionLanguages,
|
|
1116
|
+
highlight: async (r) => {
|
|
1117
|
+
const n = m.parse(r);
|
|
1118
|
+
return I(r, n.spans);
|
|
1119
|
+
},
|
|
1120
|
+
parse: (r) => m.parse(r),
|
|
251
1121
|
dispose: () => {
|
|
252
1122
|
}
|
|
253
1123
|
} : null;
|
|
254
1124
|
}
|
|
255
|
-
function
|
|
256
|
-
const
|
|
257
|
-
let
|
|
258
|
-
for (const
|
|
259
|
-
if (
|
|
260
|
-
|
|
261
|
-
const
|
|
262
|
-
|
|
1125
|
+
function I(a, s) {
|
|
1126
|
+
const m = [...s].sort((o, l) => o.start - l.start);
|
|
1127
|
+
let r = "", n = 0;
|
|
1128
|
+
for (const o of m) {
|
|
1129
|
+
if (o.start < n) continue;
|
|
1130
|
+
o.start > n && (r += v(a.slice(n, o.start)));
|
|
1131
|
+
const l = B(o.capture), u = v(a.slice(o.start, o.end));
|
|
1132
|
+
l ? r += `<a-${l}>${u}</a-${l}>` : r += u, n = o.end;
|
|
263
1133
|
}
|
|
264
|
-
return
|
|
1134
|
+
return n < a.length && (r += v(a.slice(n))), r;
|
|
265
1135
|
}
|
|
266
|
-
function B(
|
|
267
|
-
return
|
|
1136
|
+
function B(a) {
|
|
1137
|
+
return a.startsWith("keyword") || a === "include" || a === "conditional" ? "k" : a.startsWith("function") || a.startsWith("method") ? "f" : a.startsWith("string") || a === "character" ? "s" : a.startsWith("comment") ? "c" : a.startsWith("type") ? "t" : a.startsWith("variable") ? "v" : a.startsWith("number") || a === "float" ? "n" : a.startsWith("operator") ? "o" : a.startsWith("punctuation") ? "p" : a.startsWith("tag") ? "tg" : a.startsWith("attribute") ? "at" : null;
|
|
268
1138
|
}
|
|
269
|
-
function v(
|
|
270
|
-
return
|
|
1139
|
+
function v(a) {
|
|
1140
|
+
return a.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(/"/g, """);
|
|
271
1141
|
}
|
|
272
|
-
function D(
|
|
273
|
-
return
|
|
1142
|
+
function D(a) {
|
|
1143
|
+
return a ? { ...c, ...a } : { ...c };
|
|
274
1144
|
}
|
|
275
1145
|
const H = [
|
|
276
1146
|
[/^#!.*\bpython[23]?\b/, "python"],
|
|
@@ -345,23 +1215,23 @@ const H = [
|
|
|
345
1215
|
// Zig
|
|
346
1216
|
[/\b(pub\s+fn|const\s+\w+\s*=|@import\(|comptime)\b/, "zig"]
|
|
347
1217
|
];
|
|
348
|
-
function
|
|
349
|
-
const
|
|
1218
|
+
function Y(a) {
|
|
1219
|
+
const s = a.split(`
|
|
350
1220
|
`)[0];
|
|
351
|
-
for (const [
|
|
352
|
-
if (
|
|
353
|
-
return
|
|
354
|
-
for (const [
|
|
355
|
-
if (
|
|
356
|
-
return
|
|
1221
|
+
for (const [m, r] of H)
|
|
1222
|
+
if (m.test(s))
|
|
1223
|
+
return r;
|
|
1224
|
+
for (const [m, r] of G)
|
|
1225
|
+
if (m.test(a))
|
|
1226
|
+
return r;
|
|
357
1227
|
return null;
|
|
358
1228
|
}
|
|
359
|
-
function
|
|
360
|
-
const
|
|
361
|
-
if (
|
|
362
|
-
const
|
|
363
|
-
if (
|
|
364
|
-
const
|
|
1229
|
+
function V(a) {
|
|
1230
|
+
const s = a.match(/\blanguage-(\w+)\b/);
|
|
1231
|
+
if (s) return s[1];
|
|
1232
|
+
const m = a.match(/\blang-(\w+)\b/);
|
|
1233
|
+
if (m) return m[1];
|
|
1234
|
+
const r = /* @__PURE__ */ new Set([
|
|
365
1235
|
"rust",
|
|
366
1236
|
"javascript",
|
|
367
1237
|
"typescript",
|
|
@@ -397,13 +1267,13 @@ function z(s) {
|
|
|
397
1267
|
"console",
|
|
398
1268
|
"sh"
|
|
399
1269
|
]);
|
|
400
|
-
for (const
|
|
401
|
-
if (
|
|
402
|
-
return
|
|
1270
|
+
for (const n of a.split(/\s+/))
|
|
1271
|
+
if (r.has(n.toLowerCase()))
|
|
1272
|
+
return n.toLowerCase();
|
|
403
1273
|
return null;
|
|
404
1274
|
}
|
|
405
|
-
function
|
|
406
|
-
const
|
|
1275
|
+
function J(a) {
|
|
1276
|
+
const s = {
|
|
407
1277
|
js: "javascript",
|
|
408
1278
|
ts: "typescript",
|
|
409
1279
|
py: "python",
|
|
@@ -423,16 +1293,16 @@ function Y(s) {
|
|
|
423
1293
|
plaintext: "text",
|
|
424
1294
|
plain: "text",
|
|
425
1295
|
txt: "text"
|
|
426
|
-
},
|
|
427
|
-
return
|
|
1296
|
+
}, m = a.toLowerCase();
|
|
1297
|
+
return s[m] || m;
|
|
428
1298
|
}
|
|
429
1299
|
export {
|
|
430
|
-
|
|
431
|
-
|
|
1300
|
+
Y as detectLanguage,
|
|
1301
|
+
V as extractLanguageFromClass,
|
|
432
1302
|
D as getConfig,
|
|
433
1303
|
O as highlight,
|
|
434
1304
|
N as loadGrammar,
|
|
435
|
-
|
|
436
|
-
|
|
1305
|
+
J as normalizeLanguage,
|
|
1306
|
+
I as spansToHtml
|
|
437
1307
|
};
|
|
438
1308
|
//# sourceMappingURL=arborium.js.map
|