code-languages 1.19.0 → 1.20.1
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/README.md +50 -0
- package/dist/api.cjs +416 -0
- package/dist/api.cjs.map +1 -1
- package/dist/api.d.cts +266 -0
- package/dist/api.d.ts +266 -0
- package/dist/api.js +416 -0
- package/dist/api.js.map +1 -1
- package/dist/detect.cjs +296 -0
- package/dist/detect.cjs.map +1 -1
- package/dist/detect.js +296 -0
- package/dist/detect.js.map +1 -1
- package/dist/index.cjs +426 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +266 -0
- package/dist/index.d.ts +266 -0
- package/dist/index.js +427 -1
- package/dist/index.js.map +1 -1
- package/dist/languages/antlr.cjs +34 -0
- package/dist/languages/antlr.cjs.map +1 -0
- package/dist/languages/antlr.d.cts +29 -0
- package/dist/languages/antlr.d.ts +29 -0
- package/dist/languages/antlr.js +32 -0
- package/dist/languages/antlr.js.map +1 -0
- package/dist/languages/apl.cjs +33 -0
- package/dist/languages/apl.cjs.map +1 -0
- package/dist/languages/apl.d.cts +28 -0
- package/dist/languages/apl.d.ts +28 -0
- package/dist/languages/apl.js +31 -0
- package/dist/languages/apl.js.map +1 -0
- package/dist/languages/applescript.cjs +33 -0
- package/dist/languages/applescript.cjs.map +1 -0
- package/dist/languages/applescript.d.cts +28 -0
- package/dist/languages/applescript.d.ts +28 -0
- package/dist/languages/applescript.js +31 -0
- package/dist/languages/applescript.js.map +1 -0
- package/dist/languages/arduino.cjs +34 -0
- package/dist/languages/arduino.cjs.map +1 -0
- package/dist/languages/arduino.d.cts +29 -0
- package/dist/languages/arduino.d.ts +29 -0
- package/dist/languages/arduino.js +32 -0
- package/dist/languages/arduino.js.map +1 -0
- package/dist/languages/autohotkey.cjs +33 -0
- package/dist/languages/autohotkey.cjs.map +1 -0
- package/dist/languages/autohotkey.d.cts +28 -0
- package/dist/languages/autohotkey.d.ts +28 -0
- package/dist/languages/autohotkey.js +31 -0
- package/dist/languages/autohotkey.js.map +1 -0
- package/dist/languages/coldfusion.cjs +34 -0
- package/dist/languages/coldfusion.cjs.map +1 -0
- package/dist/languages/coldfusion.d.cts +29 -0
- package/dist/languages/coldfusion.d.ts +29 -0
- package/dist/languages/coldfusion.js +32 -0
- package/dist/languages/coldfusion.js.map +1 -0
- package/dist/languages/cython.cjs +34 -0
- package/dist/languages/cython.cjs.map +1 -0
- package/dist/languages/cython.d.cts +29 -0
- package/dist/languages/cython.d.ts +29 -0
- package/dist/languages/cython.js +32 -0
- package/dist/languages/cython.js.map +1 -0
- package/dist/languages/erb.cjs +34 -0
- package/dist/languages/erb.cjs.map +1 -0
- package/dist/languages/erb.d.cts +29 -0
- package/dist/languages/erb.d.ts +29 -0
- package/dist/languages/erb.js +32 -0
- package/dist/languages/erb.js.map +1 -0
- package/dist/languages/forth.cjs +33 -0
- package/dist/languages/forth.cjs.map +1 -0
- package/dist/languages/forth.d.cts +28 -0
- package/dist/languages/forth.d.ts +28 -0
- package/dist/languages/forth.js +31 -0
- package/dist/languages/forth.js.map +1 -0
- package/dist/languages/jsonnet.cjs +34 -0
- package/dist/languages/jsonnet.cjs.map +1 -0
- package/dist/languages/jsonnet.d.cts +29 -0
- package/dist/languages/jsonnet.d.ts +29 -0
- package/dist/languages/jsonnet.js +32 -0
- package/dist/languages/jsonnet.js.map +1 -0
- package/package.json +51 -1
package/dist/api.js
CHANGED
|
@@ -120,6 +120,44 @@ var init_ada = __esm({
|
|
|
120
120
|
}
|
|
121
121
|
});
|
|
122
122
|
|
|
123
|
+
// src/languages/antlr.ts
|
|
124
|
+
var antlr_exports = {};
|
|
125
|
+
__export(antlr_exports, {
|
|
126
|
+
antlr: () => antlr
|
|
127
|
+
});
|
|
128
|
+
var antlr;
|
|
129
|
+
var init_antlr = __esm({
|
|
130
|
+
"src/languages/antlr.ts"() {
|
|
131
|
+
antlr = {
|
|
132
|
+
slug: "antlr",
|
|
133
|
+
publishedDate: "1989-02-01",
|
|
134
|
+
extensions: [".g4"],
|
|
135
|
+
author: "Terence Parr",
|
|
136
|
+
website: "https://www.antlr.org",
|
|
137
|
+
paradigms: ["declarative", "grammar", "parser generation"],
|
|
138
|
+
tooling: {
|
|
139
|
+
runtimes: ["ANTLR Tool", "ANTLR Runtime"],
|
|
140
|
+
packageManagers: ["Maven", "npm", "NuGet", "pip"],
|
|
141
|
+
ecosystems: ["Compilers", "Language Tools", "Static Analysis"]
|
|
142
|
+
},
|
|
143
|
+
version: "4.13.2",
|
|
144
|
+
logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_antlr.svg",
|
|
145
|
+
i18n: {
|
|
146
|
+
en: {
|
|
147
|
+
name: "ANTLR Grammar",
|
|
148
|
+
description: "A grammar notation used with ANTLR to generate lexers, parsers, and language tools.",
|
|
149
|
+
longDescription: "ANTLR grammars describe lexical tokens and parser rules for programming languages, data formats, query languages, and domain-specific syntaxes.\n\nThe generated parsers are used in compilers, interpreters, code analyzers, migration tools, editors, and other systems that need structured language recognition."
|
|
150
|
+
},
|
|
151
|
+
es: {
|
|
152
|
+
name: "ANTLR Grammar",
|
|
153
|
+
description: "Una notacion de gramaticas usada con ANTLR para generar lexers, parsers y herramientas de lenguaje.",
|
|
154
|
+
longDescription: "Las gramaticas ANTLR describen tokens lexicos y reglas de parser para lenguajes de programacion, formatos de datos, lenguajes de consulta y sintaxis especificas de dominio.\n\nLos parsers generados se usan en compiladores, interpretes, analizadores de codigo, herramientas de migracion, editores y otros sistemas que necesitan reconocer lenguajes de forma estructurada."
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
};
|
|
158
|
+
}
|
|
159
|
+
});
|
|
160
|
+
|
|
123
161
|
// src/languages/apex.ts
|
|
124
162
|
var apex_exports = {};
|
|
125
163
|
__export(apex_exports, {
|
|
@@ -158,6 +196,118 @@ var init_apex = __esm({
|
|
|
158
196
|
}
|
|
159
197
|
});
|
|
160
198
|
|
|
199
|
+
// src/languages/apl.ts
|
|
200
|
+
var apl_exports = {};
|
|
201
|
+
__export(apl_exports, {
|
|
202
|
+
apl: () => apl
|
|
203
|
+
});
|
|
204
|
+
var apl;
|
|
205
|
+
var init_apl = __esm({
|
|
206
|
+
"src/languages/apl.ts"() {
|
|
207
|
+
apl = {
|
|
208
|
+
slug: "apl",
|
|
209
|
+
publishedDate: "1966-11-01",
|
|
210
|
+
extensions: [".apl", ".dyalog"],
|
|
211
|
+
author: "Kenneth E. Iverson",
|
|
212
|
+
website: "https://www.dyalog.com",
|
|
213
|
+
paradigms: ["array", "functional", "interactive"],
|
|
214
|
+
tooling: {
|
|
215
|
+
runtimes: ["Dyalog APL", "GNU APL", "NARS2000"],
|
|
216
|
+
ecosystems: ["Array Programming", "Data Analysis", "Financial Computing"]
|
|
217
|
+
},
|
|
218
|
+
version: "ISO/IEC 13751:2001",
|
|
219
|
+
logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_apl.svg",
|
|
220
|
+
i18n: {
|
|
221
|
+
en: {
|
|
222
|
+
name: "APL",
|
|
223
|
+
description: "An array-oriented language known for concise symbolic notation and interactive use.",
|
|
224
|
+
longDescription: "APL centers computation around arrays, higher-order operations, and a compact mathematical notation that can express complex transformations in very little code.\n\nIt has influenced many array languages and remains useful in exploratory analysis, financial modeling, algorithm design, and systems where terse interactive computation is valuable."
|
|
225
|
+
},
|
|
226
|
+
es: {
|
|
227
|
+
name: "APL",
|
|
228
|
+
description: "Un lenguaje orientado a arreglos conocido por su notacion simbolica concisa y uso interactivo.",
|
|
229
|
+
longDescription: "APL centra la computacion en arreglos, operaciones de orden superior y una notacion matematica compacta que puede expresar transformaciones complejas en muy poco codigo.\n\nHa influido en muchos lenguajes de arreglos y sigue siendo util en analisis exploratorio, modelos financieros, diseno de algoritmos y sistemas donde la computacion interactiva concisa aporta valor."
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
};
|
|
233
|
+
}
|
|
234
|
+
});
|
|
235
|
+
|
|
236
|
+
// src/languages/applescript.ts
|
|
237
|
+
var applescript_exports = {};
|
|
238
|
+
__export(applescript_exports, {
|
|
239
|
+
applescript: () => applescript
|
|
240
|
+
});
|
|
241
|
+
var applescript;
|
|
242
|
+
var init_applescript = __esm({
|
|
243
|
+
"src/languages/applescript.ts"() {
|
|
244
|
+
applescript = {
|
|
245
|
+
slug: "applescript",
|
|
246
|
+
publishedDate: "1993-10-01",
|
|
247
|
+
extensions: [".applescript", ".scpt", ".scptd"],
|
|
248
|
+
author: "Apple Inc.",
|
|
249
|
+
website: "https://developer.apple.com/library/archive/documentation/AppleScript/Conceptual/AppleScriptX/AppleScriptX.html",
|
|
250
|
+
paradigms: ["scripting", "automation", "event-driven"],
|
|
251
|
+
tooling: {
|
|
252
|
+
runtimes: ["macOS", "osascript", "Script Editor"],
|
|
253
|
+
ecosystems: ["macOS", "Desktop Automation"]
|
|
254
|
+
},
|
|
255
|
+
version: "2.8",
|
|
256
|
+
logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_applescript.svg",
|
|
257
|
+
i18n: {
|
|
258
|
+
en: {
|
|
259
|
+
name: "AppleScript",
|
|
260
|
+
description: "A macOS scripting language for automating applications through Apple events.",
|
|
261
|
+
longDescription: "AppleScript provides an English-like syntax for controlling scriptable macOS applications, files, windows, workflows, and system services.\n\nIt is commonly used for desktop automation, publishing workflows, batch operations, application glue code, and user-facing scripts that coordinate multiple Mac apps."
|
|
262
|
+
},
|
|
263
|
+
es: {
|
|
264
|
+
name: "AppleScript",
|
|
265
|
+
description: "Un lenguaje de scripting de macOS para automatizar aplicaciones mediante Apple events.",
|
|
266
|
+
longDescription: "AppleScript ofrece una sintaxis similar al ingles para controlar aplicaciones scriptables de macOS, archivos, ventanas, flujos de trabajo y servicios del sistema.\n\nSe usa comunmente para automatizacion de escritorio, flujos editoriales, operaciones por lotes, codigo de integracion entre aplicaciones y scripts de usuario que coordinan varias apps de Mac."
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
};
|
|
270
|
+
}
|
|
271
|
+
});
|
|
272
|
+
|
|
273
|
+
// src/languages/arduino.ts
|
|
274
|
+
var arduino_exports = {};
|
|
275
|
+
__export(arduino_exports, {
|
|
276
|
+
arduino: () => arduino
|
|
277
|
+
});
|
|
278
|
+
var arduino;
|
|
279
|
+
var init_arduino = __esm({
|
|
280
|
+
"src/languages/arduino.ts"() {
|
|
281
|
+
arduino = {
|
|
282
|
+
slug: "arduino",
|
|
283
|
+
publishedDate: "2005-01-01",
|
|
284
|
+
extensions: [".ino", ".pde"],
|
|
285
|
+
author: "Arduino",
|
|
286
|
+
website: "https://www.arduino.cc",
|
|
287
|
+
paradigms: ["imperative", "procedural", "embedded"],
|
|
288
|
+
tooling: {
|
|
289
|
+
runtimes: ["Arduino Core", "Microcontroller Firmware"],
|
|
290
|
+
packageManagers: ["Arduino Library Manager", "PlatformIO"],
|
|
291
|
+
ecosystems: ["Embedded", "IoT", "Prototyping"]
|
|
292
|
+
},
|
|
293
|
+
version: "Arduino API 1.0",
|
|
294
|
+
logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_arduino.svg",
|
|
295
|
+
i18n: {
|
|
296
|
+
en: {
|
|
297
|
+
name: "Arduino Sketch",
|
|
298
|
+
description: "A C/C++-based sketch format for programming Arduino boards and embedded devices.",
|
|
299
|
+
longDescription: "Arduino sketches wrap embedded C and C++ development in a beginner-friendly project model with setup and loop entry points, board cores, and hardware libraries.\n\nThey are widely used for electronics prototyping, education, robotics, sensors, IoT devices, and small firmware projects that interact directly with physical components."
|
|
300
|
+
},
|
|
301
|
+
es: {
|
|
302
|
+
name: "Arduino Sketch",
|
|
303
|
+
description: "Un formato de sketch basado en C/C++ para programar placas Arduino y dispositivos embebidos.",
|
|
304
|
+
longDescription: "Los sketches de Arduino envuelven el desarrollo embebido en C y C++ en un modelo de proyecto accesible con puntos de entrada setup y loop, cores de placas y bibliotecas de hardware.\n\nSe usan ampliamente para prototipos electronicos, educacion, robotica, sensores, dispositivos IoT y pequenos proyectos de firmware que interactuan directamente con componentes fisicos."
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
};
|
|
308
|
+
}
|
|
309
|
+
});
|
|
310
|
+
|
|
161
311
|
// src/languages/asciidoc.ts
|
|
162
312
|
var asciidoc_exports = {};
|
|
163
313
|
__export(asciidoc_exports, {
|
|
@@ -310,6 +460,43 @@ var init_astro = __esm({
|
|
|
310
460
|
}
|
|
311
461
|
});
|
|
312
462
|
|
|
463
|
+
// src/languages/autohotkey.ts
|
|
464
|
+
var autohotkey_exports = {};
|
|
465
|
+
__export(autohotkey_exports, {
|
|
466
|
+
autohotkey: () => autohotkey
|
|
467
|
+
});
|
|
468
|
+
var autohotkey;
|
|
469
|
+
var init_autohotkey = __esm({
|
|
470
|
+
"src/languages/autohotkey.ts"() {
|
|
471
|
+
autohotkey = {
|
|
472
|
+
slug: "autohotkey",
|
|
473
|
+
publishedDate: "2003-11-10",
|
|
474
|
+
extensions: [".ahk", ".ah2"],
|
|
475
|
+
author: "Chris Mallett",
|
|
476
|
+
website: "https://www.autohotkey.com",
|
|
477
|
+
paradigms: ["scripting", "automation", "event-driven", "imperative"],
|
|
478
|
+
tooling: {
|
|
479
|
+
runtimes: ["AutoHotkey"],
|
|
480
|
+
ecosystems: ["Windows", "Desktop Automation"]
|
|
481
|
+
},
|
|
482
|
+
version: "2.0",
|
|
483
|
+
logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_autohotkey.svg",
|
|
484
|
+
i18n: {
|
|
485
|
+
en: {
|
|
486
|
+
name: "AutoHotkey",
|
|
487
|
+
description: "A Windows scripting language for hotkeys, macros, automation, and small utilities.",
|
|
488
|
+
longDescription: "AutoHotkey scripts automate Windows workflows through hotkeys, text expansion, GUI automation, window management, keyboard and mouse control, and custom utility scripts.\n\nIt is popular for personal productivity, repetitive task automation, quick desktop tooling, application launchers, and accessibility-oriented workflows."
|
|
489
|
+
},
|
|
490
|
+
es: {
|
|
491
|
+
name: "AutoHotkey",
|
|
492
|
+
description: "Un lenguaje de scripting para Windows orientado a atajos, macros, automatizacion y utilidades pequenas.",
|
|
493
|
+
longDescription: "Los scripts de AutoHotkey automatizan flujos de Windows mediante atajos, expansion de texto, automatizacion de GUI, gestion de ventanas, control de teclado y mouse, y utilidades personalizadas.\n\nEs popular para productividad personal, automatizacion de tareas repetitivas, herramientas rapidas de escritorio, lanzadores de aplicaciones y flujos orientados a accesibilidad."
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
};
|
|
497
|
+
}
|
|
498
|
+
});
|
|
499
|
+
|
|
313
500
|
// src/languages/awk.ts
|
|
314
501
|
var awk_exports = {};
|
|
315
502
|
__export(awk_exports, {
|
|
@@ -725,6 +912,44 @@ var init_coffeescript = __esm({
|
|
|
725
912
|
}
|
|
726
913
|
});
|
|
727
914
|
|
|
915
|
+
// src/languages/coldfusion.ts
|
|
916
|
+
var coldfusion_exports = {};
|
|
917
|
+
__export(coldfusion_exports, {
|
|
918
|
+
coldfusion: () => coldfusion
|
|
919
|
+
});
|
|
920
|
+
var coldfusion;
|
|
921
|
+
var init_coldfusion = __esm({
|
|
922
|
+
"src/languages/coldfusion.ts"() {
|
|
923
|
+
coldfusion = {
|
|
924
|
+
slug: "coldfusion",
|
|
925
|
+
publishedDate: "1995-07-01",
|
|
926
|
+
extensions: [".cfm", ".cfml", ".cfc"],
|
|
927
|
+
author: "Allaire / Adobe",
|
|
928
|
+
website: "https://www.adobe.com/products/coldfusion-family.html",
|
|
929
|
+
paradigms: ["tag-based", "object-oriented", "scripting", "web"],
|
|
930
|
+
tooling: {
|
|
931
|
+
runtimes: ["Adobe ColdFusion", "Lucee"],
|
|
932
|
+
packageManagers: ["CommandBox"],
|
|
933
|
+
ecosystems: ["Web", "JVM", "Enterprise"]
|
|
934
|
+
},
|
|
935
|
+
version: "ColdFusion 2025",
|
|
936
|
+
logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_cf.svg",
|
|
937
|
+
i18n: {
|
|
938
|
+
en: {
|
|
939
|
+
name: "ColdFusion",
|
|
940
|
+
description: "A JVM-based web language and platform using CFML tags, scripts, and components.",
|
|
941
|
+
longDescription: "ColdFusion uses CFML to build server-rendered web applications, APIs, scheduled jobs, and enterprise integrations with a mix of tag-based markup and script syntax.\n\nIts ecosystem includes Adobe ColdFusion, Lucee, CFML components, database access, templating, mail, file processing, and tooling for long-lived business applications."
|
|
942
|
+
},
|
|
943
|
+
es: {
|
|
944
|
+
name: "ColdFusion",
|
|
945
|
+
description: "Un lenguaje y plataforma web sobre JVM que usa etiquetas, scripts y componentes CFML.",
|
|
946
|
+
longDescription: "ColdFusion usa CFML para crear aplicaciones web renderizadas en servidor, APIs, tareas programadas e integraciones empresariales con una mezcla de marcado basado en etiquetas y sintaxis de script.\n\nSu ecosistema incluye Adobe ColdFusion, Lucee, componentes CFML, acceso a bases de datos, plantillas, correo, procesamiento de archivos y herramientas para aplicaciones de negocio de larga vida."
|
|
947
|
+
}
|
|
948
|
+
}
|
|
949
|
+
};
|
|
950
|
+
}
|
|
951
|
+
});
|
|
952
|
+
|
|
728
953
|
// src/languages/cpp.ts
|
|
729
954
|
var cpp_exports = {};
|
|
730
955
|
__export(cpp_exports, {
|
|
@@ -948,6 +1173,44 @@ var init_cue = __esm({
|
|
|
948
1173
|
}
|
|
949
1174
|
});
|
|
950
1175
|
|
|
1176
|
+
// src/languages/cython.ts
|
|
1177
|
+
var cython_exports = {};
|
|
1178
|
+
__export(cython_exports, {
|
|
1179
|
+
cython: () => cython
|
|
1180
|
+
});
|
|
1181
|
+
var cython;
|
|
1182
|
+
var init_cython = __esm({
|
|
1183
|
+
"src/languages/cython.ts"() {
|
|
1184
|
+
cython = {
|
|
1185
|
+
slug: "cython",
|
|
1186
|
+
publishedDate: "2007-07-28",
|
|
1187
|
+
extensions: [".pyx", ".pxd", ".pxi"],
|
|
1188
|
+
author: "Robert Bradshaw, Stefan Behnel, Dag Sverre Seljebotn, Greg Ewing, et al.",
|
|
1189
|
+
website: "https://cython.org",
|
|
1190
|
+
paradigms: ["object-oriented", "imperative", "procedural"],
|
|
1191
|
+
tooling: {
|
|
1192
|
+
runtimes: ["CPython"],
|
|
1193
|
+
packageManagers: ["pip", "conda", "Poetry"],
|
|
1194
|
+
ecosystems: ["Python", "Native Extensions", "Scientific Computing"]
|
|
1195
|
+
},
|
|
1196
|
+
version: "3.1.4",
|
|
1197
|
+
logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_cython.svg",
|
|
1198
|
+
i18n: {
|
|
1199
|
+
en: {
|
|
1200
|
+
name: "Cython",
|
|
1201
|
+
description: "A Python superset for compiling typed Python-like code into C extension modules.",
|
|
1202
|
+
longDescription: "Cython extends Python with optional static types, C declarations, and direct calls into C and C++ APIs, allowing Python code to be compiled into native extension modules.\n\nIt is widely used to speed up numeric code, wrap native libraries, build scientific Python packages, and write performance-sensitive components while keeping Python-like syntax."
|
|
1203
|
+
},
|
|
1204
|
+
es: {
|
|
1205
|
+
name: "Cython",
|
|
1206
|
+
description: "Un superconjunto de Python para compilar codigo tipado similar a Python como extensiones en C.",
|
|
1207
|
+
longDescription: "Cython extiende Python con tipos estaticos opcionales, declaraciones de C y llamadas directas a APIs de C y C++, permitiendo compilar codigo Python en modulos de extension nativos.\n\nSe usa ampliamente para acelerar codigo numerico, envolver bibliotecas nativas, crear paquetes cientificos de Python y escribir componentes sensibles al rendimiento manteniendo una sintaxis parecida a Python."
|
|
1208
|
+
}
|
|
1209
|
+
}
|
|
1210
|
+
};
|
|
1211
|
+
}
|
|
1212
|
+
});
|
|
1213
|
+
|
|
951
1214
|
// src/languages/d.ts
|
|
952
1215
|
var d_exports = {};
|
|
953
1216
|
__export(d_exports, {
|
|
@@ -1137,6 +1400,44 @@ var init_elm = __esm({
|
|
|
1137
1400
|
}
|
|
1138
1401
|
});
|
|
1139
1402
|
|
|
1403
|
+
// src/languages/erb.ts
|
|
1404
|
+
var erb_exports = {};
|
|
1405
|
+
__export(erb_exports, {
|
|
1406
|
+
erb: () => erb
|
|
1407
|
+
});
|
|
1408
|
+
var erb;
|
|
1409
|
+
var init_erb = __esm({
|
|
1410
|
+
"src/languages/erb.ts"() {
|
|
1411
|
+
erb = {
|
|
1412
|
+
slug: "erb",
|
|
1413
|
+
publishedDate: "2000-01-01",
|
|
1414
|
+
extensions: [".erb", ".rhtml", ".html.erb"],
|
|
1415
|
+
author: "Masatoshi Seki / Ruby",
|
|
1416
|
+
website: "https://ruby-doc.org/stdlib/erb/",
|
|
1417
|
+
paradigms: ["templating", "embedded", "markup"],
|
|
1418
|
+
tooling: {
|
|
1419
|
+
runtimes: ["Ruby", "Ruby on Rails"],
|
|
1420
|
+
packageManagers: ["RubyGems", "Bundler"],
|
|
1421
|
+
ecosystems: ["Web", "Ruby", "Static Sites"]
|
|
1422
|
+
},
|
|
1423
|
+
version: "Ruby stdlib",
|
|
1424
|
+
logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Ruby_logo.svg",
|
|
1425
|
+
i18n: {
|
|
1426
|
+
en: {
|
|
1427
|
+
name: "ERB",
|
|
1428
|
+
description: "A Ruby templating system for embedding Ruby code inside text documents.",
|
|
1429
|
+
longDescription: "ERB templates combine plain text, HTML, XML, or configuration output with embedded Ruby expressions and control flow markers.\n\nThey are commonly used in Ruby on Rails views, static site generators, configuration generation, email templates, and any Ruby workflow that needs programmable text rendering."
|
|
1430
|
+
},
|
|
1431
|
+
es: {
|
|
1432
|
+
name: "ERB",
|
|
1433
|
+
description: "Un sistema de plantillas de Ruby para incrustar codigo Ruby dentro de documentos de texto.",
|
|
1434
|
+
longDescription: "Las plantillas ERB combinan texto plano, HTML, XML o salidas de configuracion con expresiones Ruby incrustadas y marcadores de control de flujo.\n\nSe usan comunmente en vistas de Ruby on Rails, generadores de sitios estaticos, generacion de configuracion, plantillas de correo y cualquier flujo Ruby que necesite renderizado programable de texto."
|
|
1435
|
+
}
|
|
1436
|
+
}
|
|
1437
|
+
};
|
|
1438
|
+
}
|
|
1439
|
+
});
|
|
1440
|
+
|
|
1140
1441
|
// src/languages/erlang.ts
|
|
1141
1442
|
var erlang_exports = {};
|
|
1142
1443
|
__export(erlang_exports, {
|
|
@@ -1213,6 +1514,43 @@ var init_fennel = __esm({
|
|
|
1213
1514
|
}
|
|
1214
1515
|
});
|
|
1215
1516
|
|
|
1517
|
+
// src/languages/forth.ts
|
|
1518
|
+
var forth_exports = {};
|
|
1519
|
+
__export(forth_exports, {
|
|
1520
|
+
forth: () => forth
|
|
1521
|
+
});
|
|
1522
|
+
var forth;
|
|
1523
|
+
var init_forth = __esm({
|
|
1524
|
+
"src/languages/forth.ts"() {
|
|
1525
|
+
forth = {
|
|
1526
|
+
slug: "forth",
|
|
1527
|
+
publishedDate: "1970-01-01",
|
|
1528
|
+
extensions: [".fs", ".fth", ".forth", ".4th"],
|
|
1529
|
+
author: "Charles H. Moore",
|
|
1530
|
+
website: "https://forth-standard.org",
|
|
1531
|
+
paradigms: ["stack-based", "concatenative", "procedural", "interactive"],
|
|
1532
|
+
tooling: {
|
|
1533
|
+
runtimes: ["Gforth", "SwiftForth", "VFX Forth"],
|
|
1534
|
+
ecosystems: ["Embedded", "Firmware", "Language Implementation"]
|
|
1535
|
+
},
|
|
1536
|
+
version: "Forth 2012",
|
|
1537
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/a/a5/Gforth_Logo.png",
|
|
1538
|
+
i18n: {
|
|
1539
|
+
en: {
|
|
1540
|
+
name: "Forth",
|
|
1541
|
+
description: "A stack-based extensible language used for embedded systems, firmware, and tooling.",
|
|
1542
|
+
longDescription: "Forth programs are built from small words that operate on a data stack, encouraging interactive development, compact runtimes, and language extension from within the program itself.\n\nIt has a long history in embedded systems, boot firmware, instrumentation, space hardware, and custom control environments where simplicity and direct hardware access matter."
|
|
1543
|
+
},
|
|
1544
|
+
es: {
|
|
1545
|
+
name: "Forth",
|
|
1546
|
+
description: "Un lenguaje extensible basado en pila usado en sistemas embebidos, firmware y herramientas.",
|
|
1547
|
+
longDescription: "Los programas Forth se construyen con palabras pequenas que operan sobre una pila de datos, fomentando desarrollo interactivo, runtimes compactos y extension del lenguaje desde el propio programa.\n\nTiene una larga historia en sistemas embebidos, firmware de arranque, instrumentacion, hardware espacial y entornos de control personalizados donde importan la simplicidad y el acceso directo al hardware."
|
|
1548
|
+
}
|
|
1549
|
+
}
|
|
1550
|
+
};
|
|
1551
|
+
}
|
|
1552
|
+
});
|
|
1553
|
+
|
|
1216
1554
|
// src/languages/fortran.ts
|
|
1217
1555
|
var fortran_exports = {};
|
|
1218
1556
|
__export(fortran_exports, {
|
|
@@ -1998,6 +2336,44 @@ var init_json = __esm({
|
|
|
1998
2336
|
}
|
|
1999
2337
|
});
|
|
2000
2338
|
|
|
2339
|
+
// src/languages/jsonnet.ts
|
|
2340
|
+
var jsonnet_exports = {};
|
|
2341
|
+
__export(jsonnet_exports, {
|
|
2342
|
+
jsonnet: () => jsonnet
|
|
2343
|
+
});
|
|
2344
|
+
var jsonnet;
|
|
2345
|
+
var init_jsonnet = __esm({
|
|
2346
|
+
"src/languages/jsonnet.ts"() {
|
|
2347
|
+
jsonnet = {
|
|
2348
|
+
slug: "jsonnet",
|
|
2349
|
+
publishedDate: "2014-04-01",
|
|
2350
|
+
extensions: [".jsonnet", ".libsonnet"],
|
|
2351
|
+
author: "Google",
|
|
2352
|
+
website: "https://jsonnet.org",
|
|
2353
|
+
paradigms: ["functional", "declarative", "configuration"],
|
|
2354
|
+
tooling: {
|
|
2355
|
+
runtimes: ["Jsonnet", "go-jsonnet"],
|
|
2356
|
+
packageManagers: ["jsonnet-bundler"],
|
|
2357
|
+
ecosystems: ["Configuration", "Kubernetes", "Infrastructure"]
|
|
2358
|
+
},
|
|
2359
|
+
version: "0.21.0",
|
|
2360
|
+
logo: "https://jsonnet.org/img/isologo.svg",
|
|
2361
|
+
i18n: {
|
|
2362
|
+
en: {
|
|
2363
|
+
name: "Jsonnet",
|
|
2364
|
+
description: "A data templating language for generating JSON and related configuration formats.",
|
|
2365
|
+
longDescription: "Jsonnet adds variables, functions, imports, conditionals, object composition, and other programming constructs to a JSON-like syntax for generating structured data.\n\nIt is commonly used for Kubernetes manifests, infrastructure configuration, application settings, and reusable configuration libraries where plain JSON becomes repetitive."
|
|
2366
|
+
},
|
|
2367
|
+
es: {
|
|
2368
|
+
name: "Jsonnet",
|
|
2369
|
+
description: "Un lenguaje de plantillas de datos para generar JSON y formatos de configuracion relacionados.",
|
|
2370
|
+
longDescription: "Jsonnet agrega variables, funciones, imports, condicionales, composicion de objetos y otros constructos de programacion a una sintaxis similar a JSON para generar datos estructurados.\n\nSe usa comunmente en manifiestos de Kubernetes, configuracion de infraestructura, ajustes de aplicaciones y bibliotecas reutilizables de configuracion cuando JSON plano se vuelve repetitivo."
|
|
2371
|
+
}
|
|
2372
|
+
}
|
|
2373
|
+
};
|
|
2374
|
+
}
|
|
2375
|
+
});
|
|
2376
|
+
|
|
2001
2377
|
// src/languages/julia.ts
|
|
2002
2378
|
var julia_exports = {};
|
|
2003
2379
|
__export(julia_exports, {
|
|
@@ -4365,11 +4741,16 @@ var init_zsh = __esm({
|
|
|
4365
4741
|
init_abap();
|
|
4366
4742
|
init_actionscript();
|
|
4367
4743
|
init_ada();
|
|
4744
|
+
init_antlr();
|
|
4368
4745
|
init_apex();
|
|
4746
|
+
init_apl();
|
|
4747
|
+
init_applescript();
|
|
4748
|
+
init_arduino();
|
|
4369
4749
|
init_asciidoc();
|
|
4370
4750
|
init_asp();
|
|
4371
4751
|
init_assembly();
|
|
4372
4752
|
init_astro();
|
|
4753
|
+
init_autohotkey();
|
|
4373
4754
|
init_awk();
|
|
4374
4755
|
init_bash();
|
|
4375
4756
|
init_batch();
|
|
@@ -4381,19 +4762,23 @@ init_clojure();
|
|
|
4381
4762
|
init_cmake();
|
|
4382
4763
|
init_cobol();
|
|
4383
4764
|
init_coffeescript();
|
|
4765
|
+
init_coldfusion();
|
|
4384
4766
|
init_cpp();
|
|
4385
4767
|
init_crystal();
|
|
4386
4768
|
init_csharp();
|
|
4387
4769
|
init_css();
|
|
4388
4770
|
init_cuda();
|
|
4389
4771
|
init_cue();
|
|
4772
|
+
init_cython();
|
|
4390
4773
|
init_d();
|
|
4391
4774
|
init_dart();
|
|
4392
4775
|
init_dockerfile();
|
|
4393
4776
|
init_elixir();
|
|
4394
4777
|
init_elm();
|
|
4778
|
+
init_erb();
|
|
4395
4779
|
init_erlang();
|
|
4396
4780
|
init_fennel();
|
|
4781
|
+
init_forth();
|
|
4397
4782
|
init_fortran();
|
|
4398
4783
|
init_fsharp();
|
|
4399
4784
|
init_gdscript();
|
|
@@ -4415,6 +4800,7 @@ init_java();
|
|
|
4415
4800
|
init_javascript();
|
|
4416
4801
|
init_jinja();
|
|
4417
4802
|
init_json();
|
|
4803
|
+
init_jsonnet();
|
|
4418
4804
|
init_julia();
|
|
4419
4805
|
init_jupyter_notebook();
|
|
4420
4806
|
init_kotlin();
|
|
@@ -4482,12 +4868,17 @@ var languages = [
|
|
|
4482
4868
|
abap,
|
|
4483
4869
|
actionscript,
|
|
4484
4870
|
ada,
|
|
4871
|
+
antlr,
|
|
4485
4872
|
apex,
|
|
4873
|
+
apl,
|
|
4874
|
+
applescript,
|
|
4875
|
+
arduino,
|
|
4486
4876
|
asciidoc,
|
|
4487
4877
|
asp,
|
|
4488
4878
|
astro,
|
|
4489
4879
|
assembly,
|
|
4490
4880
|
awk,
|
|
4881
|
+
autohotkey,
|
|
4491
4882
|
bash,
|
|
4492
4883
|
batch,
|
|
4493
4884
|
bazel,
|
|
@@ -4497,6 +4888,7 @@ var languages = [
|
|
|
4497
4888
|
cmake,
|
|
4498
4889
|
clojure,
|
|
4499
4890
|
coffeescript,
|
|
4891
|
+
coldfusion,
|
|
4500
4892
|
cobol,
|
|
4501
4893
|
cpp,
|
|
4502
4894
|
csharp,
|
|
@@ -4504,14 +4896,17 @@ var languages = [
|
|
|
4504
4896
|
css,
|
|
4505
4897
|
cue,
|
|
4506
4898
|
cuda,
|
|
4899
|
+
cython,
|
|
4507
4900
|
d,
|
|
4508
4901
|
dart,
|
|
4509
4902
|
dockerfile,
|
|
4510
4903
|
elixir,
|
|
4511
4904
|
elm,
|
|
4905
|
+
erb,
|
|
4512
4906
|
erlang,
|
|
4513
4907
|
fennel,
|
|
4514
4908
|
fortran,
|
|
4909
|
+
forth,
|
|
4515
4910
|
fsharp,
|
|
4516
4911
|
gdscript,
|
|
4517
4912
|
git,
|
|
@@ -4532,6 +4927,7 @@ var languages = [
|
|
|
4532
4927
|
javascript,
|
|
4533
4928
|
jinja,
|
|
4534
4929
|
json,
|
|
4930
|
+
jsonnet,
|
|
4535
4931
|
jupyterNotebook,
|
|
4536
4932
|
julia,
|
|
4537
4933
|
kotlin,
|
|
@@ -4654,12 +5050,17 @@ var languageIndex = [
|
|
|
4654
5050
|
{ slug: "abap", extensions: [".abap"] },
|
|
4655
5051
|
{ slug: "actionscript", extensions: [".as"] },
|
|
4656
5052
|
{ slug: "ada", extensions: [".adb", ".ads", ".ada"] },
|
|
5053
|
+
{ slug: "antlr", extensions: [".g4"] },
|
|
4657
5054
|
{ slug: "apex", extensions: [".cls", ".trigger"] },
|
|
5055
|
+
{ slug: "apl", extensions: [".apl", ".dyalog"] },
|
|
5056
|
+
{ slug: "applescript", extensions: [".applescript", ".scpt", ".scptd"] },
|
|
5057
|
+
{ slug: "arduino", extensions: [".ino", ".pde"] },
|
|
4658
5058
|
{ slug: "asciidoc", extensions: [".adoc", ".asciidoc", ".asc"] },
|
|
4659
5059
|
{ slug: "asp", extensions: [".asp", ".aspx", ".ascx", ".ashx", ".asmx", ".master"] },
|
|
4660
5060
|
{ slug: "astro", extensions: [".astro"] },
|
|
4661
5061
|
{ slug: "assembly", extensions: [".asm", ".s", ".S", ".inc"] },
|
|
4662
5062
|
{ slug: "awk", extensions: [".awk"] },
|
|
5063
|
+
{ slug: "autohotkey", extensions: [".ahk", ".ah2"] },
|
|
4663
5064
|
{
|
|
4664
5065
|
slug: "bash",
|
|
4665
5066
|
extensions: [".sh", ".bash", ".bashrc", ".bash_profile", ".bash_login", ".profile"]
|
|
@@ -4675,6 +5076,7 @@ var languageIndex = [
|
|
|
4675
5076
|
{ slug: "cmake", extensions: ["CMakeLists.txt", ".cmake"] },
|
|
4676
5077
|
{ slug: "clojure", extensions: [".clj", ".cljs", ".cljc", ".edn", ".bb"] },
|
|
4677
5078
|
{ slug: "coffeescript", extensions: [".coffee", ".litcoffee", ".cson"] },
|
|
5079
|
+
{ slug: "coldfusion", extensions: [".cfm", ".cfml", ".cfc"] },
|
|
4678
5080
|
{ slug: "cobol", extensions: [".cob", ".cbl", ".cobol", ".cpy"] },
|
|
4679
5081
|
{ slug: "cpp", extensions: [".cpp", ".cc", ".cxx", ".h", ".hpp", ".hh", ".hxx"] },
|
|
4680
5082
|
{ slug: "csharp", extensions: [".cs", ".csx"] },
|
|
@@ -4682,11 +5084,13 @@ var languageIndex = [
|
|
|
4682
5084
|
{ slug: "css", extensions: [".css"] },
|
|
4683
5085
|
{ slug: "cue", extensions: [".cue"] },
|
|
4684
5086
|
{ slug: "cuda", extensions: [".cu", ".cuh"] },
|
|
5087
|
+
{ slug: "cython", extensions: [".pyx", ".pxd", ".pxi"] },
|
|
4685
5088
|
{ slug: "d", extensions: [".d", ".di"] },
|
|
4686
5089
|
{ slug: "dart", extensions: [".dart"] },
|
|
4687
5090
|
{ slug: "dockerfile", extensions: ["Dockerfile", ".dockerfile"] },
|
|
4688
5091
|
{ slug: "elixir", extensions: [".ex", ".exs", ".eex", ".leex", ".heex"] },
|
|
4689
5092
|
{ slug: "elm", extensions: [".elm"] },
|
|
5093
|
+
{ slug: "erb", extensions: [".erb", ".rhtml", ".html.erb"] },
|
|
4690
5094
|
{
|
|
4691
5095
|
slug: "erlang",
|
|
4692
5096
|
extensions: [".erl", ".hrl", ".app.src", ".escript", ".xrl", ".yrl", "rebar.config"]
|
|
@@ -4696,6 +5100,7 @@ var languageIndex = [
|
|
|
4696
5100
|
slug: "fortran",
|
|
4697
5101
|
extensions: [".f", ".for", ".ftn", ".f90", ".f95", ".f03", ".f08", ".f18", ".f23"]
|
|
4698
5102
|
},
|
|
5103
|
+
{ slug: "forth", extensions: [".fs", ".fth", ".forth", ".4th"] },
|
|
4699
5104
|
{ slug: "fsharp", extensions: [".fs", ".fsi", ".fsx", ".fsscript"] },
|
|
4700
5105
|
{ slug: "gdscript", extensions: [".gd"] },
|
|
4701
5106
|
{ slug: "git", extensions: [".git", ".gitignore", ".gitattributes", ".gitmodules", ".gitkeep"] },
|
|
@@ -4719,6 +5124,7 @@ var languageIndex = [
|
|
|
4719
5124
|
{ slug: "javascript", extensions: [".js", ".mjs", ".cjs", ".jsx"] },
|
|
4720
5125
|
{ slug: "jinja", extensions: [".jinja", ".jinja2", ".j2"] },
|
|
4721
5126
|
{ slug: "json", extensions: [".json"] },
|
|
5127
|
+
{ slug: "jsonnet", extensions: [".jsonnet", ".libsonnet"] },
|
|
4722
5128
|
{ slug: "jupyter-notebook", extensions: [".ipynb"] },
|
|
4723
5129
|
{ slug: "julia", extensions: [".jl"] },
|
|
4724
5130
|
{ slug: "kotlin", extensions: [".kt", ".kts"] },
|
|
@@ -4793,11 +5199,16 @@ var languageLoaders = {
|
|
|
4793
5199
|
abap: () => Promise.resolve().then(() => (init_abap(), abap_exports)).then((module) => module.abap),
|
|
4794
5200
|
actionscript: () => Promise.resolve().then(() => (init_actionscript(), actionscript_exports)).then((module) => module.actionscript),
|
|
4795
5201
|
ada: () => Promise.resolve().then(() => (init_ada(), ada_exports)).then((module) => module.ada),
|
|
5202
|
+
antlr: () => Promise.resolve().then(() => (init_antlr(), antlr_exports)).then((module) => module.antlr),
|
|
4796
5203
|
apex: () => Promise.resolve().then(() => (init_apex(), apex_exports)).then((module) => module.apex),
|
|
5204
|
+
apl: () => Promise.resolve().then(() => (init_apl(), apl_exports)).then((module) => module.apl),
|
|
5205
|
+
applescript: () => Promise.resolve().then(() => (init_applescript(), applescript_exports)).then((module) => module.applescript),
|
|
5206
|
+
arduino: () => Promise.resolve().then(() => (init_arduino(), arduino_exports)).then((module) => module.arduino),
|
|
4797
5207
|
asciidoc: () => Promise.resolve().then(() => (init_asciidoc(), asciidoc_exports)).then((module) => module.asciidoc),
|
|
4798
5208
|
asp: () => Promise.resolve().then(() => (init_asp(), asp_exports)).then((module) => module.asp),
|
|
4799
5209
|
assembly: () => Promise.resolve().then(() => (init_assembly(), assembly_exports)).then((module) => module.assembly),
|
|
4800
5210
|
astro: () => Promise.resolve().then(() => (init_astro(), astro_exports)).then((module) => module.astro),
|
|
5211
|
+
autohotkey: () => Promise.resolve().then(() => (init_autohotkey(), autohotkey_exports)).then((module) => module.autohotkey),
|
|
4801
5212
|
awk: () => Promise.resolve().then(() => (init_awk(), awk_exports)).then((module) => module.awk),
|
|
4802
5213
|
bash: () => Promise.resolve().then(() => (init_bash(), bash_exports)).then((module) => module.bash),
|
|
4803
5214
|
batch: () => Promise.resolve().then(() => (init_batch(), batch_exports)).then((module) => module.batch),
|
|
@@ -4809,20 +5220,24 @@ var languageLoaders = {
|
|
|
4809
5220
|
clojure: () => Promise.resolve().then(() => (init_clojure(), clojure_exports)).then((module) => module.clojure),
|
|
4810
5221
|
cobol: () => Promise.resolve().then(() => (init_cobol(), cobol_exports)).then((module) => module.cobol),
|
|
4811
5222
|
coffeescript: () => Promise.resolve().then(() => (init_coffeescript(), coffeescript_exports)).then((module) => module.coffeescript),
|
|
5223
|
+
coldfusion: () => Promise.resolve().then(() => (init_coldfusion(), coldfusion_exports)).then((module) => module.coldfusion),
|
|
4812
5224
|
cpp: () => Promise.resolve().then(() => (init_cpp(), cpp_exports)).then((module) => module.cpp),
|
|
4813
5225
|
csharp: () => Promise.resolve().then(() => (init_csharp(), csharp_exports)).then((module) => module.csharp),
|
|
4814
5226
|
crystal: () => Promise.resolve().then(() => (init_crystal(), crystal_exports)).then((module) => module.crystal),
|
|
4815
5227
|
css: () => Promise.resolve().then(() => (init_css(), css_exports)).then((module) => module.css),
|
|
4816
5228
|
cue: () => Promise.resolve().then(() => (init_cue(), cue_exports)).then((module) => module.cue),
|
|
4817
5229
|
cuda: () => Promise.resolve().then(() => (init_cuda(), cuda_exports)).then((module) => module.cuda),
|
|
5230
|
+
cython: () => Promise.resolve().then(() => (init_cython(), cython_exports)).then((module) => module.cython),
|
|
4818
5231
|
d: () => Promise.resolve().then(() => (init_d(), d_exports)).then((module) => module.d),
|
|
4819
5232
|
dart: () => Promise.resolve().then(() => (init_dart(), dart_exports)).then((module) => module.dart),
|
|
4820
5233
|
dockerfile: () => Promise.resolve().then(() => (init_dockerfile(), dockerfile_exports)).then((module) => module.dockerfile),
|
|
4821
5234
|
elixir: () => Promise.resolve().then(() => (init_elixir(), elixir_exports)).then((module) => module.elixir),
|
|
4822
5235
|
elm: () => Promise.resolve().then(() => (init_elm(), elm_exports)).then((module) => module.elm),
|
|
5236
|
+
erb: () => Promise.resolve().then(() => (init_erb(), erb_exports)).then((module) => module.erb),
|
|
4823
5237
|
erlang: () => Promise.resolve().then(() => (init_erlang(), erlang_exports)).then((module) => module.erlang),
|
|
4824
5238
|
fennel: () => Promise.resolve().then(() => (init_fennel(), fennel_exports)).then((module) => module.fennel),
|
|
4825
5239
|
fortran: () => Promise.resolve().then(() => (init_fortran(), fortran_exports)).then((module) => module.fortran),
|
|
5240
|
+
forth: () => Promise.resolve().then(() => (init_forth(), forth_exports)).then((module) => module.forth),
|
|
4826
5241
|
fsharp: () => Promise.resolve().then(() => (init_fsharp(), fsharp_exports)).then((module) => module.fsharp),
|
|
4827
5242
|
gdscript: () => Promise.resolve().then(() => (init_gdscript(), gdscript_exports)).then((module) => module.gdscript),
|
|
4828
5243
|
git: () => Promise.resolve().then(() => (init_git(), git_exports)).then((module) => module.git),
|
|
@@ -4843,6 +5258,7 @@ var languageLoaders = {
|
|
|
4843
5258
|
javascript: () => Promise.resolve().then(() => (init_javascript(), javascript_exports)).then((module) => module.javascript),
|
|
4844
5259
|
jinja: () => Promise.resolve().then(() => (init_jinja(), jinja_exports)).then((module) => module.jinja),
|
|
4845
5260
|
json: () => Promise.resolve().then(() => (init_json(), json_exports)).then((module) => module.json),
|
|
5261
|
+
jsonnet: () => Promise.resolve().then(() => (init_jsonnet(), jsonnet_exports)).then((module) => module.jsonnet),
|
|
4846
5262
|
"jupyter-notebook": () => Promise.resolve().then(() => (init_jupyter_notebook(), jupyter_notebook_exports)).then((module) => module.jupyterNotebook),
|
|
4847
5263
|
julia: () => Promise.resolve().then(() => (init_julia(), julia_exports)).then((module) => module.julia),
|
|
4848
5264
|
kotlin: () => Promise.resolve().then(() => (init_kotlin(), kotlin_exports)).then((module) => module.kotlin),
|