code-languages 1.18.0 → 1.19.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 +50 -0
- package/dist/api.cjs +423 -0
- package/dist/api.cjs.map +1 -1
- package/dist/api.d.cts +270 -0
- package/dist/api.d.ts +270 -0
- package/dist/api.js +423 -0
- package/dist/api.js.map +1 -1
- package/dist/detect.cjs +300 -0
- package/dist/detect.cjs.map +1 -1
- package/dist/detect.js +300 -0
- package/dist/detect.js.map +1 -1
- package/dist/index.cjs +423 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +260 -0
- package/dist/index.d.ts +260 -0
- package/dist/index.js +423 -0
- package/dist/index.js.map +1 -1
- package/dist/languages/asciidoc.cjs +34 -0
- package/dist/languages/asciidoc.cjs.map +1 -0
- package/dist/languages/asciidoc.d.cts +29 -0
- package/dist/languages/asciidoc.d.ts +29 -0
- package/dist/languages/asciidoc.js +32 -0
- package/dist/languages/asciidoc.js.map +1 -0
- package/dist/languages/bazel.cjs +34 -0
- package/dist/languages/bazel.cjs.map +1 -0
- package/dist/languages/bazel.d.cts +29 -0
- package/dist/languages/bazel.d.ts +29 -0
- package/dist/languages/bazel.js +32 -0
- package/dist/languages/bazel.js.map +1 -0
- package/dist/languages/blade.cjs +34 -0
- package/dist/languages/blade.cjs.map +1 -0
- package/dist/languages/blade.d.cts +29 -0
- package/dist/languages/blade.d.ts +29 -0
- package/dist/languages/blade.js +32 -0
- package/dist/languages/blade.js.map +1 -0
- package/dist/languages/hlsl.cjs +34 -0
- package/dist/languages/hlsl.cjs.map +1 -0
- package/dist/languages/hlsl.d.cts +29 -0
- package/dist/languages/hlsl.d.ts +29 -0
- package/dist/languages/hlsl.js +32 -0
- package/dist/languages/hlsl.js.map +1 -0
- package/dist/languages/prolog.cjs +34 -0
- package/dist/languages/prolog.cjs.map +1 -0
- package/dist/languages/prolog.d.cts +29 -0
- package/dist/languages/prolog.d.ts +29 -0
- package/dist/languages/prolog.js +32 -0
- package/dist/languages/prolog.js.map +1 -0
- package/dist/languages/qml.cjs +34 -0
- package/dist/languages/qml.cjs.map +1 -0
- package/dist/languages/qml.d.cts +29 -0
- package/dist/languages/qml.d.ts +29 -0
- package/dist/languages/qml.js +32 -0
- package/dist/languages/qml.js.map +1 -0
- package/dist/languages/starlark.cjs +34 -0
- package/dist/languages/starlark.cjs.map +1 -0
- package/dist/languages/starlark.d.cts +29 -0
- package/dist/languages/starlark.d.ts +29 -0
- package/dist/languages/starlark.js +32 -0
- package/dist/languages/starlark.js.map +1 -0
- package/dist/languages/typst.cjs +34 -0
- package/dist/languages/typst.cjs.map +1 -0
- package/dist/languages/typst.d.cts +29 -0
- package/dist/languages/typst.d.ts +29 -0
- package/dist/languages/typst.js +32 -0
- package/dist/languages/typst.js.map +1 -0
- package/dist/languages/vhdl.cjs +34 -0
- package/dist/languages/vhdl.cjs.map +1 -0
- package/dist/languages/vhdl.d.cts +29 -0
- package/dist/languages/vhdl.d.ts +29 -0
- package/dist/languages/vhdl.js +32 -0
- package/dist/languages/vhdl.js.map +1 -0
- package/dist/languages/wgsl.cjs +34 -0
- package/dist/languages/wgsl.cjs.map +1 -0
- package/dist/languages/wgsl.d.cts +29 -0
- package/dist/languages/wgsl.d.ts +29 -0
- package/dist/languages/wgsl.js +32 -0
- package/dist/languages/wgsl.js.map +1 -0
- package/package.json +51 -1
package/dist/index.cjs
CHANGED
|
@@ -160,6 +160,44 @@ var init_apex = __esm({
|
|
|
160
160
|
}
|
|
161
161
|
});
|
|
162
162
|
|
|
163
|
+
// src/languages/asciidoc.ts
|
|
164
|
+
var asciidoc_exports = {};
|
|
165
|
+
__export(asciidoc_exports, {
|
|
166
|
+
asciidoc: () => asciidoc
|
|
167
|
+
});
|
|
168
|
+
var asciidoc;
|
|
169
|
+
var init_asciidoc = __esm({
|
|
170
|
+
"src/languages/asciidoc.ts"() {
|
|
171
|
+
asciidoc = {
|
|
172
|
+
slug: "asciidoc",
|
|
173
|
+
publishedDate: "2002-11-25",
|
|
174
|
+
extensions: [".adoc", ".asciidoc", ".asc"],
|
|
175
|
+
author: "Stuart Rackham / AsciiDoc Working Group",
|
|
176
|
+
website: "https://asciidoc.org",
|
|
177
|
+
paradigms: ["markup", "documentation", "declarative", "publishing"],
|
|
178
|
+
tooling: {
|
|
179
|
+
runtimes: ["Asciidoctor", "Asciidoctor.js", "Antora"],
|
|
180
|
+
packageManagers: ["RubyGems", "npm", "Maven"],
|
|
181
|
+
ecosystems: ["Documentation", "Publishing", "Technical Writing", "Static Sites"]
|
|
182
|
+
},
|
|
183
|
+
version: "pre-spec",
|
|
184
|
+
logo: "https://cdn.simpleicons.org/asciidoctor/E40046",
|
|
185
|
+
i18n: {
|
|
186
|
+
en: {
|
|
187
|
+
name: "AsciiDoc",
|
|
188
|
+
description: "A plain-text markup language for technical documentation, books, and publishing.",
|
|
189
|
+
longDescription: "AsciiDoc is a readable markup language for writing structured documents with sections, attributes, lists, tables, admonitions, cross references, includes, source blocks, and rich publishing metadata. It is designed to remain comfortable in plain text while supporting professional output formats.\n\nIt is used for product documentation, books, technical manuals, API guides, knowledge bases, Antora documentation sites, and publishing workflows that need semantic source files under version control."
|
|
190
|
+
},
|
|
191
|
+
es: {
|
|
192
|
+
name: "AsciiDoc",
|
|
193
|
+
description: "Un lenguaje de marcado en texto plano para documentacion tecnica, libros y publicacion.",
|
|
194
|
+
longDescription: "AsciiDoc es un lenguaje de marcado legible para escribir documentos estructurados con secciones, atributos, listas, tablas, admoniciones, referencias cruzadas, includes, bloques de codigo y metadatos de publicacion. Esta pensado para ser comodo en texto plano y aun asi soportar salidas profesionales.\n\nSe usa en documentacion de producto, libros, manuales tecnicos, guias de API, bases de conocimiento, sitios Antora y flujos de publicacion que necesitan archivos fuente semanticos bajo control de versiones."
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
};
|
|
198
|
+
}
|
|
199
|
+
});
|
|
200
|
+
|
|
163
201
|
// src/languages/asp.ts
|
|
164
202
|
var asp_exports = {};
|
|
165
203
|
__export(asp_exports, {
|
|
@@ -387,6 +425,44 @@ var init_batch = __esm({
|
|
|
387
425
|
}
|
|
388
426
|
});
|
|
389
427
|
|
|
428
|
+
// src/languages/bazel.ts
|
|
429
|
+
var bazel_exports = {};
|
|
430
|
+
__export(bazel_exports, {
|
|
431
|
+
bazel: () => bazel
|
|
432
|
+
});
|
|
433
|
+
var bazel;
|
|
434
|
+
var init_bazel = __esm({
|
|
435
|
+
"src/languages/bazel.ts"() {
|
|
436
|
+
bazel = {
|
|
437
|
+
slug: "bazel",
|
|
438
|
+
publishedDate: "2015-03-25",
|
|
439
|
+
extensions: ["BUILD.bazel", "WORKSPACE", "WORKSPACE.bazel", "MODULE.bazel"],
|
|
440
|
+
author: "Google / Bazel contributors",
|
|
441
|
+
website: "https://bazel.build",
|
|
442
|
+
paradigms: ["declarative", "build-configuration", "hermetic", "monorepo"],
|
|
443
|
+
tooling: {
|
|
444
|
+
runtimes: ["Bazel"],
|
|
445
|
+
packageManagers: ["Bzlmod", "Bazel Central Registry"],
|
|
446
|
+
ecosystems: ["Build Systems", "Monorepos", "CI/CD", "Polyglot Repositories"]
|
|
447
|
+
},
|
|
448
|
+
version: "9.0.2",
|
|
449
|
+
logo: "https://cdn.simpleicons.org/bazel/43A047",
|
|
450
|
+
i18n: {
|
|
451
|
+
en: {
|
|
452
|
+
name: "Bazel",
|
|
453
|
+
description: "A build and test configuration language for fast, reproducible multi-language builds.",
|
|
454
|
+
longDescription: "Bazel files describe packages, targets, dependencies, toolchains, platforms, modules, and build rules for Bazel's hermetic build graph. BUILD and MODULE files are declarative, while extension logic is commonly written in Starlark.\n\nIt is used in monorepos, large-scale CI systems, polyglot projects, remote execution workflows, reproducible builds, dependency graph analysis, and teams that need consistent builds across machines and languages."
|
|
455
|
+
},
|
|
456
|
+
es: {
|
|
457
|
+
name: "Bazel",
|
|
458
|
+
description: "Un lenguaje de configuracion de build y test para compilaciones rapidas y reproducibles.",
|
|
459
|
+
longDescription: "Los archivos Bazel describen paquetes, targets, dependencias, toolchains, plataformas, modulos y reglas para el grafo de build hermetico de Bazel. Los archivos BUILD y MODULE son declarativos, mientras que la logica de extension suele escribirse en Starlark.\n\nSe usa en monorepos, sistemas CI a gran escala, proyectos poliglota, remote execution, builds reproducibles, analisis de grafos de dependencias y equipos que necesitan builds consistentes entre maquinas y lenguajes."
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
};
|
|
463
|
+
}
|
|
464
|
+
});
|
|
465
|
+
|
|
390
466
|
// src/languages/bicep.ts
|
|
391
467
|
var bicep_exports = {};
|
|
392
468
|
__export(bicep_exports, {
|
|
@@ -425,6 +501,44 @@ var init_bicep = __esm({
|
|
|
425
501
|
}
|
|
426
502
|
});
|
|
427
503
|
|
|
504
|
+
// src/languages/blade.ts
|
|
505
|
+
var blade_exports = {};
|
|
506
|
+
__export(blade_exports, {
|
|
507
|
+
blade: () => blade
|
|
508
|
+
});
|
|
509
|
+
var blade;
|
|
510
|
+
var init_blade = __esm({
|
|
511
|
+
"src/languages/blade.ts"() {
|
|
512
|
+
blade = {
|
|
513
|
+
slug: "blade",
|
|
514
|
+
publishedDate: "2011-06-09",
|
|
515
|
+
extensions: [".blade.php"],
|
|
516
|
+
author: "Taylor Otwell / Laravel",
|
|
517
|
+
website: "https://laravel.com/docs/blade",
|
|
518
|
+
paradigms: ["templating", "server-side", "component-oriented", "declarative"],
|
|
519
|
+
tooling: {
|
|
520
|
+
runtimes: ["PHP", "Laravel"],
|
|
521
|
+
packageManagers: ["Composer"],
|
|
522
|
+
ecosystems: ["Laravel", "PHP", "Web", "Server-rendered UI"]
|
|
523
|
+
},
|
|
524
|
+
version: "Laravel 12.x",
|
|
525
|
+
logo: "https://cdn.simpleicons.org/laravel/FF2D20",
|
|
526
|
+
i18n: {
|
|
527
|
+
en: {
|
|
528
|
+
name: "Blade",
|
|
529
|
+
description: "Laravel's server-side template language for views, components, and layouts.",
|
|
530
|
+
longDescription: "Blade is Laravel's template language for composing PHP views with directives, layouts, sections, stacks, components, slots, conditionals, loops, includes, escaping, and custom compiler extensions. It keeps templates close to HTML while integrating deeply with Laravel features.\n\nIt is used for Laravel applications, server-rendered interfaces, form views, email templates, reusable UI components, admin panels, and PHP projects that rely on Laravel's view layer."
|
|
531
|
+
},
|
|
532
|
+
es: {
|
|
533
|
+
name: "Blade",
|
|
534
|
+
description: "El lenguaje de plantillas de Laravel para vistas, componentes y layouts en servidor.",
|
|
535
|
+
longDescription: "Blade es el lenguaje de plantillas de Laravel para componer vistas PHP con directivas, layouts, secciones, stacks, componentes, slots, condicionales, bucles, includes, escapado y extensiones del compilador. Mantiene las plantillas cerca de HTML y se integra de forma profunda con Laravel.\n\nSe usa en aplicaciones Laravel, interfaces renderizadas en servidor, vistas de formularios, plantillas de email, componentes UI reutilizables, paneles administrativos y proyectos PHP que dependen de la capa de vistas de Laravel."
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
};
|
|
539
|
+
}
|
|
540
|
+
});
|
|
541
|
+
|
|
428
542
|
// src/languages/c.ts
|
|
429
543
|
var c_exports = {};
|
|
430
544
|
__export(c_exports, {
|
|
@@ -1632,6 +1746,44 @@ var init_hcl = __esm({
|
|
|
1632
1746
|
}
|
|
1633
1747
|
});
|
|
1634
1748
|
|
|
1749
|
+
// src/languages/hlsl.ts
|
|
1750
|
+
var hlsl_exports = {};
|
|
1751
|
+
__export(hlsl_exports, {
|
|
1752
|
+
hlsl: () => hlsl
|
|
1753
|
+
});
|
|
1754
|
+
var hlsl;
|
|
1755
|
+
var init_hlsl = __esm({
|
|
1756
|
+
"src/languages/hlsl.ts"() {
|
|
1757
|
+
hlsl = {
|
|
1758
|
+
slug: "hlsl",
|
|
1759
|
+
publishedDate: "2002-12-01",
|
|
1760
|
+
extensions: [".hlsl", ".fx", ".fxh", ".hlsli"],
|
|
1761
|
+
author: "Microsoft",
|
|
1762
|
+
website: "https://learn.microsoft.com/en-us/windows/win32/direct3dhlsl/dx-graphics-hlsl",
|
|
1763
|
+
paradigms: ["shader", "data-parallel", "graphics", "procedural"],
|
|
1764
|
+
tooling: {
|
|
1765
|
+
runtimes: ["Direct3D", "DirectX Shader Compiler", "Game Engines"],
|
|
1766
|
+
packageManagers: ["NuGet", "vcpkg"],
|
|
1767
|
+
ecosystems: ["Graphics", "Game Development", "GPU Programming", "DirectX"]
|
|
1768
|
+
},
|
|
1769
|
+
version: "Shader Model 6.9",
|
|
1770
|
+
logo: "https://cdn.jsdelivr.net/gh/vscode-icons/vscode-icons@master/icons/file_type_hlsl.svg",
|
|
1771
|
+
i18n: {
|
|
1772
|
+
en: {
|
|
1773
|
+
name: "HLSL",
|
|
1774
|
+
description: "Microsoft's High-Level Shading Language for programmable graphics pipelines.",
|
|
1775
|
+
longDescription: "HLSL is a shader language for Direct3D and related graphics pipelines. It provides C-like syntax, vector and matrix types, textures, samplers, constant buffers, semantics, intrinsics, and shader stages for vertex, pixel, compute, geometry, hull, domain, mesh, amplification, and ray tracing workloads.\n\nIt is used in Windows games, rendering engines, GPU compute tasks, visual effects, real-time simulations, DirectX tools, and cross-compiled shader workflows that target modern graphics hardware."
|
|
1776
|
+
},
|
|
1777
|
+
es: {
|
|
1778
|
+
name: "HLSL",
|
|
1779
|
+
description: "El High-Level Shading Language de Microsoft para pipelines graficos programables.",
|
|
1780
|
+
longDescription: "HLSL es un lenguaje de shaders para Direct3D y pipelines graficos relacionados. Ofrece sintaxis similar a C, tipos vectoriales y matriciales, texturas, samplers, constant buffers, semanticas, intrinsics y etapas de shader para vertex, pixel, compute, geometry, hull, domain, mesh, amplification y ray tracing.\n\nSe usa en juegos Windows, motores de rendering, tareas GPU compute, efectos visuales, simulaciones en tiempo real, herramientas DirectX y flujos de shaders cross-compiled hacia hardware grafico moderno."
|
|
1781
|
+
}
|
|
1782
|
+
}
|
|
1783
|
+
};
|
|
1784
|
+
}
|
|
1785
|
+
});
|
|
1786
|
+
|
|
1635
1787
|
// src/languages/html.ts
|
|
1636
1788
|
var html_exports = {};
|
|
1637
1789
|
__export(html_exports, {
|
|
@@ -2752,6 +2904,44 @@ var init_powershell = __esm({
|
|
|
2752
2904
|
}
|
|
2753
2905
|
});
|
|
2754
2906
|
|
|
2907
|
+
// src/languages/prolog.ts
|
|
2908
|
+
var prolog_exports = {};
|
|
2909
|
+
__export(prolog_exports, {
|
|
2910
|
+
prolog: () => prolog
|
|
2911
|
+
});
|
|
2912
|
+
var prolog;
|
|
2913
|
+
var init_prolog = __esm({
|
|
2914
|
+
"src/languages/prolog.ts"() {
|
|
2915
|
+
prolog = {
|
|
2916
|
+
slug: "prolog",
|
|
2917
|
+
publishedDate: "1972-01-01",
|
|
2918
|
+
extensions: [".pl", ".pro", ".prolog", ".P"],
|
|
2919
|
+
author: "Alain Colmerauer, Philippe Roussel, Robert Kowalski",
|
|
2920
|
+
website: "https://www.swi-prolog.org",
|
|
2921
|
+
paradigms: ["logic", "declarative", "relational", "constraint"],
|
|
2922
|
+
tooling: {
|
|
2923
|
+
runtimes: ["SWI-Prolog", "GNU Prolog", "Scryer Prolog"],
|
|
2924
|
+
packageManagers: ["SWI-Prolog pack"],
|
|
2925
|
+
ecosystems: ["Logic Programming", "AI", "Expert Systems", "Constraint Solving"]
|
|
2926
|
+
},
|
|
2927
|
+
version: "SWI-Prolog 10.0",
|
|
2928
|
+
logo: "https://www.swi-prolog.org/icons/swipl.png",
|
|
2929
|
+
i18n: {
|
|
2930
|
+
en: {
|
|
2931
|
+
name: "Prolog",
|
|
2932
|
+
description: "A logic programming language based on facts, rules, queries, and unification.",
|
|
2933
|
+
longDescription: "Prolog expresses programs as relations using facts, rules, terms, predicates, unification, backtracking, recursion, and constraint logic programming. Rather than spelling out step-by-step control flow, programs describe what is true and let the engine search for solutions.\n\nIt is used for symbolic AI, expert systems, theorem proving, language processing, rule engines, planning, scheduling, constraint solving, education, and domains where relational reasoning is more natural than imperative control flow."
|
|
2934
|
+
},
|
|
2935
|
+
es: {
|
|
2936
|
+
name: "Prolog",
|
|
2937
|
+
description: "Un lenguaje de programacion logica basado en hechos, reglas, consultas y unificacion.",
|
|
2938
|
+
longDescription: "Prolog expresa programas como relaciones usando hechos, reglas, terminos, predicados, unificacion, backtracking, recursion y programacion logica con restricciones. En vez de detallar flujo de control paso a paso, los programas describen que es verdadero y el motor busca soluciones.\n\nSe usa en IA simbolica, sistemas expertos, demostracion de teoremas, procesamiento de lenguaje, motores de reglas, planificacion, scheduling, resolucion de restricciones, educacion y dominios donde el razonamiento relacional es mas natural que el control imperativo."
|
|
2939
|
+
}
|
|
2940
|
+
}
|
|
2941
|
+
};
|
|
2942
|
+
}
|
|
2943
|
+
});
|
|
2944
|
+
|
|
2755
2945
|
// src/languages/protobuf.ts
|
|
2756
2946
|
var protobuf_exports = {};
|
|
2757
2947
|
__export(protobuf_exports, {
|
|
@@ -2866,6 +3056,44 @@ var init_python = __esm({
|
|
|
2866
3056
|
}
|
|
2867
3057
|
});
|
|
2868
3058
|
|
|
3059
|
+
// src/languages/qml.ts
|
|
3060
|
+
var qml_exports = {};
|
|
3061
|
+
__export(qml_exports, {
|
|
3062
|
+
qml: () => qml
|
|
3063
|
+
});
|
|
3064
|
+
var qml;
|
|
3065
|
+
var init_qml = __esm({
|
|
3066
|
+
"src/languages/qml.ts"() {
|
|
3067
|
+
qml = {
|
|
3068
|
+
slug: "qml",
|
|
3069
|
+
publishedDate: "2009-01-01",
|
|
3070
|
+
extensions: [".qml", ".qmltypes", ".qmlproject"],
|
|
3071
|
+
author: "Qt Company / Qt Project",
|
|
3072
|
+
website: "https://doc.qt.io/qt-6/qmlapplications.html",
|
|
3073
|
+
paradigms: ["declarative", "reactive", "component-oriented", "ui"],
|
|
3074
|
+
tooling: {
|
|
3075
|
+
runtimes: ["Qt", "Qt Quick"],
|
|
3076
|
+
packageManagers: ["Conan", "vcpkg", "Qt Installer"],
|
|
3077
|
+
ecosystems: ["Desktop UI", "Embedded UI", "Mobile UI", "Qt"]
|
|
3078
|
+
},
|
|
3079
|
+
version: "Qt 6.11.1",
|
|
3080
|
+
logo: "https://cdn.simpleicons.org/qt/41CD52",
|
|
3081
|
+
i18n: {
|
|
3082
|
+
en: {
|
|
3083
|
+
name: "QML",
|
|
3084
|
+
description: "Qt's declarative language for building fluid, component-based user interfaces.",
|
|
3085
|
+
longDescription: "QML is a declarative language for Qt Quick applications, combining object trees, properties, bindings, signals, states, animations, JavaScript expressions, and reusable components. It is designed for building dynamic interfaces that connect naturally to C++ and Qt APIs.\n\nIt is used in desktop applications, embedded devices, mobile interfaces, automotive displays, industrial controls, media systems, and cross-platform Qt projects that need responsive and animated UI layers."
|
|
3086
|
+
},
|
|
3087
|
+
es: {
|
|
3088
|
+
name: "QML",
|
|
3089
|
+
description: "El lenguaje declarativo de Qt para crear interfaces fluidas basadas en componentes.",
|
|
3090
|
+
longDescription: "QML es un lenguaje declarativo para aplicaciones Qt Quick que combina arboles de objetos, propiedades, bindings, senales, estados, animaciones, expresiones JavaScript y componentes reutilizables. Esta pensado para crear interfaces dinamicas que se conectan de forma natural con C++ y las APIs de Qt.\n\nSe usa en aplicaciones de escritorio, dispositivos embebidos, interfaces moviles, pantallas automotrices, controles industriales, sistemas multimedia y proyectos Qt multiplataforma que necesitan capas UI responsivas y animadas."
|
|
3091
|
+
}
|
|
3092
|
+
}
|
|
3093
|
+
};
|
|
3094
|
+
}
|
|
3095
|
+
});
|
|
3096
|
+
|
|
2869
3097
|
// src/languages/r.ts
|
|
2870
3098
|
var r_exports = {};
|
|
2871
3099
|
__export(r_exports, {
|
|
@@ -3241,6 +3469,44 @@ var init_sql = __esm({
|
|
|
3241
3469
|
}
|
|
3242
3470
|
});
|
|
3243
3471
|
|
|
3472
|
+
// src/languages/starlark.ts
|
|
3473
|
+
var starlark_exports = {};
|
|
3474
|
+
__export(starlark_exports, {
|
|
3475
|
+
starlark: () => starlark
|
|
3476
|
+
});
|
|
3477
|
+
var starlark;
|
|
3478
|
+
var init_starlark = __esm({
|
|
3479
|
+
"src/languages/starlark.ts"() {
|
|
3480
|
+
starlark = {
|
|
3481
|
+
slug: "starlark",
|
|
3482
|
+
publishedDate: "2015-03-25",
|
|
3483
|
+
extensions: [".bzl", ".star", ".sky"],
|
|
3484
|
+
author: "Google / Bazel contributors",
|
|
3485
|
+
website: "https://bazel.build/rules/language",
|
|
3486
|
+
paradigms: ["scripting", "configuration", "deterministic", "imperative"],
|
|
3487
|
+
tooling: {
|
|
3488
|
+
runtimes: ["Bazel", "Buck2", "Starlark Go"],
|
|
3489
|
+
packageManagers: ["Bzlmod", "Bazel Central Registry"],
|
|
3490
|
+
ecosystems: ["Build Systems", "Configuration", "Monorepos", "Tooling"]
|
|
3491
|
+
},
|
|
3492
|
+
version: "Bazel Starlark",
|
|
3493
|
+
logo: "https://cdn.simpleicons.org/bazel/43A047",
|
|
3494
|
+
i18n: {
|
|
3495
|
+
en: {
|
|
3496
|
+
name: "Starlark",
|
|
3497
|
+
description: "A deterministic Python-like scripting language for build and configuration tools.",
|
|
3498
|
+
longDescription: "Starlark is a small, deterministic language with Python-like syntax, designed to be embedded in larger applications. It supports functions, lists, dictionaries, comprehensions, modules, and controlled evaluation while avoiding features that make builds or configuration unpredictable.\n\nIt is best known as Bazel's extension language for rules, macros, repositories, and module extensions, but it is also embedded in other build systems and tools that need safe, reproducible scripting."
|
|
3499
|
+
},
|
|
3500
|
+
es: {
|
|
3501
|
+
name: "Starlark",
|
|
3502
|
+
description: "Un lenguaje de scripting determinista similar a Python para herramientas de build y configuracion.",
|
|
3503
|
+
longDescription: "Starlark es un lenguaje pequeno y determinista con sintaxis similar a Python, disenado para embeberse en aplicaciones mas grandes. Soporta funciones, listas, diccionarios, comprehensions, modulos y evaluacion controlada, evitando caracteristicas que vuelven impredecibles los builds o la configuracion.\n\nEs conocido principalmente como el lenguaje de extension de Bazel para reglas, macros, repositorios y extensiones de modulos, pero tambien se integra en otros sistemas de build y herramientas que necesitan scripting seguro y reproducible."
|
|
3504
|
+
}
|
|
3505
|
+
}
|
|
3506
|
+
};
|
|
3507
|
+
}
|
|
3508
|
+
});
|
|
3509
|
+
|
|
3244
3510
|
// src/languages/svelte.ts
|
|
3245
3511
|
var svelte_exports = {};
|
|
3246
3512
|
__export(svelte_exports, {
|
|
@@ -3576,6 +3842,44 @@ var init_typescript = __esm({
|
|
|
3576
3842
|
}
|
|
3577
3843
|
});
|
|
3578
3844
|
|
|
3845
|
+
// src/languages/typst.ts
|
|
3846
|
+
var typst_exports = {};
|
|
3847
|
+
__export(typst_exports, {
|
|
3848
|
+
typst: () => typst
|
|
3849
|
+
});
|
|
3850
|
+
var typst;
|
|
3851
|
+
var init_typst = __esm({
|
|
3852
|
+
"src/languages/typst.ts"() {
|
|
3853
|
+
typst = {
|
|
3854
|
+
slug: "typst",
|
|
3855
|
+
publishedDate: "2023-03-21",
|
|
3856
|
+
extensions: [".typ"],
|
|
3857
|
+
author: "Typst GmbH / Typst contributors",
|
|
3858
|
+
website: "https://typst.app",
|
|
3859
|
+
paradigms: ["markup", "typesetting", "functional", "scripting"],
|
|
3860
|
+
tooling: {
|
|
3861
|
+
runtimes: ["Typst CLI", "Typst Web App"],
|
|
3862
|
+
packageManagers: ["Typst Packages"],
|
|
3863
|
+
ecosystems: ["Publishing", "Academic Writing", "Documentation", "Typesetting"]
|
|
3864
|
+
},
|
|
3865
|
+
version: "0.14.1",
|
|
3866
|
+
logo: "https://cdn.simpleicons.org/typst/239DAD",
|
|
3867
|
+
i18n: {
|
|
3868
|
+
en: {
|
|
3869
|
+
name: "Typst",
|
|
3870
|
+
description: "A modern markup and scripting language for typesetting documents and PDFs.",
|
|
3871
|
+
longDescription: "Typst combines lightweight markup, layout primitives, functions, variables, packages, math notation, bibliographies, templates, and scripting in a fast typesetting system. It aims to make professional document production more programmable and approachable than traditional TeX workflows.\n\nIt is used for academic papers, reports, books, resumes, lecture notes, templates, technical documents, and publishing workflows that need reproducible PDF generation from readable source files."
|
|
3872
|
+
},
|
|
3873
|
+
es: {
|
|
3874
|
+
name: "Typst",
|
|
3875
|
+
description: "Un lenguaje moderno de marcado y scripting para componer documentos y PDFs.",
|
|
3876
|
+
longDescription: "Typst combina marcado liviano, primitivas de layout, funciones, variables, paquetes, notacion matematica, bibliografias, templates y scripting en un sistema rapido de composicion. Busca hacer la produccion profesional de documentos mas programable y accesible que los flujos tradicionales con TeX.\n\nSe usa para articulos academicos, reportes, libros, CVs, apuntes de clase, templates, documentos tecnicos y flujos de publicacion que necesitan generar PDFs reproducibles desde archivos fuente legibles."
|
|
3877
|
+
}
|
|
3878
|
+
}
|
|
3879
|
+
};
|
|
3880
|
+
}
|
|
3881
|
+
});
|
|
3882
|
+
|
|
3579
3883
|
// src/languages/verilog.ts
|
|
3580
3884
|
var verilog_exports = {};
|
|
3581
3885
|
__export(verilog_exports, {
|
|
@@ -3614,6 +3918,44 @@ var init_verilog = __esm({
|
|
|
3614
3918
|
}
|
|
3615
3919
|
});
|
|
3616
3920
|
|
|
3921
|
+
// src/languages/vhdl.ts
|
|
3922
|
+
var vhdl_exports = {};
|
|
3923
|
+
__export(vhdl_exports, {
|
|
3924
|
+
vhdl: () => vhdl
|
|
3925
|
+
});
|
|
3926
|
+
var vhdl;
|
|
3927
|
+
var init_vhdl = __esm({
|
|
3928
|
+
"src/languages/vhdl.ts"() {
|
|
3929
|
+
vhdl = {
|
|
3930
|
+
slug: "vhdl",
|
|
3931
|
+
publishedDate: "1987-01-01",
|
|
3932
|
+
extensions: [".vhd", ".vhdl"],
|
|
3933
|
+
author: "U.S. Department of Defense / IEEE",
|
|
3934
|
+
website: "https://standards.ieee.org/standard/1076-2019.html",
|
|
3935
|
+
paradigms: ["hardware-description", "concurrent", "dataflow", "verification"],
|
|
3936
|
+
tooling: {
|
|
3937
|
+
runtimes: ["FPGA Toolchains", "ASIC EDA Tools", "Simulators"],
|
|
3938
|
+
packageManagers: ["VUnit", "FuseSoC"],
|
|
3939
|
+
ecosystems: ["Hardware Design", "FPGA", "ASIC", "Verification"]
|
|
3940
|
+
},
|
|
3941
|
+
version: "IEEE 1076-2019",
|
|
3942
|
+
logo: "https://cdn.jsdelivr.net/gh/vscode-icons/vscode-icons@master/icons/file_type_vhdl.svg",
|
|
3943
|
+
i18n: {
|
|
3944
|
+
en: {
|
|
3945
|
+
name: "VHDL",
|
|
3946
|
+
description: "A hardware description and verification language for digital electronic systems.",
|
|
3947
|
+
longDescription: "VHDL describes digital systems using entities, architectures, signals, processes, concurrent statements, packages, generics, configurations, testbenches, and strongly typed design units. It supports simulation, synthesis, and verification across multiple abstraction levels.\n\nIt is used for FPGA development, ASIC design, hardware verification, reusable IP blocks, digital signal processing, safety-critical hardware, and electronic design automation workflows."
|
|
3948
|
+
},
|
|
3949
|
+
es: {
|
|
3950
|
+
name: "VHDL",
|
|
3951
|
+
description: "Un lenguaje de descripcion y verificacion de hardware para sistemas electronicos digitales.",
|
|
3952
|
+
longDescription: "VHDL describe sistemas digitales usando entidades, arquitecturas, senales, procesos, sentencias concurrentes, paquetes, generics, configuraciones, testbenches y unidades de diseno fuertemente tipadas. Soporta simulacion, sintesis y verificacion en varios niveles de abstraccion.\n\nSe usa en desarrollo FPGA, diseno ASIC, verificacion de hardware, bloques IP reutilizables, procesamiento digital de senales, hardware critico para seguridad y flujos de automatizacion de diseno electronico."
|
|
3953
|
+
}
|
|
3954
|
+
}
|
|
3955
|
+
};
|
|
3956
|
+
}
|
|
3957
|
+
});
|
|
3958
|
+
|
|
3617
3959
|
// src/languages/visual-basic.ts
|
|
3618
3960
|
var visual_basic_exports = {};
|
|
3619
3961
|
__export(visual_basic_exports, {
|
|
@@ -3728,6 +4070,44 @@ var init_webassembly = __esm({
|
|
|
3728
4070
|
}
|
|
3729
4071
|
});
|
|
3730
4072
|
|
|
4073
|
+
// src/languages/wgsl.ts
|
|
4074
|
+
var wgsl_exports = {};
|
|
4075
|
+
__export(wgsl_exports, {
|
|
4076
|
+
wgsl: () => wgsl
|
|
4077
|
+
});
|
|
4078
|
+
var wgsl;
|
|
4079
|
+
var init_wgsl = __esm({
|
|
4080
|
+
"src/languages/wgsl.ts"() {
|
|
4081
|
+
wgsl = {
|
|
4082
|
+
slug: "wgsl",
|
|
4083
|
+
publishedDate: "2021-05-18",
|
|
4084
|
+
extensions: [".wgsl"],
|
|
4085
|
+
author: "W3C GPU for the Web Working Group",
|
|
4086
|
+
website: "https://www.w3.org/TR/WGSL/",
|
|
4087
|
+
paradigms: ["shader", "data-parallel", "graphics", "gpu-compute"],
|
|
4088
|
+
tooling: {
|
|
4089
|
+
runtimes: ["WebGPU", "Browsers", "wgpu"],
|
|
4090
|
+
packageManagers: ["npm", "Cargo"],
|
|
4091
|
+
ecosystems: ["WebGPU", "Graphics", "GPU Programming", "Web"]
|
|
4092
|
+
},
|
|
4093
|
+
version: "Candidate Recommendation Draft 2026-05-07",
|
|
4094
|
+
logo: "https://cdn.simpleicons.org/webgpu/005A9C",
|
|
4095
|
+
i18n: {
|
|
4096
|
+
en: {
|
|
4097
|
+
name: "WGSL",
|
|
4098
|
+
description: "The WebGPU Shading Language for portable browser and native GPU programs.",
|
|
4099
|
+
longDescription: "WGSL is the shader language for WebGPU, designed for predictable validation, portability, and safety across graphics backends. It includes explicit types, address spaces, entry points, bindings, uniforms, storage buffers, textures, workgroups, and built-in functions for graphics and compute shaders.\n\nIt is used in WebGPU applications, browser rendering, native wgpu projects, visualization tools, compute workloads, creative coding, and graphics engines that target portable GPU execution."
|
|
4100
|
+
},
|
|
4101
|
+
es: {
|
|
4102
|
+
name: "WGSL",
|
|
4103
|
+
description: "El lenguaje de shading de WebGPU para programas GPU portables en navegador y nativo.",
|
|
4104
|
+
longDescription: "WGSL es el lenguaje de shaders de WebGPU, disenado para validacion predecible, portabilidad y seguridad entre backends graficos. Incluye tipos explicitos, address spaces, entry points, bindings, uniforms, storage buffers, texturas, workgroups y funciones integradas para shaders graficos y compute.\n\nSe usa en aplicaciones WebGPU, rendering en navegador, proyectos nativos con wgpu, herramientas de visualizacion, cargas compute, creative coding y motores graficos que apuntan a ejecucion GPU portable."
|
|
4105
|
+
}
|
|
4106
|
+
}
|
|
4107
|
+
};
|
|
4108
|
+
}
|
|
4109
|
+
});
|
|
4110
|
+
|
|
3731
4111
|
// src/languages/xaml.ts
|
|
3732
4112
|
var xaml_exports = {};
|
|
3733
4113
|
__export(xaml_exports, {
|
|
@@ -3988,13 +4368,16 @@ init_abap();
|
|
|
3988
4368
|
init_actionscript();
|
|
3989
4369
|
init_ada();
|
|
3990
4370
|
init_apex();
|
|
4371
|
+
init_asciidoc();
|
|
3991
4372
|
init_asp();
|
|
3992
4373
|
init_assembly();
|
|
3993
4374
|
init_astro();
|
|
3994
4375
|
init_awk();
|
|
3995
4376
|
init_bash();
|
|
3996
4377
|
init_batch();
|
|
4378
|
+
init_bazel();
|
|
3997
4379
|
init_bicep();
|
|
4380
|
+
init_blade();
|
|
3998
4381
|
init_c();
|
|
3999
4382
|
init_clojure();
|
|
4000
4383
|
init_cmake();
|
|
@@ -4027,6 +4410,7 @@ init_handlebars();
|
|
|
4027
4410
|
init_haskell();
|
|
4028
4411
|
init_haxe();
|
|
4029
4412
|
init_hcl();
|
|
4413
|
+
init_hlsl();
|
|
4030
4414
|
init_html();
|
|
4031
4415
|
init_ini();
|
|
4032
4416
|
init_java();
|
|
@@ -4057,9 +4441,11 @@ init_perl();
|
|
|
4057
4441
|
init_php();
|
|
4058
4442
|
init_plantuml();
|
|
4059
4443
|
init_powershell();
|
|
4444
|
+
init_prolog();
|
|
4060
4445
|
init_protobuf();
|
|
4061
4446
|
init_pug();
|
|
4062
4447
|
init_python();
|
|
4448
|
+
init_qml();
|
|
4063
4449
|
init_r();
|
|
4064
4450
|
init_racket();
|
|
4065
4451
|
init_razor();
|
|
@@ -4070,6 +4456,7 @@ init_scala();
|
|
|
4070
4456
|
init_scss();
|
|
4071
4457
|
init_solidity();
|
|
4072
4458
|
init_sql();
|
|
4459
|
+
init_starlark();
|
|
4073
4460
|
init_svelte();
|
|
4074
4461
|
init_svg();
|
|
4075
4462
|
init_svn();
|
|
@@ -4079,10 +4466,13 @@ init_tex();
|
|
|
4079
4466
|
init_toml();
|
|
4080
4467
|
init_twig();
|
|
4081
4468
|
init_typescript();
|
|
4469
|
+
init_typst();
|
|
4082
4470
|
init_verilog();
|
|
4471
|
+
init_vhdl();
|
|
4083
4472
|
init_visual_basic();
|
|
4084
4473
|
init_vue();
|
|
4085
4474
|
init_webassembly();
|
|
4475
|
+
init_wgsl();
|
|
4086
4476
|
init_xaml();
|
|
4087
4477
|
init_xml();
|
|
4088
4478
|
init_xquery();
|
|
@@ -4095,13 +4485,16 @@ var languages = [
|
|
|
4095
4485
|
exports.actionscript,
|
|
4096
4486
|
exports.ada,
|
|
4097
4487
|
exports.apex,
|
|
4488
|
+
asciidoc,
|
|
4098
4489
|
exports.asp,
|
|
4099
4490
|
exports.astro,
|
|
4100
4491
|
exports.assembly,
|
|
4101
4492
|
exports.awk,
|
|
4102
4493
|
exports.bash,
|
|
4103
4494
|
exports.batch,
|
|
4495
|
+
bazel,
|
|
4104
4496
|
bicep,
|
|
4497
|
+
blade,
|
|
4105
4498
|
exports.c,
|
|
4106
4499
|
exports.cmake,
|
|
4107
4500
|
exports.clojure,
|
|
@@ -4134,6 +4527,7 @@ var languages = [
|
|
|
4134
4527
|
exports.haskell,
|
|
4135
4528
|
exports.haxe,
|
|
4136
4529
|
exports.hcl,
|
|
4530
|
+
hlsl,
|
|
4137
4531
|
exports.html,
|
|
4138
4532
|
exports.ini,
|
|
4139
4533
|
exports.java,
|
|
@@ -4165,9 +4559,11 @@ var languages = [
|
|
|
4165
4559
|
exports.php,
|
|
4166
4560
|
plantuml,
|
|
4167
4561
|
exports.powershell,
|
|
4562
|
+
prolog,
|
|
4168
4563
|
exports.protobuf,
|
|
4169
4564
|
exports.pug,
|
|
4170
4565
|
exports.python,
|
|
4566
|
+
qml,
|
|
4171
4567
|
exports.r,
|
|
4172
4568
|
exports.racket,
|
|
4173
4569
|
exports.razor,
|
|
@@ -4178,6 +4574,7 @@ var languages = [
|
|
|
4178
4574
|
exports.scss,
|
|
4179
4575
|
exports.solidity,
|
|
4180
4576
|
exports.sql,
|
|
4577
|
+
starlark,
|
|
4181
4578
|
exports.svg,
|
|
4182
4579
|
exports.svelte,
|
|
4183
4580
|
exports.swift,
|
|
@@ -4186,10 +4583,13 @@ var languages = [
|
|
|
4186
4583
|
exports.toml,
|
|
4187
4584
|
exports.twig,
|
|
4188
4585
|
exports.typescript,
|
|
4586
|
+
typst,
|
|
4189
4587
|
verilog,
|
|
4588
|
+
vhdl,
|
|
4190
4589
|
exports.visualBasic,
|
|
4191
4590
|
exports.vue,
|
|
4192
4591
|
exports.webassembly,
|
|
4592
|
+
wgsl,
|
|
4193
4593
|
exports.xaml,
|
|
4194
4594
|
exports.xml,
|
|
4195
4595
|
exports.xquery,
|
|
@@ -4257,6 +4657,7 @@ var languageIndex = [
|
|
|
4257
4657
|
{ slug: "actionscript", extensions: [".as"] },
|
|
4258
4658
|
{ slug: "ada", extensions: [".adb", ".ads", ".ada"] },
|
|
4259
4659
|
{ slug: "apex", extensions: [".cls", ".trigger"] },
|
|
4660
|
+
{ slug: "asciidoc", extensions: [".adoc", ".asciidoc", ".asc"] },
|
|
4260
4661
|
{ slug: "asp", extensions: [".asp", ".aspx", ".ascx", ".ashx", ".asmx", ".master"] },
|
|
4261
4662
|
{ slug: "astro", extensions: [".astro"] },
|
|
4262
4663
|
{ slug: "assembly", extensions: [".asm", ".s", ".S", ".inc"] },
|
|
@@ -4266,7 +4667,12 @@ var languageIndex = [
|
|
|
4266
4667
|
extensions: [".sh", ".bash", ".bashrc", ".bash_profile", ".bash_login", ".profile"]
|
|
4267
4668
|
},
|
|
4268
4669
|
{ slug: "batch", extensions: [".bat", ".cmd"] },
|
|
4670
|
+
{
|
|
4671
|
+
slug: "bazel",
|
|
4672
|
+
extensions: ["BUILD.bazel", "WORKSPACE", "WORKSPACE.bazel", "MODULE.bazel"]
|
|
4673
|
+
},
|
|
4269
4674
|
{ slug: "bicep", extensions: [".bicep", ".bicepparam"] },
|
|
4675
|
+
{ slug: "blade", extensions: [".blade.php"] },
|
|
4270
4676
|
{ slug: "c", extensions: [".c", ".h"] },
|
|
4271
4677
|
{ slug: "cmake", extensions: ["CMakeLists.txt", ".cmake"] },
|
|
4272
4678
|
{ slug: "clojure", extensions: [".clj", ".cljs", ".cljc", ".edn", ".bb"] },
|
|
@@ -4308,6 +4714,7 @@ var languageIndex = [
|
|
|
4308
4714
|
{ slug: "haskell", extensions: [".hs", ".lhs", ".hsc", ".hs-boot", ".hsig", ".cabal"] },
|
|
4309
4715
|
{ slug: "haxe", extensions: [".hx", ".hxml"] },
|
|
4310
4716
|
{ slug: "hcl", extensions: [".hcl", ".tf", ".tfvars", ".pkr.hcl", ".nomad"] },
|
|
4717
|
+
{ slug: "hlsl", extensions: [".hlsl", ".fx", ".fxh", ".hlsli"] },
|
|
4311
4718
|
{ slug: "html", extensions: [".html", ".htm"] },
|
|
4312
4719
|
{ slug: "ini", extensions: [".ini"] },
|
|
4313
4720
|
{ slug: "java", extensions: [".java"] },
|
|
@@ -4339,9 +4746,11 @@ var languageIndex = [
|
|
|
4339
4746
|
{ slug: "php", extensions: [".php", ".phtml", ".php3", ".php4", ".php5", ".phps"] },
|
|
4340
4747
|
{ slug: "plantuml", extensions: [".puml", ".plantuml", ".iuml"] },
|
|
4341
4748
|
{ slug: "powershell", extensions: [".ps1", ".psm1", ".psd1", ".ps1xml"] },
|
|
4749
|
+
{ slug: "prolog", extensions: [".pl", ".pro", ".prolog", ".P"] },
|
|
4342
4750
|
{ slug: "protobuf", extensions: [".proto"] },
|
|
4343
4751
|
{ slug: "pug", extensions: [".pug", ".jade"] },
|
|
4344
4752
|
{ slug: "python", extensions: [".py", ".pyw"] },
|
|
4753
|
+
{ slug: "qml", extensions: [".qml", ".qmltypes", ".qmlproject"] },
|
|
4345
4754
|
{ slug: "r", extensions: [".r", ".R", ".rmd", ".Rmd", ".qmd", ".Rprofile"] },
|
|
4346
4755
|
{ slug: "racket", extensions: [".rkt", ".rktd", ".rktl", ".scrbl"] },
|
|
4347
4756
|
{ slug: "razor", extensions: [".cshtml", ".razor"] },
|
|
@@ -4355,6 +4764,7 @@ var languageIndex = [
|
|
|
4355
4764
|
{ slug: "scss", extensions: [".scss", ".sass"] },
|
|
4356
4765
|
{ slug: "solidity", extensions: [".sol"] },
|
|
4357
4766
|
{ slug: "sql", extensions: [".sql"] },
|
|
4767
|
+
{ slug: "starlark", extensions: [".bzl", ".star", ".sky"] },
|
|
4358
4768
|
{ slug: "svg", extensions: [".svg", ".svgz"] },
|
|
4359
4769
|
{ slug: "svelte", extensions: [".svelte"] },
|
|
4360
4770
|
{ slug: "swift", extensions: [".swift"] },
|
|
@@ -4363,10 +4773,13 @@ var languageIndex = [
|
|
|
4363
4773
|
{ slug: "toml", extensions: [".toml"] },
|
|
4364
4774
|
{ slug: "twig", extensions: [".twig"] },
|
|
4365
4775
|
{ slug: "typescript", extensions: [".ts", ".tsx", ".mts", ".cts"] },
|
|
4776
|
+
{ slug: "typst", extensions: [".typ"] },
|
|
4366
4777
|
{ slug: "verilog", extensions: [".v", ".vh", ".sv", ".svh"] },
|
|
4778
|
+
{ slug: "vhdl", extensions: [".vhd", ".vhdl"] },
|
|
4367
4779
|
{ slug: "visual-basic", extensions: [".vb"] },
|
|
4368
4780
|
{ slug: "vue", extensions: [".vue"] },
|
|
4369
4781
|
{ slug: "webassembly", extensions: [".wasm", ".wat"] },
|
|
4782
|
+
{ slug: "wgsl", extensions: [".wgsl"] },
|
|
4370
4783
|
{ slug: "xaml", extensions: [".xaml", ".baml"] },
|
|
4371
4784
|
{ slug: "xml", extensions: [".xml", ".xsd", ".xsl", ".xslt"] },
|
|
4372
4785
|
{ slug: "xquery", extensions: [".xq", ".xql", ".xqm", ".xquery", ".xqy"] },
|
|
@@ -4383,13 +4796,16 @@ var languageLoaders = {
|
|
|
4383
4796
|
actionscript: () => Promise.resolve().then(() => (init_actionscript(), actionscript_exports)).then((module) => module.actionscript),
|
|
4384
4797
|
ada: () => Promise.resolve().then(() => (init_ada(), ada_exports)).then((module) => module.ada),
|
|
4385
4798
|
apex: () => Promise.resolve().then(() => (init_apex(), apex_exports)).then((module) => module.apex),
|
|
4799
|
+
asciidoc: () => Promise.resolve().then(() => (init_asciidoc(), asciidoc_exports)).then((module) => module.asciidoc),
|
|
4386
4800
|
asp: () => Promise.resolve().then(() => (init_asp(), asp_exports)).then((module) => module.asp),
|
|
4387
4801
|
assembly: () => Promise.resolve().then(() => (init_assembly(), assembly_exports)).then((module) => module.assembly),
|
|
4388
4802
|
astro: () => Promise.resolve().then(() => (init_astro(), astro_exports)).then((module) => module.astro),
|
|
4389
4803
|
awk: () => Promise.resolve().then(() => (init_awk(), awk_exports)).then((module) => module.awk),
|
|
4390
4804
|
bash: () => Promise.resolve().then(() => (init_bash(), bash_exports)).then((module) => module.bash),
|
|
4391
4805
|
batch: () => Promise.resolve().then(() => (init_batch(), batch_exports)).then((module) => module.batch),
|
|
4806
|
+
bazel: () => Promise.resolve().then(() => (init_bazel(), bazel_exports)).then((module) => module.bazel),
|
|
4392
4807
|
bicep: () => Promise.resolve().then(() => (init_bicep(), bicep_exports)).then((module) => module.bicep),
|
|
4808
|
+
blade: () => Promise.resolve().then(() => (init_blade(), blade_exports)).then((module) => module.blade),
|
|
4393
4809
|
c: () => Promise.resolve().then(() => (init_c(), c_exports)).then((module) => module.c),
|
|
4394
4810
|
cmake: () => Promise.resolve().then(() => (init_cmake(), cmake_exports)).then((module) => module.cmake),
|
|
4395
4811
|
clojure: () => Promise.resolve().then(() => (init_clojure(), clojure_exports)).then((module) => module.clojure),
|
|
@@ -4422,6 +4838,7 @@ var languageLoaders = {
|
|
|
4422
4838
|
haskell: () => Promise.resolve().then(() => (init_haskell(), haskell_exports)).then((module) => module.haskell),
|
|
4423
4839
|
haxe: () => Promise.resolve().then(() => (init_haxe(), haxe_exports)).then((module) => module.haxe),
|
|
4424
4840
|
hcl: () => Promise.resolve().then(() => (init_hcl(), hcl_exports)).then((module) => module.hcl),
|
|
4841
|
+
hlsl: () => Promise.resolve().then(() => (init_hlsl(), hlsl_exports)).then((module) => module.hlsl),
|
|
4425
4842
|
html: () => Promise.resolve().then(() => (init_html(), html_exports)).then((module) => module.html),
|
|
4426
4843
|
ini: () => Promise.resolve().then(() => (init_ini(), ini_exports)).then((module) => module.ini),
|
|
4427
4844
|
java: () => Promise.resolve().then(() => (init_java(), java_exports)).then((module) => module.java),
|
|
@@ -4453,9 +4870,11 @@ var languageLoaders = {
|
|
|
4453
4870
|
php: () => Promise.resolve().then(() => (init_php(), php_exports)).then((module) => module.php),
|
|
4454
4871
|
plantuml: () => Promise.resolve().then(() => (init_plantuml(), plantuml_exports)).then((module) => module.plantuml),
|
|
4455
4872
|
powershell: () => Promise.resolve().then(() => (init_powershell(), powershell_exports)).then((module) => module.powershell),
|
|
4873
|
+
prolog: () => Promise.resolve().then(() => (init_prolog(), prolog_exports)).then((module) => module.prolog),
|
|
4456
4874
|
protobuf: () => Promise.resolve().then(() => (init_protobuf(), protobuf_exports)).then((module) => module.protobuf),
|
|
4457
4875
|
pug: () => Promise.resolve().then(() => (init_pug(), pug_exports)).then((module) => module.pug),
|
|
4458
4876
|
python: () => Promise.resolve().then(() => (init_python(), python_exports)).then((module) => module.python),
|
|
4877
|
+
qml: () => Promise.resolve().then(() => (init_qml(), qml_exports)).then((module) => module.qml),
|
|
4459
4878
|
r: () => Promise.resolve().then(() => (init_r(), r_exports)).then((module) => module.r),
|
|
4460
4879
|
racket: () => Promise.resolve().then(() => (init_racket(), racket_exports)).then((module) => module.racket),
|
|
4461
4880
|
razor: () => Promise.resolve().then(() => (init_razor(), razor_exports)).then((module) => module.razor),
|
|
@@ -4466,6 +4885,7 @@ var languageLoaders = {
|
|
|
4466
4885
|
scss: () => Promise.resolve().then(() => (init_scss(), scss_exports)).then((module) => module.scss),
|
|
4467
4886
|
solidity: () => Promise.resolve().then(() => (init_solidity(), solidity_exports)).then((module) => module.solidity),
|
|
4468
4887
|
sql: () => Promise.resolve().then(() => (init_sql(), sql_exports)).then((module) => module.sql),
|
|
4888
|
+
starlark: () => Promise.resolve().then(() => (init_starlark(), starlark_exports)).then((module) => module.starlark),
|
|
4469
4889
|
svelte: () => Promise.resolve().then(() => (init_svelte(), svelte_exports)).then((module) => module.svelte),
|
|
4470
4890
|
svg: () => Promise.resolve().then(() => (init_svg(), svg_exports)).then((module) => module.svg),
|
|
4471
4891
|
swift: () => Promise.resolve().then(() => (init_swift(), swift_exports)).then((module) => module.swift),
|
|
@@ -4474,10 +4894,13 @@ var languageLoaders = {
|
|
|
4474
4894
|
toml: () => Promise.resolve().then(() => (init_toml(), toml_exports)).then((module) => module.toml),
|
|
4475
4895
|
twig: () => Promise.resolve().then(() => (init_twig(), twig_exports)).then((module) => module.twig),
|
|
4476
4896
|
typescript: () => Promise.resolve().then(() => (init_typescript(), typescript_exports)).then((module) => module.typescript),
|
|
4897
|
+
typst: () => Promise.resolve().then(() => (init_typst(), typst_exports)).then((module) => module.typst),
|
|
4477
4898
|
verilog: () => Promise.resolve().then(() => (init_verilog(), verilog_exports)).then((module) => module.verilog),
|
|
4899
|
+
vhdl: () => Promise.resolve().then(() => (init_vhdl(), vhdl_exports)).then((module) => module.vhdl),
|
|
4478
4900
|
"visual-basic": () => Promise.resolve().then(() => (init_visual_basic(), visual_basic_exports)).then((module) => module.visualBasic),
|
|
4479
4901
|
vue: () => Promise.resolve().then(() => (init_vue(), vue_exports)).then((module) => module.vue),
|
|
4480
4902
|
webassembly: () => Promise.resolve().then(() => (init_webassembly(), webassembly_exports)).then((module) => module.webassembly),
|
|
4903
|
+
wgsl: () => Promise.resolve().then(() => (init_wgsl(), wgsl_exports)).then((module) => module.wgsl),
|
|
4481
4904
|
xaml: () => Promise.resolve().then(() => (init_xaml(), xaml_exports)).then((module) => module.xaml),
|
|
4482
4905
|
xml: () => Promise.resolve().then(() => (init_xml(), xml_exports)).then((module) => module.xml),
|
|
4483
4906
|
xquery: () => Promise.resolve().then(() => (init_xquery(), xquery_exports)).then((module) => module.xquery),
|