code-languages 1.29.0 → 1.30.0
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 +20 -10
- package/dist/api.cjs +436 -9
- package/dist/api.d.cts +2 -2
- package/dist/api.d.ts +2 -2
- package/dist/api.js +436 -9
- package/dist/detect-slugs.cjs +10 -0
- package/dist/detect-slugs.d.cts +1 -1
- package/dist/detect-slugs.d.ts +1 -1
- package/dist/detect-slugs.js +10 -0
- package/dist/detect.cjs +316 -9
- package/dist/detect.d.cts +1 -1
- package/dist/detect.d.ts +1 -1
- package/dist/detect.js +316 -9
- package/dist/i18n.d.cts +1 -1
- package/dist/i18n.d.ts +1 -1
- package/dist/index.cjs +469 -32
- package/dist/index.d.cts +302 -25
- package/dist/index.d.ts +302 -25
- package/dist/index.js +470 -33
- package/dist/{language-registry-nVRwyIen.d.cts → language-registry-BQKRHyKo.d.cts} +31 -1
- package/dist/{language-registry-nVRwyIen.d.ts → language-registry-BQKRHyKo.d.ts} +31 -1
- package/dist/languages/dafny.cjs +33 -0
- package/dist/languages/dafny.d.cts +30 -0
- package/dist/languages/dafny.d.ts +30 -0
- package/dist/languages/dafny.js +31 -0
- package/dist/languages/ejs.cjs +33 -0
- package/dist/languages/ejs.d.cts +30 -0
- package/dist/languages/ejs.d.ts +30 -0
- package/dist/languages/ejs.js +31 -0
- package/dist/languages/fish.cjs +1 -1
- package/dist/languages/fish.js +1 -1
- package/dist/languages/flux.cjs +1 -1
- package/dist/languages/flux.js +1 -1
- package/dist/languages/freemarker.cjs +33 -0
- package/dist/languages/freemarker.d.cts +30 -0
- package/dist/languages/freemarker.d.ts +30 -0
- package/dist/languages/freemarker.js +31 -0
- package/dist/languages/fstar.cjs +33 -0
- package/dist/languages/fstar.d.cts +30 -0
- package/dist/languages/fstar.d.ts +30 -0
- package/dist/languages/fstar.js +31 -0
- package/dist/languages/grain.cjs +1 -1
- package/dist/languages/grain.js +1 -1
- package/dist/languages/isabelle.cjs +32 -0
- package/dist/languages/isabelle.d.cts +29 -0
- package/dist/languages/isabelle.d.ts +29 -0
- package/dist/languages/isabelle.js +30 -0
- package/dist/languages/jsonc.cjs +32 -0
- package/dist/languages/jsonc.d.cts +29 -0
- package/dist/languages/jsonc.d.ts +29 -0
- package/dist/languages/jsonc.js +30 -0
- package/dist/languages/just.cjs +33 -0
- package/dist/languages/just.d.cts +30 -0
- package/dist/languages/just.d.ts +30 -0
- package/dist/languages/just.js +31 -0
- package/dist/languages/kcl.cjs +1 -1
- package/dist/languages/kcl.js +1 -1
- package/dist/languages/kdl.cjs +32 -0
- package/dist/languages/kdl.d.cts +29 -0
- package/dist/languages/kdl.d.ts +29 -0
- package/dist/languages/kdl.js +30 -0
- package/dist/languages/nickel.cjs +1 -1
- package/dist/languages/nickel.js +1 -1
- package/dist/languages/nushell.cjs +1 -1
- package/dist/languages/nushell.js +1 -1
- package/dist/languages/openapi.cjs +33 -0
- package/dist/languages/openapi.d.cts +30 -0
- package/dist/languages/openapi.d.ts +30 -0
- package/dist/languages/openapi.js +31 -0
- package/dist/languages/puppet.cjs +33 -0
- package/dist/languages/puppet.d.cts +30 -0
- package/dist/languages/puppet.d.ts +30 -0
- package/dist/languages/puppet.js +31 -0
- package/dist/languages/svelte.cjs +1 -1
- package/dist/languages/svelte.js +1 -1
- package/dist/languages/twig.cjs +1 -1
- package/dist/languages/twig.js +1 -1
- package/dist/languages/zsh.cjs +1 -1
- package/dist/languages/zsh.js +1 -1
- package/dist/{types-DHJuiiUR.d.cts → types-B0_wjl_Q.d.cts} +2 -2
- package/dist/{types-DHJuiiUR.d.ts → types-B0_wjl_Q.d.ts} +2 -2
- package/package.json +57 -6
package/dist/index.cjs
CHANGED
|
@@ -2415,6 +2415,45 @@ var init_d = __esm({
|
|
|
2415
2415
|
}
|
|
2416
2416
|
});
|
|
2417
2417
|
|
|
2418
|
+
// src/languages/dafny.ts
|
|
2419
|
+
var dafny_exports = {};
|
|
2420
|
+
__export(dafny_exports, {
|
|
2421
|
+
dafny: () => exports.dafny
|
|
2422
|
+
});
|
|
2423
|
+
exports.dafny = void 0;
|
|
2424
|
+
var init_dafny = __esm({
|
|
2425
|
+
"src/languages/dafny.ts"() {
|
|
2426
|
+
exports.dafny = {
|
|
2427
|
+
slug: "dafny",
|
|
2428
|
+
publishedDate: "2009-01-01",
|
|
2429
|
+
extensions: [".dfy"],
|
|
2430
|
+
author: "K. Rustan M. Leino / Microsoft Research",
|
|
2431
|
+
website: "https://dafny.org",
|
|
2432
|
+
paradigms: ["imperative", "functional", "object-oriented", "formal verification"],
|
|
2433
|
+
tooling: {
|
|
2434
|
+
runtimes: [".NET", "Java", "JavaScript", "Go", "Python"],
|
|
2435
|
+
packageManagers: ["NuGet", "Homebrew"],
|
|
2436
|
+
ecosystems: ["Formal Methods", ".NET", "Verification"]
|
|
2437
|
+
},
|
|
2438
|
+
version: "4.11.0",
|
|
2439
|
+
logo: "https://dummyimage.com/32x32/0B6D91/ffffff.png&text=D",
|
|
2440
|
+
color: "#0B6D91",
|
|
2441
|
+
i18n: {
|
|
2442
|
+
en: {
|
|
2443
|
+
name: "Dafny",
|
|
2444
|
+
description: "A verification-aware programming language with specifications, proofs, and compilation to several mainstream targets.",
|
|
2445
|
+
longDescription: "Dafny is a programming language and verifier designed for writing correct-by-construction software. Programs can include preconditions, postconditions, invariants, termination metrics, and assertions that are checked by an automated verifier.\n\nIt combines imperative, functional, and object-oriented features with formal specification syntax. Dafny code can be compiled to targets such as C#, Java, JavaScript, Go, and Python, making it useful for teaching, research, and high-assurance software components."
|
|
2446
|
+
},
|
|
2447
|
+
es: {
|
|
2448
|
+
name: "Dafny",
|
|
2449
|
+
description: "Lenguaje de programacion orientado a verificacion, con especificaciones, pruebas y compilacion a varios destinos comunes.",
|
|
2450
|
+
longDescription: "Dafny es un lenguaje de programacion y verificador pensado para escribir software correcto por construccion. Los programas pueden incluir precondiciones, postcondiciones, invariantes, metricas de terminacion y aserciones que revisa un verificador automatico.\n\nCombina rasgos imperativos, funcionales y orientados a objetos con sintaxis de especificacion formal. El codigo Dafny puede compilarse a destinos como C#, Java, JavaScript, Go y Python."
|
|
2451
|
+
}
|
|
2452
|
+
}
|
|
2453
|
+
};
|
|
2454
|
+
}
|
|
2455
|
+
});
|
|
2456
|
+
|
|
2418
2457
|
// src/languages/dart.ts
|
|
2419
2458
|
var dart_exports = {};
|
|
2420
2459
|
__export(dart_exports, {
|
|
@@ -2768,6 +2807,45 @@ var init_eiffel = __esm({
|
|
|
2768
2807
|
}
|
|
2769
2808
|
});
|
|
2770
2809
|
|
|
2810
|
+
// src/languages/ejs.ts
|
|
2811
|
+
var ejs_exports = {};
|
|
2812
|
+
__export(ejs_exports, {
|
|
2813
|
+
ejs: () => exports.ejs
|
|
2814
|
+
});
|
|
2815
|
+
exports.ejs = void 0;
|
|
2816
|
+
var init_ejs = __esm({
|
|
2817
|
+
"src/languages/ejs.ts"() {
|
|
2818
|
+
exports.ejs = {
|
|
2819
|
+
slug: "ejs",
|
|
2820
|
+
publishedDate: "2011-02-01",
|
|
2821
|
+
extensions: [".ejs"],
|
|
2822
|
+
author: "Matthew Eernisse",
|
|
2823
|
+
website: "https://ejs.co",
|
|
2824
|
+
paradigms: ["template", "embedded", "imperative"],
|
|
2825
|
+
tooling: {
|
|
2826
|
+
runtimes: ["Node.js", "Browser"],
|
|
2827
|
+
packageManagers: ["npm", "pnpm", "Yarn"],
|
|
2828
|
+
ecosystems: ["JavaScript", "Web", "Express"]
|
|
2829
|
+
},
|
|
2830
|
+
version: "3.1.10",
|
|
2831
|
+
logo: "https://cdn.simpleicons.org/ejs/B4CA65",
|
|
2832
|
+
color: "#B4CA65",
|
|
2833
|
+
i18n: {
|
|
2834
|
+
en: {
|
|
2835
|
+
name: "EJS",
|
|
2836
|
+
description: "An embedded JavaScript templating language for generating HTML and text from familiar JavaScript expressions.",
|
|
2837
|
+
longDescription: "EJS, short for Embedded JavaScript, is a templating language that lets developers generate markup with ordinary JavaScript control flow and interpolation. Templates are commonly used to render server-side HTML in Node.js applications.\n\nIt is intentionally small and direct: template files mix literal output with tags for evaluation, escaped output, and unescaped output. EJS is popular in Express applications, documentation generators, and simple build workflows."
|
|
2838
|
+
},
|
|
2839
|
+
es: {
|
|
2840
|
+
name: "EJS",
|
|
2841
|
+
description: "Lenguaje de plantillas con JavaScript embebido para generar HTML y texto usando expresiones familiares.",
|
|
2842
|
+
longDescription: "EJS, abreviatura de Embedded JavaScript, es un lenguaje de plantillas que permite generar marcado con interpolacion y control de flujo de JavaScript. Se usa con frecuencia para renderizar HTML del lado del servidor en aplicaciones Node.js.\n\nEs pequeno y directo: los archivos mezclan salida literal con etiquetas para evaluacion, salida escapada y salida sin escapar. EJS es comun en aplicaciones Express, generadores de documentacion y flujos de build simples."
|
|
2843
|
+
}
|
|
2844
|
+
}
|
|
2845
|
+
};
|
|
2846
|
+
}
|
|
2847
|
+
});
|
|
2848
|
+
|
|
2771
2849
|
// src/languages/elixir.ts
|
|
2772
2850
|
var elixir_exports = {};
|
|
2773
2851
|
__export(elixir_exports, {
|
|
@@ -3083,7 +3161,7 @@ var init_fish = __esm({
|
|
|
3083
3161
|
packageManagers: ["Fisher", "Oh My Fish"],
|
|
3084
3162
|
ecosystems: ["Shell", "Unix", "macOS", "Linux"]
|
|
3085
3163
|
},
|
|
3086
|
-
version: "4.
|
|
3164
|
+
version: "4.7.1",
|
|
3087
3165
|
logo: "https://fishshell.com/assets/img/Terminal_Logo2_CRT_Flat.png",
|
|
3088
3166
|
color: "#4AAE21",
|
|
3089
3167
|
i18n: {
|
|
@@ -3141,7 +3219,7 @@ var init_flux = __esm({
|
|
|
3141
3219
|
runtimes: ["InfluxDB", "Flux CLI"],
|
|
3142
3220
|
ecosystems: ["Time Series", "Monitoring", "Observability", "InfluxDB"]
|
|
3143
3221
|
},
|
|
3144
|
-
version: "0.
|
|
3222
|
+
version: "0.200.0",
|
|
3145
3223
|
logo: "https://avatars.githubusercontent.com/u/5713248?v=4",
|
|
3146
3224
|
color: "#22ADF6",
|
|
3147
3225
|
i18n: {
|
|
@@ -3297,6 +3375,45 @@ var init_fortran = __esm({
|
|
|
3297
3375
|
}
|
|
3298
3376
|
});
|
|
3299
3377
|
|
|
3378
|
+
// src/languages/freemarker.ts
|
|
3379
|
+
var freemarker_exports = {};
|
|
3380
|
+
__export(freemarker_exports, {
|
|
3381
|
+
freemarker: () => exports.freemarker
|
|
3382
|
+
});
|
|
3383
|
+
exports.freemarker = void 0;
|
|
3384
|
+
var init_freemarker = __esm({
|
|
3385
|
+
"src/languages/freemarker.ts"() {
|
|
3386
|
+
exports.freemarker = {
|
|
3387
|
+
slug: "freemarker",
|
|
3388
|
+
publishedDate: "1999-01-01",
|
|
3389
|
+
extensions: [".ftl", ".ftlh", ".ftlx"],
|
|
3390
|
+
author: "Apache Software Foundation",
|
|
3391
|
+
website: "https://freemarker.apache.org",
|
|
3392
|
+
paradigms: ["template", "declarative"],
|
|
3393
|
+
tooling: {
|
|
3394
|
+
runtimes: ["JVM"],
|
|
3395
|
+
packageManagers: ["Maven", "Gradle"],
|
|
3396
|
+
ecosystems: ["Java", "Web", "Apache"]
|
|
3397
|
+
},
|
|
3398
|
+
version: "2.3.34",
|
|
3399
|
+
logo: "https://dummyimage.com/32x32/326CE5/ffffff.png&text=FM",
|
|
3400
|
+
color: "#326CE5",
|
|
3401
|
+
i18n: {
|
|
3402
|
+
en: {
|
|
3403
|
+
name: "FreeMarker",
|
|
3404
|
+
description: "A JVM template language used to generate HTML, emails, configuration files, and other text output.",
|
|
3405
|
+
longDescription: "Apache FreeMarker is a template engine and template language for Java applications. It separates presentation text from application code and can generate HTML pages, emails, source files, configuration files, and other structured text.\n\nFreeMarker templates use expressions, directives, macros, includes, and data-model access rather than embedding Java code directly. It is common in server-side Java web applications and code generation workflows."
|
|
3406
|
+
},
|
|
3407
|
+
es: {
|
|
3408
|
+
name: "FreeMarker",
|
|
3409
|
+
description: "Lenguaje de plantillas para la JVM usado para generar HTML, correos, configuracion y otras salidas de texto.",
|
|
3410
|
+
longDescription: "Apache FreeMarker es un motor y lenguaje de plantillas para aplicaciones Java. Separa el texto de presentacion del codigo de aplicacion y puede generar paginas HTML, correos, codigo fuente, archivos de configuracion y otros textos estructurados.\n\nLas plantillas FreeMarker usan expresiones, directivas, macros, inclusiones y acceso a modelos de datos en lugar de embeber codigo Java directamente."
|
|
3411
|
+
}
|
|
3412
|
+
}
|
|
3413
|
+
};
|
|
3414
|
+
}
|
|
3415
|
+
});
|
|
3416
|
+
|
|
3300
3417
|
// src/languages/fsharp.ts
|
|
3301
3418
|
var fsharp_exports = {};
|
|
3302
3419
|
__export(fsharp_exports, {
|
|
@@ -3356,6 +3473,45 @@ var init_fsharp = __esm({
|
|
|
3356
3473
|
}
|
|
3357
3474
|
});
|
|
3358
3475
|
|
|
3476
|
+
// src/languages/fstar.ts
|
|
3477
|
+
var fstar_exports = {};
|
|
3478
|
+
__export(fstar_exports, {
|
|
3479
|
+
fstar: () => exports.fstar
|
|
3480
|
+
});
|
|
3481
|
+
exports.fstar = void 0;
|
|
3482
|
+
var init_fstar = __esm({
|
|
3483
|
+
"src/languages/fstar.ts"() {
|
|
3484
|
+
exports.fstar = {
|
|
3485
|
+
slug: "fstar",
|
|
3486
|
+
publishedDate: "2011-01-01",
|
|
3487
|
+
extensions: [".fst", ".fsti"],
|
|
3488
|
+
author: "Microsoft Research / INRIA",
|
|
3489
|
+
website: "https://www.fstar-lang.org",
|
|
3490
|
+
paradigms: ["functional", "dependent types", "formal verification"],
|
|
3491
|
+
tooling: {
|
|
3492
|
+
runtimes: ["F* toolchain", "OCaml", "F#", "C"],
|
|
3493
|
+
packageManagers: ["opam", "NuGet"],
|
|
3494
|
+
ecosystems: ["Formal Methods", "ML", "Low-level Verification"]
|
|
3495
|
+
},
|
|
3496
|
+
version: "2026.04.17",
|
|
3497
|
+
logo: "https://dummyimage.com/32x32/572E91/ffffff.png&text=F%2A",
|
|
3498
|
+
color: "#572E91",
|
|
3499
|
+
i18n: {
|
|
3500
|
+
en: {
|
|
3501
|
+
name: "F*",
|
|
3502
|
+
description: "A dependently typed functional language for program verification, proofs, and extraction to executable code.",
|
|
3503
|
+
longDescription: "F* is a verification-oriented functional language with dependent types, refinement types, effects, and proof automation. It is used to specify and verify functional correctness, security properties, and low-level systems code.\n\nPrograms and proofs can be checked by the F* toolchain and extracted to targets such as OCaml, F#, and C through related tooling. The language is used in research and high-assurance projects where executable code and machine-checked proofs need to stay close together."
|
|
3504
|
+
},
|
|
3505
|
+
es: {
|
|
3506
|
+
name: "F*",
|
|
3507
|
+
description: "Lenguaje funcional con tipos dependientes para verificacion de programas, pruebas y extraccion a codigo ejecutable.",
|
|
3508
|
+
longDescription: "F* es un lenguaje funcional orientado a verificacion con tipos dependientes, tipos refinados, efectos y automatizacion de pruebas. Se usa para especificar y verificar correccion funcional, propiedades de seguridad y codigo de sistemas de bajo nivel.\n\nLos programas y pruebas se revisan con la cadena de herramientas de F* y pueden extraerse a destinos como OCaml, F# y C mediante herramientas relacionadas."
|
|
3509
|
+
}
|
|
3510
|
+
}
|
|
3511
|
+
};
|
|
3512
|
+
}
|
|
3513
|
+
});
|
|
3514
|
+
|
|
3359
3515
|
// src/languages/gdscript.ts
|
|
3360
3516
|
var gdscript_exports = {};
|
|
3361
3517
|
__export(gdscript_exports, {
|
|
@@ -3729,7 +3885,7 @@ var init_grain = __esm({
|
|
|
3729
3885
|
packageManagers: ["grain (built-in)"],
|
|
3730
3886
|
ecosystems: ["WebAssembly", "Web", "Server"]
|
|
3731
3887
|
},
|
|
3732
|
-
version: "
|
|
3888
|
+
version: "grain-v0.7.2",
|
|
3733
3889
|
logo: "https://avatars.githubusercontent.com/u/54953488?v=4",
|
|
3734
3890
|
color: "#7C4DFF",
|
|
3735
3891
|
i18n: {
|
|
@@ -4644,6 +4800,44 @@ var init_ini = __esm({
|
|
|
4644
4800
|
}
|
|
4645
4801
|
});
|
|
4646
4802
|
|
|
4803
|
+
// src/languages/isabelle.ts
|
|
4804
|
+
var isabelle_exports = {};
|
|
4805
|
+
__export(isabelle_exports, {
|
|
4806
|
+
isabelle: () => exports.isabelle
|
|
4807
|
+
});
|
|
4808
|
+
exports.isabelle = void 0;
|
|
4809
|
+
var init_isabelle = __esm({
|
|
4810
|
+
"src/languages/isabelle.ts"() {
|
|
4811
|
+
exports.isabelle = {
|
|
4812
|
+
slug: "isabelle",
|
|
4813
|
+
publishedDate: "1986-01-01",
|
|
4814
|
+
extensions: [".thy"],
|
|
4815
|
+
author: "Lawrence Paulson / University of Cambridge and TU Munich",
|
|
4816
|
+
website: "https://isabelle.in.tum.de",
|
|
4817
|
+
paradigms: ["theorem proving", "declarative", "functional"],
|
|
4818
|
+
tooling: {
|
|
4819
|
+
runtimes: ["Isabelle/jEdit", "Poly/ML", "Scala"],
|
|
4820
|
+
ecosystems: ["Formal Methods", "Proof Assistants", "Higher-order Logic"]
|
|
4821
|
+
},
|
|
4822
|
+
version: "Isabelle2025-2",
|
|
4823
|
+
logo: "https://dummyimage.com/32x32/6A5ACD/ffffff.png&text=Is",
|
|
4824
|
+
color: "#6A5ACD",
|
|
4825
|
+
i18n: {
|
|
4826
|
+
en: {
|
|
4827
|
+
name: "Isabelle",
|
|
4828
|
+
description: "A proof assistant and theory language for machine-checked mathematics, logic, and formal verification.",
|
|
4829
|
+
longDescription: "Isabelle is a generic proof assistant with a rich theory language used to develop machine-checked mathematics and formal verification projects. Its most common object logic is Isabelle/HOL, a higher-order logic used in many academic and industrial verification efforts.\n\nIsabelle theory files combine definitions, lemmas, structured Isar proofs, automation, and document-oriented markup. The system includes an IDE, libraries, code generation support, and integrations with external automated provers."
|
|
4830
|
+
},
|
|
4831
|
+
es: {
|
|
4832
|
+
name: "Isabelle",
|
|
4833
|
+
description: "Asistente de pruebas y lenguaje de teorias para matematica, logica y verificacion formal comprobadas por maquina.",
|
|
4834
|
+
longDescription: "Isabelle es un asistente de pruebas generico con un lenguaje de teorias usado para desarrollar matematica comprobada por maquina y proyectos de verificacion formal. Su logica objeto mas comun es Isabelle/HOL, una logica de orden superior usada en muchos trabajos academicos e industriales.\n\nLos archivos de teoria combinan definiciones, lemas, pruebas estructuradas Isar, automatizacion y marcado orientado a documentos."
|
|
4835
|
+
}
|
|
4836
|
+
}
|
|
4837
|
+
};
|
|
4838
|
+
}
|
|
4839
|
+
});
|
|
4840
|
+
|
|
4647
4841
|
// src/languages/janet.ts
|
|
4648
4842
|
var janet_exports = {};
|
|
4649
4843
|
__export(janet_exports, {
|
|
@@ -4993,6 +5187,44 @@ var init_json5 = __esm({
|
|
|
4993
5187
|
}
|
|
4994
5188
|
});
|
|
4995
5189
|
|
|
5190
|
+
// src/languages/jsonc.ts
|
|
5191
|
+
var jsonc_exports = {};
|
|
5192
|
+
__export(jsonc_exports, {
|
|
5193
|
+
jsonc: () => exports.jsonc
|
|
5194
|
+
});
|
|
5195
|
+
exports.jsonc = void 0;
|
|
5196
|
+
var init_jsonc = __esm({
|
|
5197
|
+
"src/languages/jsonc.ts"() {
|
|
5198
|
+
exports.jsonc = {
|
|
5199
|
+
slug: "jsonc",
|
|
5200
|
+
publishedDate: "2015-04-29",
|
|
5201
|
+
extensions: [".jsonc", ".code-workspace"],
|
|
5202
|
+
author: "Microsoft",
|
|
5203
|
+
website: "https://jsonc.org",
|
|
5204
|
+
paradigms: ["data serialization", "configuration"],
|
|
5205
|
+
tooling: {
|
|
5206
|
+
runtimes: ["Editors", "Build tools"],
|
|
5207
|
+
ecosystems: ["JavaScript", "TypeScript", "Configuration"]
|
|
5208
|
+
},
|
|
5209
|
+
version: "JSON with Comments",
|
|
5210
|
+
logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_json.svg",
|
|
5211
|
+
color: "#F5DE19",
|
|
5212
|
+
i18n: {
|
|
5213
|
+
en: {
|
|
5214
|
+
name: "JSONC",
|
|
5215
|
+
description: "A JSON-compatible configuration format that permits JavaScript-style comments and optional editor-friendly extensions.",
|
|
5216
|
+
longDescription: "JSONC, or JSON with Comments, is a JSON-derived configuration format that allows comments while preserving the familiar JSON data model. It is widely recognized because Visual Studio Code uses it for settings, launch configurations, and workspace files.\n\nThe format is intended for human-maintained configuration rather than data interchange between services. Tooling usually parses JSONC into ordinary JSON-like values after stripping comments and handling the accepted extensions."
|
|
5217
|
+
},
|
|
5218
|
+
es: {
|
|
5219
|
+
name: "JSONC",
|
|
5220
|
+
description: "Formato de configuracion compatible con JSON que permite comentarios estilo JavaScript y extensiones amigables para editores.",
|
|
5221
|
+
longDescription: "JSONC, o JSON con comentarios, es un formato de configuracion derivado de JSON que permite comentarios sin abandonar el modelo de datos familiar. Es muy conocido porque Visual Studio Code lo usa en ajustes, configuraciones de ejecucion y archivos de workspace.\n\nEsta pensado para configuracion mantenida por humanos, no para intercambio de datos entre servicios. Las herramientas suelen convertir JSONC a valores similares a JSON tras quitar comentarios."
|
|
5222
|
+
}
|
|
5223
|
+
}
|
|
5224
|
+
};
|
|
5225
|
+
}
|
|
5226
|
+
});
|
|
5227
|
+
|
|
4996
5228
|
// src/languages/jsonnet.ts
|
|
4997
5229
|
var jsonnet_exports = {};
|
|
4998
5230
|
__export(jsonnet_exports, {
|
|
@@ -5170,6 +5402,45 @@ var init_jupyter_notebook = __esm({
|
|
|
5170
5402
|
}
|
|
5171
5403
|
});
|
|
5172
5404
|
|
|
5405
|
+
// src/languages/just.ts
|
|
5406
|
+
var just_exports = {};
|
|
5407
|
+
__export(just_exports, {
|
|
5408
|
+
just: () => exports.just
|
|
5409
|
+
});
|
|
5410
|
+
exports.just = void 0;
|
|
5411
|
+
var init_just = __esm({
|
|
5412
|
+
"src/languages/just.ts"() {
|
|
5413
|
+
exports.just = {
|
|
5414
|
+
slug: "just",
|
|
5415
|
+
publishedDate: "2016-03-13",
|
|
5416
|
+
extensions: ["justfile", "Justfile", ".just"],
|
|
5417
|
+
author: "Casey Rodarmor",
|
|
5418
|
+
website: "https://just.systems",
|
|
5419
|
+
paradigms: ["task automation", "command runner"],
|
|
5420
|
+
tooling: {
|
|
5421
|
+
runtimes: ["just"],
|
|
5422
|
+
packageManagers: ["Cargo", "Homebrew", "Scoop"],
|
|
5423
|
+
ecosystems: ["CLI", "Build Automation", "DevOps"]
|
|
5424
|
+
},
|
|
5425
|
+
version: "1.44.0",
|
|
5426
|
+
logo: "https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/icons/file_type_just.svg",
|
|
5427
|
+
color: "#384D54",
|
|
5428
|
+
i18n: {
|
|
5429
|
+
en: {
|
|
5430
|
+
name: "Just",
|
|
5431
|
+
description: "A command-runner language for project recipes, task automation, and repeatable developer workflows.",
|
|
5432
|
+
longDescription: "Just is a command runner whose justfile syntax defines named recipes for common project tasks. It is often used as a friendlier alternative to ad hoc shell scripts or make targets when dependency graph semantics are not needed.\n\nRecipes can accept parameters, set variables, choose shells, load dotenv files, and compose other recipes. The format is popular for local development workflows, CI helpers, release commands, and cross-platform project automation."
|
|
5433
|
+
},
|
|
5434
|
+
es: {
|
|
5435
|
+
name: "Just",
|
|
5436
|
+
description: "Lenguaje de recetas para ejecutar comandos de proyecto, automatizar tareas y repetir flujos de desarrollo.",
|
|
5437
|
+
longDescription: "Just es un ejecutor de comandos cuya sintaxis justfile define recetas con nombre para tareas comunes del proyecto. Se usa como alternativa mas amable a scripts shell dispersos o targets de make cuando no se necesita un grafo de dependencias.\n\nLas recetas pueden aceptar parametros, definir variables, elegir shells, cargar archivos dotenv y componer otras recetas. Es comun en desarrollo local, ayudas de CI, comandos de release y automatizacion multiplataforma."
|
|
5438
|
+
}
|
|
5439
|
+
}
|
|
5440
|
+
};
|
|
5441
|
+
}
|
|
5442
|
+
});
|
|
5443
|
+
|
|
5173
5444
|
// src/languages/kcl.ts
|
|
5174
5445
|
var kcl_exports = {};
|
|
5175
5446
|
__export(kcl_exports, {
|
|
@@ -5190,7 +5461,7 @@ var init_kcl = __esm({
|
|
|
5190
5461
|
packageManagers: ["kcl mod"],
|
|
5191
5462
|
ecosystems: ["Configuration", "Kubernetes", "Cloud Native", "Infrastructure as Code"]
|
|
5192
5463
|
},
|
|
5193
|
-
version: "0.11.
|
|
5464
|
+
version: "0.11.2",
|
|
5194
5465
|
logo: "https://avatars.githubusercontent.com/u/121281745?v=4",
|
|
5195
5466
|
color: "#4A90D9",
|
|
5196
5467
|
i18n: {
|
|
@@ -5229,6 +5500,44 @@ var init_kcl = __esm({
|
|
|
5229
5500
|
}
|
|
5230
5501
|
});
|
|
5231
5502
|
|
|
5503
|
+
// src/languages/kdl.ts
|
|
5504
|
+
var kdl_exports = {};
|
|
5505
|
+
__export(kdl_exports, {
|
|
5506
|
+
kdl: () => exports.kdl
|
|
5507
|
+
});
|
|
5508
|
+
exports.kdl = void 0;
|
|
5509
|
+
var init_kdl = __esm({
|
|
5510
|
+
"src/languages/kdl.ts"() {
|
|
5511
|
+
exports.kdl = {
|
|
5512
|
+
slug: "kdl",
|
|
5513
|
+
publishedDate: "2021-08-29",
|
|
5514
|
+
extensions: [".kdl"],
|
|
5515
|
+
author: "Kat Marchan and contributors",
|
|
5516
|
+
website: "https://kdl.dev",
|
|
5517
|
+
paradigms: ["configuration", "document language", "data serialization"],
|
|
5518
|
+
tooling: {
|
|
5519
|
+
runtimes: ["Parsers", "CLI tools"],
|
|
5520
|
+
ecosystems: ["Configuration", "Rust", "Structured Documents"]
|
|
5521
|
+
},
|
|
5522
|
+
version: "2.0.0",
|
|
5523
|
+
logo: "https://dummyimage.com/32x32/6B4E9B/ffffff.png&text=KDL",
|
|
5524
|
+
color: "#6B4E9B",
|
|
5525
|
+
i18n: {
|
|
5526
|
+
en: {
|
|
5527
|
+
name: "KDL",
|
|
5528
|
+
description: "A node-based document language for readable configuration, structured data, and tree-shaped documents.",
|
|
5529
|
+
longDescription: "KDL is a document language built around named nodes with arguments, properties, and nested children. Its syntax is designed to be easier to read and edit by hand than many dense data formats while still mapping cleanly to structured data.\n\nIt is used for configuration files, domain-specific documents, and tools that need comments, ordering, and tree-shaped data. The KDL ecosystem includes parsers for multiple languages and a versioned specification."
|
|
5530
|
+
},
|
|
5531
|
+
es: {
|
|
5532
|
+
name: "KDL",
|
|
5533
|
+
description: "Lenguaje documental basado en nodos para configuracion legible, datos estructurados y documentos en forma de arbol.",
|
|
5534
|
+
longDescription: "KDL es un lenguaje documental basado en nodos con argumentos, propiedades e hijos anidados. Su sintaxis busca ser mas facil de leer y editar a mano que muchos formatos densos, sin perder una correspondencia clara con datos estructurados.\n\nSe usa para archivos de configuracion, documentos especificos de dominio y herramientas que necesitan comentarios, orden y datos en forma de arbol."
|
|
5535
|
+
}
|
|
5536
|
+
}
|
|
5537
|
+
};
|
|
5538
|
+
}
|
|
5539
|
+
});
|
|
5540
|
+
|
|
5232
5541
|
// src/languages/kotlin.ts
|
|
5233
5542
|
var kotlin_exports = {};
|
|
5234
5543
|
__export(kotlin_exports, {
|
|
@@ -6535,7 +6844,7 @@ var init_nickel = __esm({
|
|
|
6535
6844
|
runtimes: ["nickel CLI"],
|
|
6536
6845
|
ecosystems: ["Configuration", "Infrastructure", "Nix", "DevOps"]
|
|
6537
6846
|
},
|
|
6538
|
-
version: "1.
|
|
6847
|
+
version: "1.16.0",
|
|
6539
6848
|
logo: "https://avatars.githubusercontent.com/u/83021462?v=4",
|
|
6540
6849
|
color: "#3C6EB4",
|
|
6541
6850
|
i18n: {
|
|
@@ -6771,7 +7080,7 @@ var init_nushell = __esm({
|
|
|
6771
7080
|
packageManagers: ["nupm"],
|
|
6772
7081
|
ecosystems: ["Shell", "Unix", "Windows", "macOS"]
|
|
6773
7082
|
},
|
|
6774
|
-
version: "0.
|
|
7083
|
+
version: "0.113.1",
|
|
6775
7084
|
logo: "https://www.nushell.sh/icons/android-chrome-512x512.png",
|
|
6776
7085
|
color: "#3AA675",
|
|
6777
7086
|
i18n: {
|
|
@@ -6987,6 +7296,45 @@ var init_odin = __esm({
|
|
|
6987
7296
|
}
|
|
6988
7297
|
});
|
|
6989
7298
|
|
|
7299
|
+
// src/languages/openapi.ts
|
|
7300
|
+
var openapi_exports = {};
|
|
7301
|
+
__export(openapi_exports, {
|
|
7302
|
+
openapi: () => exports.openapi
|
|
7303
|
+
});
|
|
7304
|
+
exports.openapi = void 0;
|
|
7305
|
+
var init_openapi = __esm({
|
|
7306
|
+
"src/languages/openapi.ts"() {
|
|
7307
|
+
exports.openapi = {
|
|
7308
|
+
slug: "openapi",
|
|
7309
|
+
publishedDate: "2011-08-10",
|
|
7310
|
+
extensions: [".openapi.json", ".openapi.yaml", ".openapi.yml"],
|
|
7311
|
+
author: "OpenAPI Initiative",
|
|
7312
|
+
website: "https://www.openapis.org",
|
|
7313
|
+
paradigms: ["api description", "schema", "declarative"],
|
|
7314
|
+
tooling: {
|
|
7315
|
+
runtimes: ["OpenAPI tooling"],
|
|
7316
|
+
packageManagers: ["npm", "Maven", "Docker"],
|
|
7317
|
+
ecosystems: ["HTTP APIs", "REST", "Documentation"]
|
|
7318
|
+
},
|
|
7319
|
+
version: "3.2.0",
|
|
7320
|
+
logo: "https://cdn.simpleicons.org/openapiinitiative/6BA539",
|
|
7321
|
+
color: "#6BA539",
|
|
7322
|
+
i18n: {
|
|
7323
|
+
en: {
|
|
7324
|
+
name: "OpenAPI",
|
|
7325
|
+
description: "A language-neutral specification format for describing HTTP APIs, schemas, operations, and documentation.",
|
|
7326
|
+
longDescription: "OpenAPI is a specification format for describing HTTP APIs in a machine-readable and human-readable way. OpenAPI documents define paths, operations, parameters, request bodies, responses, authentication, reusable components, and schema information.\n\nThe format is commonly written in YAML or JSON and powers API documentation, client and server generation, contract testing, governance, and design workflows. It originated as Swagger and is now maintained by the OpenAPI Initiative."
|
|
7327
|
+
},
|
|
7328
|
+
es: {
|
|
7329
|
+
name: "OpenAPI",
|
|
7330
|
+
description: "Formato de especificacion neutral al lenguaje para describir APIs HTTP, esquemas, operaciones y documentacion.",
|
|
7331
|
+
longDescription: "OpenAPI es un formato de especificacion para describir APIs HTTP de manera legible para maquinas y personas. Los documentos OpenAPI definen rutas, operaciones, parametros, cuerpos de solicitud, respuestas, autenticacion, componentes reutilizables e informacion de esquemas.\n\nSuele escribirse en YAML o JSON y alimenta documentacion de APIs, generacion de clientes y servidores, pruebas de contrato, gobierno y flujos de diseno."
|
|
7332
|
+
}
|
|
7333
|
+
}
|
|
7334
|
+
};
|
|
7335
|
+
}
|
|
7336
|
+
});
|
|
7337
|
+
|
|
6990
7338
|
// src/languages/opencl.ts
|
|
6991
7339
|
var opencl_exports = {};
|
|
6992
7340
|
__export(opencl_exports, {
|
|
@@ -7809,6 +8157,45 @@ var init_pug = __esm({
|
|
|
7809
8157
|
}
|
|
7810
8158
|
});
|
|
7811
8159
|
|
|
8160
|
+
// src/languages/puppet.ts
|
|
8161
|
+
var puppet_exports = {};
|
|
8162
|
+
__export(puppet_exports, {
|
|
8163
|
+
puppet: () => exports.puppet
|
|
8164
|
+
});
|
|
8165
|
+
exports.puppet = void 0;
|
|
8166
|
+
var init_puppet = __esm({
|
|
8167
|
+
"src/languages/puppet.ts"() {
|
|
8168
|
+
exports.puppet = {
|
|
8169
|
+
slug: "puppet",
|
|
8170
|
+
publishedDate: "2005-01-01",
|
|
8171
|
+
extensions: [".pp", ".epp"],
|
|
8172
|
+
author: "Luke Kanies / Puppet, Inc.",
|
|
8173
|
+
website: "https://www.puppet.com/docs/puppet/latest/lang_summary",
|
|
8174
|
+
paradigms: ["declarative", "configuration management", "infrastructure as code"],
|
|
8175
|
+
tooling: {
|
|
8176
|
+
runtimes: ["Puppet Agent", "Puppet Server"],
|
|
8177
|
+
packageManagers: ["Puppet Forge", "r10k", "Code Manager"],
|
|
8178
|
+
ecosystems: ["DevOps", "Infrastructure as Code", "Configuration Management"]
|
|
8179
|
+
},
|
|
8180
|
+
version: "Puppet 8",
|
|
8181
|
+
logo: "https://cdn.simpleicons.org/puppet/FFAE1A",
|
|
8182
|
+
color: "#FFAE1A",
|
|
8183
|
+
i18n: {
|
|
8184
|
+
en: {
|
|
8185
|
+
name: "Puppet",
|
|
8186
|
+
description: "A declarative infrastructure language for describing system resources, configuration state, and reusable modules.",
|
|
8187
|
+
longDescription: "The Puppet language describes desired infrastructure state using resources, classes, defined types, variables, conditionals, and modules. Puppet agents apply catalogs compiled from this language to converge systems toward the declared configuration.\n\nIt is used for configuration management, compliance, provisioning, and infrastructure automation across servers and services. The language favors declarative resource relationships over imperative shell-style steps."
|
|
8188
|
+
},
|
|
8189
|
+
es: {
|
|
8190
|
+
name: "Puppet",
|
|
8191
|
+
description: "Lenguaje declarativo de infraestructura para describir recursos del sistema, estado de configuracion y modulos reutilizables.",
|
|
8192
|
+
longDescription: "El lenguaje Puppet describe el estado deseado de la infraestructura mediante recursos, clases, tipos definidos, variables, condicionales y modulos. Los agentes Puppet aplican catalogos compilados desde este lenguaje para converger los sistemas hacia la configuracion declarada.\n\nSe usa para gestion de configuracion, cumplimiento, aprovisionamiento y automatizacion de infraestructura en servidores y servicios."
|
|
8193
|
+
}
|
|
8194
|
+
}
|
|
8195
|
+
};
|
|
8196
|
+
}
|
|
8197
|
+
});
|
|
8198
|
+
|
|
7812
8199
|
// src/languages/purescript.ts
|
|
7813
8200
|
var purescript_exports = {};
|
|
7814
8201
|
__export(purescript_exports, {
|
|
@@ -9411,7 +9798,7 @@ var init_svelte = __esm({
|
|
|
9411
9798
|
packageManagers: ["npm", "pnpm", "Yarn", "Bun"],
|
|
9412
9799
|
ecosystems: ["Web", "SvelteKit", "Vite"]
|
|
9413
9800
|
},
|
|
9414
|
-
version: "5.56.
|
|
9801
|
+
version: "5.56.1",
|
|
9415
9802
|
logo: "https://upload.wikimedia.org/wikipedia/commons/1/1b/Svelte_Logo.svg",
|
|
9416
9803
|
color: "#FF3E00",
|
|
9417
9804
|
i18n: {
|
|
@@ -9934,7 +10321,7 @@ var init_twig = __esm({
|
|
|
9934
10321
|
packageManagers: ["Composer"],
|
|
9935
10322
|
ecosystems: ["PHP", "Symfony", "Web", "CMS"]
|
|
9936
10323
|
},
|
|
9937
|
-
version: "3.27.
|
|
10324
|
+
version: "3.27.1",
|
|
9938
10325
|
logo: "https://twig.symfony.com/images/logo.png",
|
|
9939
10326
|
color: "#A5C53A",
|
|
9940
10327
|
i18n: {
|
|
@@ -11278,7 +11665,7 @@ var init_zsh = __esm({
|
|
|
11278
11665
|
packageManagers: ["Homebrew", "APT", "DNF", "Pacman"],
|
|
11279
11666
|
ecosystems: ["Unix", "Linux", "macOS", "DevOps"]
|
|
11280
11667
|
},
|
|
11281
|
-
version: "5.9",
|
|
11668
|
+
version: "5.9.1",
|
|
11282
11669
|
logo: "https://commons.wikimedia.org/wiki/Special:Redirect/file/Z_Shell_Logo_Color_Horizontal.svg",
|
|
11283
11670
|
color: "#89E051",
|
|
11284
11671
|
i18n: {
|
|
@@ -11359,12 +11746,14 @@ init_cue();
|
|
|
11359
11746
|
init_cypher();
|
|
11360
11747
|
init_cython();
|
|
11361
11748
|
init_d();
|
|
11749
|
+
init_dafny();
|
|
11362
11750
|
init_dart();
|
|
11363
11751
|
init_dhall();
|
|
11364
11752
|
init_dita();
|
|
11365
11753
|
init_dockerfile();
|
|
11366
11754
|
init_earthly();
|
|
11367
11755
|
init_eiffel();
|
|
11756
|
+
init_ejs();
|
|
11368
11757
|
init_elixir();
|
|
11369
11758
|
init_elm();
|
|
11370
11759
|
init_erb();
|
|
@@ -11374,7 +11763,9 @@ init_fish();
|
|
|
11374
11763
|
init_flux();
|
|
11375
11764
|
init_forth();
|
|
11376
11765
|
init_fortran();
|
|
11766
|
+
init_freemarker();
|
|
11377
11767
|
init_fsharp();
|
|
11768
|
+
init_fstar();
|
|
11378
11769
|
init_gdscript();
|
|
11379
11770
|
init_git();
|
|
11380
11771
|
init_gleam();
|
|
@@ -11397,16 +11788,20 @@ init_html();
|
|
|
11397
11788
|
init_hy();
|
|
11398
11789
|
init_idris();
|
|
11399
11790
|
init_ini();
|
|
11791
|
+
init_isabelle();
|
|
11400
11792
|
init_janet();
|
|
11401
11793
|
init_java();
|
|
11402
11794
|
init_javascript();
|
|
11403
11795
|
init_jinja();
|
|
11404
11796
|
init_json();
|
|
11405
11797
|
init_json5();
|
|
11798
|
+
init_jsonc();
|
|
11406
11799
|
init_jsonnet();
|
|
11407
11800
|
init_julia();
|
|
11408
11801
|
init_jupyter_notebook();
|
|
11802
|
+
init_just();
|
|
11409
11803
|
init_kcl();
|
|
11804
|
+
init_kdl();
|
|
11410
11805
|
init_kotlin();
|
|
11411
11806
|
init_lean();
|
|
11412
11807
|
init_less();
|
|
@@ -11437,6 +11832,7 @@ init_nushell();
|
|
|
11437
11832
|
init_objective_c();
|
|
11438
11833
|
init_ocaml();
|
|
11439
11834
|
init_odin();
|
|
11835
|
+
init_openapi();
|
|
11440
11836
|
init_opencl();
|
|
11441
11837
|
init_pascal();
|
|
11442
11838
|
init_perl();
|
|
@@ -11451,6 +11847,7 @@ init_prolog();
|
|
|
11451
11847
|
init_promql();
|
|
11452
11848
|
init_protobuf();
|
|
11453
11849
|
init_pug();
|
|
11850
|
+
init_puppet();
|
|
11454
11851
|
init_purescript();
|
|
11455
11852
|
init_python();
|
|
11456
11853
|
init_qml();
|
|
@@ -11553,10 +11950,12 @@ var languages = [
|
|
|
11553
11950
|
exports.cuda,
|
|
11554
11951
|
exports.cython,
|
|
11555
11952
|
exports.d,
|
|
11953
|
+
exports.dafny,
|
|
11556
11954
|
exports.dart,
|
|
11557
11955
|
exports.dhall,
|
|
11558
11956
|
exports.dita,
|
|
11559
11957
|
exports.dockerfile,
|
|
11958
|
+
exports.ejs,
|
|
11560
11959
|
exports.eiffel,
|
|
11561
11960
|
exports.earthly,
|
|
11562
11961
|
exports.elixir,
|
|
@@ -11566,9 +11965,11 @@ var languages = [
|
|
|
11566
11965
|
exports.fish,
|
|
11567
11966
|
exports.fennel,
|
|
11568
11967
|
flux,
|
|
11968
|
+
exports.freemarker,
|
|
11569
11969
|
exports.fortran,
|
|
11570
11970
|
exports.forth,
|
|
11571
11971
|
exports.fsharp,
|
|
11972
|
+
exports.fstar,
|
|
11572
11973
|
exports.gdscript,
|
|
11573
11974
|
exports.git,
|
|
11574
11975
|
exports.gleam,
|
|
@@ -11591,16 +11992,20 @@ var languages = [
|
|
|
11591
11992
|
hy,
|
|
11592
11993
|
exports.idris,
|
|
11593
11994
|
exports.ini,
|
|
11995
|
+
exports.isabelle,
|
|
11594
11996
|
exports.java,
|
|
11595
11997
|
exports.javascript,
|
|
11596
11998
|
exports.janet,
|
|
11597
11999
|
exports.jinja,
|
|
11598
12000
|
exports.json,
|
|
11599
12001
|
exports.json5,
|
|
12002
|
+
exports.jsonc,
|
|
11600
12003
|
exports.jsonnet,
|
|
11601
12004
|
exports.jupyterNotebook,
|
|
11602
12005
|
exports.julia,
|
|
12006
|
+
exports.just,
|
|
11603
12007
|
kcl,
|
|
12008
|
+
exports.kdl,
|
|
11604
12009
|
exports.kotlin,
|
|
11605
12010
|
exports.lean,
|
|
11606
12011
|
exports.less,
|
|
@@ -11633,6 +12038,7 @@ var languages = [
|
|
|
11633
12038
|
exports.objectiveC,
|
|
11634
12039
|
exports.odin,
|
|
11635
12040
|
exports.opencl,
|
|
12041
|
+
exports.openapi,
|
|
11636
12042
|
exports.pascal,
|
|
11637
12043
|
pkl,
|
|
11638
12044
|
exports.perl,
|
|
@@ -11646,6 +12052,7 @@ var languages = [
|
|
|
11646
12052
|
exports.promql,
|
|
11647
12053
|
exports.protobuf,
|
|
11648
12054
|
exports.pug,
|
|
12055
|
+
exports.puppet,
|
|
11649
12056
|
exports.purescript,
|
|
11650
12057
|
exports.python,
|
|
11651
12058
|
exports.qml,
|
|
@@ -11756,10 +12163,12 @@ var languageIndex = [
|
|
|
11756
12163
|
{ slug: "cuda", extensions: [".cu", ".cuh"] },
|
|
11757
12164
|
{ slug: "cython", extensions: [".pyx", ".pxd", ".pxi"] },
|
|
11758
12165
|
{ slug: "d", extensions: [".d", ".di"] },
|
|
12166
|
+
{ slug: "dafny", extensions: [".dfy"] },
|
|
11759
12167
|
{ slug: "dart", extensions: [".dart"] },
|
|
11760
12168
|
{ slug: "dhall", extensions: [".dhall"] },
|
|
11761
12169
|
{ slug: "dita", extensions: [".dita", ".ditamap", ".ditaval"] },
|
|
11762
12170
|
{ slug: "dockerfile", extensions: ["Dockerfile", ".dockerfile"] },
|
|
12171
|
+
{ slug: "ejs", extensions: [".ejs"] },
|
|
11763
12172
|
{ slug: "eiffel", extensions: [".e"] },
|
|
11764
12173
|
{ slug: "earthly", extensions: ["Earthfile"] },
|
|
11765
12174
|
{ slug: "elixir", extensions: [".ex", ".exs", ".eex", ".leex", ".heex"] },
|
|
@@ -11772,12 +12181,14 @@ var languageIndex = [
|
|
|
11772
12181
|
{ slug: "fish", extensions: [".fish"] },
|
|
11773
12182
|
{ slug: "fennel", extensions: [".fnl"] },
|
|
11774
12183
|
{ slug: "flux", extensions: [".flux"] },
|
|
12184
|
+
{ slug: "freemarker", extensions: [".ftl", ".ftlh", ".ftlx"] },
|
|
11775
12185
|
{
|
|
11776
12186
|
slug: "fortran",
|
|
11777
12187
|
extensions: [".f", ".for", ".ftn", ".f90", ".f95", ".f03", ".f08", ".f18", ".f23"]
|
|
11778
12188
|
},
|
|
11779
12189
|
{ slug: "forth", extensions: [".fs", ".fth", ".forth", ".4th"] },
|
|
11780
12190
|
{ slug: "fsharp", extensions: [".fs", ".fsi", ".fsx", ".fsscript"] },
|
|
12191
|
+
{ slug: "fstar", extensions: [".fst", ".fsti"] },
|
|
11781
12192
|
{ slug: "gdscript", extensions: [".gd"] },
|
|
11782
12193
|
{ slug: "git", extensions: [".git", ".gitignore", ".gitattributes", ".gitmodules", ".gitkeep"] },
|
|
11783
12194
|
{ slug: "gleam", extensions: [".gleam"] },
|
|
@@ -11803,16 +12214,20 @@ var languageIndex = [
|
|
|
11803
12214
|
{ slug: "hy", extensions: [".hy"] },
|
|
11804
12215
|
{ slug: "idris", extensions: [".idr", ".lidr", ".ipkg"] },
|
|
11805
12216
|
{ slug: "ini", extensions: [".ini"] },
|
|
12217
|
+
{ slug: "isabelle", extensions: [".thy"] },
|
|
11806
12218
|
{ slug: "java", extensions: [".java"] },
|
|
11807
12219
|
{ slug: "javascript", extensions: [".js", ".mjs", ".cjs", ".jsx"] },
|
|
11808
12220
|
{ slug: "janet", extensions: [".janet", ".jdn"] },
|
|
11809
12221
|
{ slug: "jinja", extensions: [".jinja", ".jinja2", ".j2"] },
|
|
11810
12222
|
{ slug: "json", extensions: [".json"] },
|
|
11811
12223
|
{ slug: "json5", extensions: [".json5"] },
|
|
12224
|
+
{ slug: "jsonc", extensions: [".jsonc", ".code-workspace"] },
|
|
11812
12225
|
{ slug: "jsonnet", extensions: [".jsonnet", ".libsonnet"] },
|
|
11813
12226
|
{ slug: "jupyter-notebook", extensions: [".ipynb"] },
|
|
11814
12227
|
{ slug: "julia", extensions: [".jl"] },
|
|
12228
|
+
{ slug: "just", extensions: ["justfile", "Justfile", ".just"] },
|
|
11815
12229
|
{ slug: "kcl", extensions: [".k", ".kcl"] },
|
|
12230
|
+
{ slug: "kdl", extensions: [".kdl"] },
|
|
11816
12231
|
{ slug: "kotlin", extensions: [".kt", ".kts"] },
|
|
11817
12232
|
{ slug: "lean", extensions: [".lean"] },
|
|
11818
12233
|
{ slug: "less", extensions: [".less"] },
|
|
@@ -11845,6 +12260,7 @@ var languageIndex = [
|
|
|
11845
12260
|
{ slug: "objective-c", extensions: [".m", ".mm"] },
|
|
11846
12261
|
{ slug: "odin", extensions: [".odin"] },
|
|
11847
12262
|
{ slug: "opencl", extensions: [".cl", ".clh"] },
|
|
12263
|
+
{ slug: "openapi", extensions: [".openapi.json", ".openapi.yaml", ".openapi.yml"] },
|
|
11848
12264
|
{ slug: "pascal", extensions: [".pas", ".pp", ".inc", ".lpr", ".dpr", ".dfm"] },
|
|
11849
12265
|
{ slug: "pkl", extensions: [".pkl"] },
|
|
11850
12266
|
{ slug: "perl", extensions: [".pl", ".pm", ".pod", ".t", ".psgi"] },
|
|
@@ -11858,6 +12274,7 @@ var languageIndex = [
|
|
|
11858
12274
|
{ slug: "promql", extensions: [".promql"] },
|
|
11859
12275
|
{ slug: "protobuf", extensions: [".proto"] },
|
|
11860
12276
|
{ slug: "pug", extensions: [".pug", ".jade"] },
|
|
12277
|
+
{ slug: "puppet", extensions: [".pp", ".epp"] },
|
|
11861
12278
|
{ slug: "purescript", extensions: [".purs"] },
|
|
11862
12279
|
{ slug: "python", extensions: [".py", ".pyw"] },
|
|
11863
12280
|
{ slug: "qml", extensions: [".qml", ".qmltypes", ".qmlproject"] },
|
|
@@ -11966,10 +12383,12 @@ var languageLoaders = {
|
|
|
11966
12383
|
cuda: () => Promise.resolve().then(() => (init_cuda(), cuda_exports)).then((module) => module.cuda),
|
|
11967
12384
|
cython: () => Promise.resolve().then(() => (init_cython(), cython_exports)).then((module) => module.cython),
|
|
11968
12385
|
d: () => Promise.resolve().then(() => (init_d(), d_exports)).then((module) => module.d),
|
|
12386
|
+
dafny: () => Promise.resolve().then(() => (init_dafny(), dafny_exports)).then((module) => module.dafny),
|
|
11969
12387
|
dart: () => Promise.resolve().then(() => (init_dart(), dart_exports)).then((module) => module.dart),
|
|
11970
12388
|
dhall: () => Promise.resolve().then(() => (init_dhall(), dhall_exports)).then((module) => module.dhall),
|
|
11971
12389
|
dita: () => Promise.resolve().then(() => (init_dita(), dita_exports)).then((module) => module.dita),
|
|
11972
12390
|
dockerfile: () => Promise.resolve().then(() => (init_dockerfile(), dockerfile_exports)).then((module) => module.dockerfile),
|
|
12391
|
+
ejs: () => Promise.resolve().then(() => (init_ejs(), ejs_exports)).then((module) => module.ejs),
|
|
11973
12392
|
eiffel: () => Promise.resolve().then(() => (init_eiffel(), eiffel_exports)).then((module) => module.eiffel),
|
|
11974
12393
|
earthly: () => Promise.resolve().then(() => (init_earthly(), earthly_exports)).then((module) => module.earthly),
|
|
11975
12394
|
elixir: () => Promise.resolve().then(() => (init_elixir(), elixir_exports)).then((module) => module.elixir),
|
|
@@ -11979,9 +12398,11 @@ var languageLoaders = {
|
|
|
11979
12398
|
fish: () => Promise.resolve().then(() => (init_fish(), fish_exports)).then((module) => module.fish),
|
|
11980
12399
|
flux: () => Promise.resolve().then(() => (init_flux(), flux_exports)).then((module) => module.flux),
|
|
11981
12400
|
fennel: () => Promise.resolve().then(() => (init_fennel(), fennel_exports)).then((module) => module.fennel),
|
|
12401
|
+
freemarker: () => Promise.resolve().then(() => (init_freemarker(), freemarker_exports)).then((module) => module.freemarker),
|
|
11982
12402
|
fortran: () => Promise.resolve().then(() => (init_fortran(), fortran_exports)).then((module) => module.fortran),
|
|
11983
12403
|
forth: () => Promise.resolve().then(() => (init_forth(), forth_exports)).then((module) => module.forth),
|
|
11984
12404
|
fsharp: () => Promise.resolve().then(() => (init_fsharp(), fsharp_exports)).then((module) => module.fsharp),
|
|
12405
|
+
fstar: () => Promise.resolve().then(() => (init_fstar(), fstar_exports)).then((module) => module.fstar),
|
|
11985
12406
|
gdscript: () => Promise.resolve().then(() => (init_gdscript(), gdscript_exports)).then((module) => module.gdscript),
|
|
11986
12407
|
git: () => Promise.resolve().then(() => (init_git(), git_exports)).then((module) => module.git),
|
|
11987
12408
|
gleam: () => Promise.resolve().then(() => (init_gleam(), gleam_exports)).then((module) => module.gleam),
|
|
@@ -12004,16 +12425,20 @@ var languageLoaders = {
|
|
|
12004
12425
|
hy: () => Promise.resolve().then(() => (init_hy(), hy_exports)).then((module) => module.hy),
|
|
12005
12426
|
idris: () => Promise.resolve().then(() => (init_idris(), idris_exports)).then((module) => module.idris),
|
|
12006
12427
|
ini: () => Promise.resolve().then(() => (init_ini(), ini_exports)).then((module) => module.ini),
|
|
12428
|
+
isabelle: () => Promise.resolve().then(() => (init_isabelle(), isabelle_exports)).then((module) => module.isabelle),
|
|
12007
12429
|
java: () => Promise.resolve().then(() => (init_java(), java_exports)).then((module) => module.java),
|
|
12008
12430
|
javascript: () => Promise.resolve().then(() => (init_javascript(), javascript_exports)).then((module) => module.javascript),
|
|
12009
12431
|
janet: () => Promise.resolve().then(() => (init_janet(), janet_exports)).then((module) => module.janet),
|
|
12010
12432
|
jinja: () => Promise.resolve().then(() => (init_jinja(), jinja_exports)).then((module) => module.jinja),
|
|
12011
12433
|
json: () => Promise.resolve().then(() => (init_json(), json_exports)).then((module) => module.json),
|
|
12012
12434
|
json5: () => Promise.resolve().then(() => (init_json5(), json5_exports)).then((module) => module.json5),
|
|
12435
|
+
jsonc: () => Promise.resolve().then(() => (init_jsonc(), jsonc_exports)).then((module) => module.jsonc),
|
|
12013
12436
|
jsonnet: () => Promise.resolve().then(() => (init_jsonnet(), jsonnet_exports)).then((module) => module.jsonnet),
|
|
12014
12437
|
"jupyter-notebook": () => Promise.resolve().then(() => (init_jupyter_notebook(), jupyter_notebook_exports)).then((module) => module.jupyterNotebook),
|
|
12015
12438
|
julia: () => Promise.resolve().then(() => (init_julia(), julia_exports)).then((module) => module.julia),
|
|
12439
|
+
just: () => Promise.resolve().then(() => (init_just(), just_exports)).then((module) => module.just),
|
|
12016
12440
|
kcl: () => Promise.resolve().then(() => (init_kcl(), kcl_exports)).then((module) => module.kcl),
|
|
12441
|
+
kdl: () => Promise.resolve().then(() => (init_kdl(), kdl_exports)).then((module) => module.kdl),
|
|
12017
12442
|
kotlin: () => Promise.resolve().then(() => (init_kotlin(), kotlin_exports)).then((module) => module.kotlin),
|
|
12018
12443
|
lean: () => Promise.resolve().then(() => (init_lean(), lean_exports)).then((module) => module.lean),
|
|
12019
12444
|
less: () => Promise.resolve().then(() => (init_less(), less_exports)).then((module) => module.less),
|
|
@@ -12046,6 +12471,7 @@ var languageLoaders = {
|
|
|
12046
12471
|
"objective-c": () => Promise.resolve().then(() => (init_objective_c(), objective_c_exports)).then((module) => module.objectiveC),
|
|
12047
12472
|
odin: () => Promise.resolve().then(() => (init_odin(), odin_exports)).then((module) => module.odin),
|
|
12048
12473
|
opencl: () => Promise.resolve().then(() => (init_opencl(), opencl_exports)).then((module) => module.opencl),
|
|
12474
|
+
openapi: () => Promise.resolve().then(() => (init_openapi(), openapi_exports)).then((module) => module.openapi),
|
|
12049
12475
|
pascal: () => Promise.resolve().then(() => (init_pascal(), pascal_exports)).then((module) => module.pascal),
|
|
12050
12476
|
pkl: () => Promise.resolve().then(() => (init_pkl(), pkl_exports)).then((module) => module.pkl),
|
|
12051
12477
|
perl: () => Promise.resolve().then(() => (init_perl(), perl_exports)).then((module) => module.perl),
|
|
@@ -12059,6 +12485,7 @@ var languageLoaders = {
|
|
|
12059
12485
|
promql: () => Promise.resolve().then(() => (init_promql(), promql_exports)).then((module) => module.promql),
|
|
12060
12486
|
protobuf: () => Promise.resolve().then(() => (init_protobuf(), protobuf_exports)).then((module) => module.protobuf),
|
|
12061
12487
|
pug: () => Promise.resolve().then(() => (init_pug(), pug_exports)).then((module) => module.pug),
|
|
12488
|
+
puppet: () => Promise.resolve().then(() => (init_puppet(), puppet_exports)).then((module) => module.puppet),
|
|
12062
12489
|
purescript: () => Promise.resolve().then(() => (init_purescript(), purescript_exports)).then((module) => module.purescript),
|
|
12063
12490
|
python: () => Promise.resolve().then(() => (init_python(), python_exports)).then((module) => module.python),
|
|
12064
12491
|
qml: () => Promise.resolve().then(() => (init_qml(), qml_exports)).then((module) => module.qml),
|
|
@@ -12299,10 +12726,10 @@ init_apl();
|
|
|
12299
12726
|
init_applescript();
|
|
12300
12727
|
init_arduino();
|
|
12301
12728
|
init_asp();
|
|
12302
|
-
init_astro();
|
|
12303
12729
|
init_assembly();
|
|
12304
|
-
|
|
12730
|
+
init_astro();
|
|
12305
12731
|
init_autohotkey();
|
|
12732
|
+
init_awk();
|
|
12306
12733
|
init_ballerina();
|
|
12307
12734
|
init_bash();
|
|
12308
12735
|
init_batch();
|
|
@@ -12313,64 +12740,72 @@ init_c();
|
|
|
12313
12740
|
init_carbon();
|
|
12314
12741
|
init_chapel();
|
|
12315
12742
|
init_circom();
|
|
12316
|
-
init_cmake();
|
|
12317
12743
|
init_clojure();
|
|
12318
|
-
|
|
12744
|
+
init_cmake();
|
|
12319
12745
|
init_cobol();
|
|
12746
|
+
init_coffeescript();
|
|
12320
12747
|
init_coldfusion();
|
|
12321
12748
|
init_coq();
|
|
12322
|
-
init_csharp();
|
|
12323
12749
|
init_cpp();
|
|
12324
|
-
init_cypher();
|
|
12325
12750
|
init_crystal();
|
|
12751
|
+
init_csharp();
|
|
12326
12752
|
init_css();
|
|
12327
12753
|
init_cuda();
|
|
12328
12754
|
init_cue();
|
|
12755
|
+
init_cypher();
|
|
12329
12756
|
init_cython();
|
|
12330
12757
|
init_d();
|
|
12758
|
+
init_dafny();
|
|
12331
12759
|
init_dart();
|
|
12332
12760
|
init_dhall();
|
|
12333
12761
|
init_dita();
|
|
12334
12762
|
init_dockerfile();
|
|
12335
|
-
init_eiffel();
|
|
12336
12763
|
init_earthly();
|
|
12764
|
+
init_eiffel();
|
|
12765
|
+
init_ejs();
|
|
12337
12766
|
init_elixir();
|
|
12338
12767
|
init_elm();
|
|
12339
12768
|
init_erb();
|
|
12340
12769
|
init_erlang();
|
|
12341
|
-
init_fish();
|
|
12342
12770
|
init_fennel();
|
|
12343
|
-
|
|
12771
|
+
init_fish();
|
|
12344
12772
|
init_forth();
|
|
12773
|
+
init_fortran();
|
|
12774
|
+
init_freemarker();
|
|
12345
12775
|
init_fsharp();
|
|
12776
|
+
init_fstar();
|
|
12346
12777
|
init_gdscript();
|
|
12347
12778
|
init_git();
|
|
12348
12779
|
init_gleam();
|
|
12780
|
+
init_glsl();
|
|
12349
12781
|
init_go();
|
|
12350
12782
|
init_gradle();
|
|
12351
|
-
init_glsl();
|
|
12352
12783
|
init_graphql();
|
|
12353
12784
|
init_groovy();
|
|
12354
|
-
init_handlebars();
|
|
12355
12785
|
init_hack();
|
|
12356
12786
|
init_haml();
|
|
12357
|
-
|
|
12787
|
+
init_handlebars();
|
|
12358
12788
|
init_haskell();
|
|
12359
12789
|
init_haxe();
|
|
12360
12790
|
init_hcl();
|
|
12361
12791
|
init_hlsl();
|
|
12792
|
+
init_hocon();
|
|
12362
12793
|
init_html();
|
|
12363
12794
|
init_idris();
|
|
12364
12795
|
init_ini();
|
|
12796
|
+
init_isabelle();
|
|
12797
|
+
init_janet();
|
|
12365
12798
|
init_java();
|
|
12366
12799
|
init_javascript();
|
|
12367
|
-
init_janet();
|
|
12368
12800
|
init_jinja();
|
|
12369
12801
|
init_json();
|
|
12370
12802
|
init_json5();
|
|
12803
|
+
init_jsonc();
|
|
12371
12804
|
init_jsonnet();
|
|
12372
|
-
init_jupyter_notebook();
|
|
12373
12805
|
init_julia();
|
|
12806
|
+
init_jupyter_notebook();
|
|
12807
|
+
init_just();
|
|
12808
|
+
init_kdl();
|
|
12374
12809
|
init_kotlin();
|
|
12375
12810
|
init_lean();
|
|
12376
12811
|
init_less();
|
|
@@ -12379,26 +12814,27 @@ init_lisp();
|
|
|
12379
12814
|
init_llvm_ir();
|
|
12380
12815
|
init_lua();
|
|
12381
12816
|
init_luau();
|
|
12382
|
-
init_mako();
|
|
12383
12817
|
init_makefile();
|
|
12818
|
+
init_mako();
|
|
12819
|
+
init_markdown();
|
|
12384
12820
|
init_mathematica();
|
|
12385
12821
|
init_matlab();
|
|
12386
|
-
init_markdown();
|
|
12387
12822
|
init_mdx();
|
|
12388
12823
|
init_mermaid();
|
|
12389
12824
|
init_meson();
|
|
12390
12825
|
init_metal();
|
|
12391
|
-
init_mustache();
|
|
12392
12826
|
init_mojo();
|
|
12393
12827
|
init_moonbit();
|
|
12828
|
+
init_mustache();
|
|
12394
12829
|
init_nginx();
|
|
12395
|
-
init_nunjucks();
|
|
12396
|
-
init_nushell();
|
|
12397
12830
|
init_nim();
|
|
12398
12831
|
init_nix();
|
|
12399
|
-
|
|
12832
|
+
init_nunjucks();
|
|
12833
|
+
init_nushell();
|
|
12400
12834
|
init_objective_c();
|
|
12835
|
+
init_ocaml();
|
|
12401
12836
|
init_odin();
|
|
12837
|
+
init_openapi();
|
|
12402
12838
|
init_opencl();
|
|
12403
12839
|
init_pascal();
|
|
12404
12840
|
init_perl();
|
|
@@ -12412,13 +12848,14 @@ init_prolog();
|
|
|
12412
12848
|
init_promql();
|
|
12413
12849
|
init_protobuf();
|
|
12414
12850
|
init_pug();
|
|
12851
|
+
init_puppet();
|
|
12415
12852
|
init_purescript();
|
|
12416
12853
|
init_python();
|
|
12417
12854
|
init_qml();
|
|
12418
12855
|
init_qsharp();
|
|
12419
12856
|
init_r();
|
|
12420
|
-
init_raku();
|
|
12421
12857
|
init_racket();
|
|
12858
|
+
init_raku();
|
|
12422
12859
|
init_razor();
|
|
12423
12860
|
init_reasonml();
|
|
12424
12861
|
init_rego();
|
|
@@ -12428,8 +12865,8 @@ init_ruby();
|
|
|
12428
12865
|
init_rust();
|
|
12429
12866
|
init_sas();
|
|
12430
12867
|
init_scala();
|
|
12431
|
-
init_scss();
|
|
12432
12868
|
init_scheme();
|
|
12869
|
+
init_scss();
|
|
12433
12870
|
init_smalltalk();
|
|
12434
12871
|
init_smarty();
|
|
12435
12872
|
init_solidity();
|
|
@@ -12439,9 +12876,9 @@ init_standard_ml();
|
|
|
12439
12876
|
init_starlark();
|
|
12440
12877
|
init_stata();
|
|
12441
12878
|
init_stylus();
|
|
12879
|
+
init_svelte();
|
|
12442
12880
|
init_svg();
|
|
12443
12881
|
init_svn();
|
|
12444
|
-
init_svelte();
|
|
12445
12882
|
init_swift();
|
|
12446
12883
|
init_tcl();
|
|
12447
12884
|
init_tex();
|