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/api.js
CHANGED
|
@@ -158,6 +158,44 @@ var init_apex = __esm({
|
|
|
158
158
|
}
|
|
159
159
|
});
|
|
160
160
|
|
|
161
|
+
// src/languages/asciidoc.ts
|
|
162
|
+
var asciidoc_exports = {};
|
|
163
|
+
__export(asciidoc_exports, {
|
|
164
|
+
asciidoc: () => asciidoc
|
|
165
|
+
});
|
|
166
|
+
var asciidoc;
|
|
167
|
+
var init_asciidoc = __esm({
|
|
168
|
+
"src/languages/asciidoc.ts"() {
|
|
169
|
+
asciidoc = {
|
|
170
|
+
slug: "asciidoc",
|
|
171
|
+
publishedDate: "2002-11-25",
|
|
172
|
+
extensions: [".adoc", ".asciidoc", ".asc"],
|
|
173
|
+
author: "Stuart Rackham / AsciiDoc Working Group",
|
|
174
|
+
website: "https://asciidoc.org",
|
|
175
|
+
paradigms: ["markup", "documentation", "declarative", "publishing"],
|
|
176
|
+
tooling: {
|
|
177
|
+
runtimes: ["Asciidoctor", "Asciidoctor.js", "Antora"],
|
|
178
|
+
packageManagers: ["RubyGems", "npm", "Maven"],
|
|
179
|
+
ecosystems: ["Documentation", "Publishing", "Technical Writing", "Static Sites"]
|
|
180
|
+
},
|
|
181
|
+
version: "pre-spec",
|
|
182
|
+
logo: "https://cdn.simpleicons.org/asciidoctor/E40046",
|
|
183
|
+
i18n: {
|
|
184
|
+
en: {
|
|
185
|
+
name: "AsciiDoc",
|
|
186
|
+
description: "A plain-text markup language for technical documentation, books, and publishing.",
|
|
187
|
+
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."
|
|
188
|
+
},
|
|
189
|
+
es: {
|
|
190
|
+
name: "AsciiDoc",
|
|
191
|
+
description: "Un lenguaje de marcado en texto plano para documentacion tecnica, libros y publicacion.",
|
|
192
|
+
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."
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
};
|
|
196
|
+
}
|
|
197
|
+
});
|
|
198
|
+
|
|
161
199
|
// src/languages/asp.ts
|
|
162
200
|
var asp_exports = {};
|
|
163
201
|
__export(asp_exports, {
|
|
@@ -385,6 +423,44 @@ var init_batch = __esm({
|
|
|
385
423
|
}
|
|
386
424
|
});
|
|
387
425
|
|
|
426
|
+
// src/languages/bazel.ts
|
|
427
|
+
var bazel_exports = {};
|
|
428
|
+
__export(bazel_exports, {
|
|
429
|
+
bazel: () => bazel
|
|
430
|
+
});
|
|
431
|
+
var bazel;
|
|
432
|
+
var init_bazel = __esm({
|
|
433
|
+
"src/languages/bazel.ts"() {
|
|
434
|
+
bazel = {
|
|
435
|
+
slug: "bazel",
|
|
436
|
+
publishedDate: "2015-03-25",
|
|
437
|
+
extensions: ["BUILD.bazel", "WORKSPACE", "WORKSPACE.bazel", "MODULE.bazel"],
|
|
438
|
+
author: "Google / Bazel contributors",
|
|
439
|
+
website: "https://bazel.build",
|
|
440
|
+
paradigms: ["declarative", "build-configuration", "hermetic", "monorepo"],
|
|
441
|
+
tooling: {
|
|
442
|
+
runtimes: ["Bazel"],
|
|
443
|
+
packageManagers: ["Bzlmod", "Bazel Central Registry"],
|
|
444
|
+
ecosystems: ["Build Systems", "Monorepos", "CI/CD", "Polyglot Repositories"]
|
|
445
|
+
},
|
|
446
|
+
version: "9.0.2",
|
|
447
|
+
logo: "https://cdn.simpleicons.org/bazel/43A047",
|
|
448
|
+
i18n: {
|
|
449
|
+
en: {
|
|
450
|
+
name: "Bazel",
|
|
451
|
+
description: "A build and test configuration language for fast, reproducible multi-language builds.",
|
|
452
|
+
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."
|
|
453
|
+
},
|
|
454
|
+
es: {
|
|
455
|
+
name: "Bazel",
|
|
456
|
+
description: "Un lenguaje de configuracion de build y test para compilaciones rapidas y reproducibles.",
|
|
457
|
+
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."
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
};
|
|
461
|
+
}
|
|
462
|
+
});
|
|
463
|
+
|
|
388
464
|
// src/languages/bicep.ts
|
|
389
465
|
var bicep_exports = {};
|
|
390
466
|
__export(bicep_exports, {
|
|
@@ -423,6 +499,44 @@ var init_bicep = __esm({
|
|
|
423
499
|
}
|
|
424
500
|
});
|
|
425
501
|
|
|
502
|
+
// src/languages/blade.ts
|
|
503
|
+
var blade_exports = {};
|
|
504
|
+
__export(blade_exports, {
|
|
505
|
+
blade: () => blade
|
|
506
|
+
});
|
|
507
|
+
var blade;
|
|
508
|
+
var init_blade = __esm({
|
|
509
|
+
"src/languages/blade.ts"() {
|
|
510
|
+
blade = {
|
|
511
|
+
slug: "blade",
|
|
512
|
+
publishedDate: "2011-06-09",
|
|
513
|
+
extensions: [".blade.php"],
|
|
514
|
+
author: "Taylor Otwell / Laravel",
|
|
515
|
+
website: "https://laravel.com/docs/blade",
|
|
516
|
+
paradigms: ["templating", "server-side", "component-oriented", "declarative"],
|
|
517
|
+
tooling: {
|
|
518
|
+
runtimes: ["PHP", "Laravel"],
|
|
519
|
+
packageManagers: ["Composer"],
|
|
520
|
+
ecosystems: ["Laravel", "PHP", "Web", "Server-rendered UI"]
|
|
521
|
+
},
|
|
522
|
+
version: "Laravel 12.x",
|
|
523
|
+
logo: "https://cdn.simpleicons.org/laravel/FF2D20",
|
|
524
|
+
i18n: {
|
|
525
|
+
en: {
|
|
526
|
+
name: "Blade",
|
|
527
|
+
description: "Laravel's server-side template language for views, components, and layouts.",
|
|
528
|
+
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."
|
|
529
|
+
},
|
|
530
|
+
es: {
|
|
531
|
+
name: "Blade",
|
|
532
|
+
description: "El lenguaje de plantillas de Laravel para vistas, componentes y layouts en servidor.",
|
|
533
|
+
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."
|
|
534
|
+
}
|
|
535
|
+
}
|
|
536
|
+
};
|
|
537
|
+
}
|
|
538
|
+
});
|
|
539
|
+
|
|
426
540
|
// src/languages/c.ts
|
|
427
541
|
var c_exports = {};
|
|
428
542
|
__export(c_exports, {
|
|
@@ -1630,6 +1744,44 @@ var init_hcl = __esm({
|
|
|
1630
1744
|
}
|
|
1631
1745
|
});
|
|
1632
1746
|
|
|
1747
|
+
// src/languages/hlsl.ts
|
|
1748
|
+
var hlsl_exports = {};
|
|
1749
|
+
__export(hlsl_exports, {
|
|
1750
|
+
hlsl: () => hlsl
|
|
1751
|
+
});
|
|
1752
|
+
var hlsl;
|
|
1753
|
+
var init_hlsl = __esm({
|
|
1754
|
+
"src/languages/hlsl.ts"() {
|
|
1755
|
+
hlsl = {
|
|
1756
|
+
slug: "hlsl",
|
|
1757
|
+
publishedDate: "2002-12-01",
|
|
1758
|
+
extensions: [".hlsl", ".fx", ".fxh", ".hlsli"],
|
|
1759
|
+
author: "Microsoft",
|
|
1760
|
+
website: "https://learn.microsoft.com/en-us/windows/win32/direct3dhlsl/dx-graphics-hlsl",
|
|
1761
|
+
paradigms: ["shader", "data-parallel", "graphics", "procedural"],
|
|
1762
|
+
tooling: {
|
|
1763
|
+
runtimes: ["Direct3D", "DirectX Shader Compiler", "Game Engines"],
|
|
1764
|
+
packageManagers: ["NuGet", "vcpkg"],
|
|
1765
|
+
ecosystems: ["Graphics", "Game Development", "GPU Programming", "DirectX"]
|
|
1766
|
+
},
|
|
1767
|
+
version: "Shader Model 6.9",
|
|
1768
|
+
logo: "https://cdn.jsdelivr.net/gh/vscode-icons/vscode-icons@master/icons/file_type_hlsl.svg",
|
|
1769
|
+
i18n: {
|
|
1770
|
+
en: {
|
|
1771
|
+
name: "HLSL",
|
|
1772
|
+
description: "Microsoft's High-Level Shading Language for programmable graphics pipelines.",
|
|
1773
|
+
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."
|
|
1774
|
+
},
|
|
1775
|
+
es: {
|
|
1776
|
+
name: "HLSL",
|
|
1777
|
+
description: "El High-Level Shading Language de Microsoft para pipelines graficos programables.",
|
|
1778
|
+
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."
|
|
1779
|
+
}
|
|
1780
|
+
}
|
|
1781
|
+
};
|
|
1782
|
+
}
|
|
1783
|
+
});
|
|
1784
|
+
|
|
1633
1785
|
// src/languages/html.ts
|
|
1634
1786
|
var html_exports = {};
|
|
1635
1787
|
__export(html_exports, {
|
|
@@ -2750,6 +2902,44 @@ var init_powershell = __esm({
|
|
|
2750
2902
|
}
|
|
2751
2903
|
});
|
|
2752
2904
|
|
|
2905
|
+
// src/languages/prolog.ts
|
|
2906
|
+
var prolog_exports = {};
|
|
2907
|
+
__export(prolog_exports, {
|
|
2908
|
+
prolog: () => prolog
|
|
2909
|
+
});
|
|
2910
|
+
var prolog;
|
|
2911
|
+
var init_prolog = __esm({
|
|
2912
|
+
"src/languages/prolog.ts"() {
|
|
2913
|
+
prolog = {
|
|
2914
|
+
slug: "prolog",
|
|
2915
|
+
publishedDate: "1972-01-01",
|
|
2916
|
+
extensions: [".pl", ".pro", ".prolog", ".P"],
|
|
2917
|
+
author: "Alain Colmerauer, Philippe Roussel, Robert Kowalski",
|
|
2918
|
+
website: "https://www.swi-prolog.org",
|
|
2919
|
+
paradigms: ["logic", "declarative", "relational", "constraint"],
|
|
2920
|
+
tooling: {
|
|
2921
|
+
runtimes: ["SWI-Prolog", "GNU Prolog", "Scryer Prolog"],
|
|
2922
|
+
packageManagers: ["SWI-Prolog pack"],
|
|
2923
|
+
ecosystems: ["Logic Programming", "AI", "Expert Systems", "Constraint Solving"]
|
|
2924
|
+
},
|
|
2925
|
+
version: "SWI-Prolog 10.0",
|
|
2926
|
+
logo: "https://www.swi-prolog.org/icons/swipl.png",
|
|
2927
|
+
i18n: {
|
|
2928
|
+
en: {
|
|
2929
|
+
name: "Prolog",
|
|
2930
|
+
description: "A logic programming language based on facts, rules, queries, and unification.",
|
|
2931
|
+
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."
|
|
2932
|
+
},
|
|
2933
|
+
es: {
|
|
2934
|
+
name: "Prolog",
|
|
2935
|
+
description: "Un lenguaje de programacion logica basado en hechos, reglas, consultas y unificacion.",
|
|
2936
|
+
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."
|
|
2937
|
+
}
|
|
2938
|
+
}
|
|
2939
|
+
};
|
|
2940
|
+
}
|
|
2941
|
+
});
|
|
2942
|
+
|
|
2753
2943
|
// src/languages/protobuf.ts
|
|
2754
2944
|
var protobuf_exports = {};
|
|
2755
2945
|
__export(protobuf_exports, {
|
|
@@ -2864,6 +3054,44 @@ var init_python = __esm({
|
|
|
2864
3054
|
}
|
|
2865
3055
|
});
|
|
2866
3056
|
|
|
3057
|
+
// src/languages/qml.ts
|
|
3058
|
+
var qml_exports = {};
|
|
3059
|
+
__export(qml_exports, {
|
|
3060
|
+
qml: () => qml
|
|
3061
|
+
});
|
|
3062
|
+
var qml;
|
|
3063
|
+
var init_qml = __esm({
|
|
3064
|
+
"src/languages/qml.ts"() {
|
|
3065
|
+
qml = {
|
|
3066
|
+
slug: "qml",
|
|
3067
|
+
publishedDate: "2009-01-01",
|
|
3068
|
+
extensions: [".qml", ".qmltypes", ".qmlproject"],
|
|
3069
|
+
author: "Qt Company / Qt Project",
|
|
3070
|
+
website: "https://doc.qt.io/qt-6/qmlapplications.html",
|
|
3071
|
+
paradigms: ["declarative", "reactive", "component-oriented", "ui"],
|
|
3072
|
+
tooling: {
|
|
3073
|
+
runtimes: ["Qt", "Qt Quick"],
|
|
3074
|
+
packageManagers: ["Conan", "vcpkg", "Qt Installer"],
|
|
3075
|
+
ecosystems: ["Desktop UI", "Embedded UI", "Mobile UI", "Qt"]
|
|
3076
|
+
},
|
|
3077
|
+
version: "Qt 6.11.1",
|
|
3078
|
+
logo: "https://cdn.simpleicons.org/qt/41CD52",
|
|
3079
|
+
i18n: {
|
|
3080
|
+
en: {
|
|
3081
|
+
name: "QML",
|
|
3082
|
+
description: "Qt's declarative language for building fluid, component-based user interfaces.",
|
|
3083
|
+
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."
|
|
3084
|
+
},
|
|
3085
|
+
es: {
|
|
3086
|
+
name: "QML",
|
|
3087
|
+
description: "El lenguaje declarativo de Qt para crear interfaces fluidas basadas en componentes.",
|
|
3088
|
+
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."
|
|
3089
|
+
}
|
|
3090
|
+
}
|
|
3091
|
+
};
|
|
3092
|
+
}
|
|
3093
|
+
});
|
|
3094
|
+
|
|
2867
3095
|
// src/languages/r.ts
|
|
2868
3096
|
var r_exports = {};
|
|
2869
3097
|
__export(r_exports, {
|
|
@@ -3239,6 +3467,44 @@ var init_sql = __esm({
|
|
|
3239
3467
|
}
|
|
3240
3468
|
});
|
|
3241
3469
|
|
|
3470
|
+
// src/languages/starlark.ts
|
|
3471
|
+
var starlark_exports = {};
|
|
3472
|
+
__export(starlark_exports, {
|
|
3473
|
+
starlark: () => starlark
|
|
3474
|
+
});
|
|
3475
|
+
var starlark;
|
|
3476
|
+
var init_starlark = __esm({
|
|
3477
|
+
"src/languages/starlark.ts"() {
|
|
3478
|
+
starlark = {
|
|
3479
|
+
slug: "starlark",
|
|
3480
|
+
publishedDate: "2015-03-25",
|
|
3481
|
+
extensions: [".bzl", ".star", ".sky"],
|
|
3482
|
+
author: "Google / Bazel contributors",
|
|
3483
|
+
website: "https://bazel.build/rules/language",
|
|
3484
|
+
paradigms: ["scripting", "configuration", "deterministic", "imperative"],
|
|
3485
|
+
tooling: {
|
|
3486
|
+
runtimes: ["Bazel", "Buck2", "Starlark Go"],
|
|
3487
|
+
packageManagers: ["Bzlmod", "Bazel Central Registry"],
|
|
3488
|
+
ecosystems: ["Build Systems", "Configuration", "Monorepos", "Tooling"]
|
|
3489
|
+
},
|
|
3490
|
+
version: "Bazel Starlark",
|
|
3491
|
+
logo: "https://cdn.simpleicons.org/bazel/43A047",
|
|
3492
|
+
i18n: {
|
|
3493
|
+
en: {
|
|
3494
|
+
name: "Starlark",
|
|
3495
|
+
description: "A deterministic Python-like scripting language for build and configuration tools.",
|
|
3496
|
+
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."
|
|
3497
|
+
},
|
|
3498
|
+
es: {
|
|
3499
|
+
name: "Starlark",
|
|
3500
|
+
description: "Un lenguaje de scripting determinista similar a Python para herramientas de build y configuracion.",
|
|
3501
|
+
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."
|
|
3502
|
+
}
|
|
3503
|
+
}
|
|
3504
|
+
};
|
|
3505
|
+
}
|
|
3506
|
+
});
|
|
3507
|
+
|
|
3242
3508
|
// src/languages/svelte.ts
|
|
3243
3509
|
var svelte_exports = {};
|
|
3244
3510
|
__export(svelte_exports, {
|
|
@@ -3574,6 +3840,44 @@ var init_typescript = __esm({
|
|
|
3574
3840
|
}
|
|
3575
3841
|
});
|
|
3576
3842
|
|
|
3843
|
+
// src/languages/typst.ts
|
|
3844
|
+
var typst_exports = {};
|
|
3845
|
+
__export(typst_exports, {
|
|
3846
|
+
typst: () => typst
|
|
3847
|
+
});
|
|
3848
|
+
var typst;
|
|
3849
|
+
var init_typst = __esm({
|
|
3850
|
+
"src/languages/typst.ts"() {
|
|
3851
|
+
typst = {
|
|
3852
|
+
slug: "typst",
|
|
3853
|
+
publishedDate: "2023-03-21",
|
|
3854
|
+
extensions: [".typ"],
|
|
3855
|
+
author: "Typst GmbH / Typst contributors",
|
|
3856
|
+
website: "https://typst.app",
|
|
3857
|
+
paradigms: ["markup", "typesetting", "functional", "scripting"],
|
|
3858
|
+
tooling: {
|
|
3859
|
+
runtimes: ["Typst CLI", "Typst Web App"],
|
|
3860
|
+
packageManagers: ["Typst Packages"],
|
|
3861
|
+
ecosystems: ["Publishing", "Academic Writing", "Documentation", "Typesetting"]
|
|
3862
|
+
},
|
|
3863
|
+
version: "0.14.1",
|
|
3864
|
+
logo: "https://cdn.simpleicons.org/typst/239DAD",
|
|
3865
|
+
i18n: {
|
|
3866
|
+
en: {
|
|
3867
|
+
name: "Typst",
|
|
3868
|
+
description: "A modern markup and scripting language for typesetting documents and PDFs.",
|
|
3869
|
+
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."
|
|
3870
|
+
},
|
|
3871
|
+
es: {
|
|
3872
|
+
name: "Typst",
|
|
3873
|
+
description: "Un lenguaje moderno de marcado y scripting para componer documentos y PDFs.",
|
|
3874
|
+
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."
|
|
3875
|
+
}
|
|
3876
|
+
}
|
|
3877
|
+
};
|
|
3878
|
+
}
|
|
3879
|
+
});
|
|
3880
|
+
|
|
3577
3881
|
// src/languages/verilog.ts
|
|
3578
3882
|
var verilog_exports = {};
|
|
3579
3883
|
__export(verilog_exports, {
|
|
@@ -3612,6 +3916,44 @@ var init_verilog = __esm({
|
|
|
3612
3916
|
}
|
|
3613
3917
|
});
|
|
3614
3918
|
|
|
3919
|
+
// src/languages/vhdl.ts
|
|
3920
|
+
var vhdl_exports = {};
|
|
3921
|
+
__export(vhdl_exports, {
|
|
3922
|
+
vhdl: () => vhdl
|
|
3923
|
+
});
|
|
3924
|
+
var vhdl;
|
|
3925
|
+
var init_vhdl = __esm({
|
|
3926
|
+
"src/languages/vhdl.ts"() {
|
|
3927
|
+
vhdl = {
|
|
3928
|
+
slug: "vhdl",
|
|
3929
|
+
publishedDate: "1987-01-01",
|
|
3930
|
+
extensions: [".vhd", ".vhdl"],
|
|
3931
|
+
author: "U.S. Department of Defense / IEEE",
|
|
3932
|
+
website: "https://standards.ieee.org/standard/1076-2019.html",
|
|
3933
|
+
paradigms: ["hardware-description", "concurrent", "dataflow", "verification"],
|
|
3934
|
+
tooling: {
|
|
3935
|
+
runtimes: ["FPGA Toolchains", "ASIC EDA Tools", "Simulators"],
|
|
3936
|
+
packageManagers: ["VUnit", "FuseSoC"],
|
|
3937
|
+
ecosystems: ["Hardware Design", "FPGA", "ASIC", "Verification"]
|
|
3938
|
+
},
|
|
3939
|
+
version: "IEEE 1076-2019",
|
|
3940
|
+
logo: "https://cdn.jsdelivr.net/gh/vscode-icons/vscode-icons@master/icons/file_type_vhdl.svg",
|
|
3941
|
+
i18n: {
|
|
3942
|
+
en: {
|
|
3943
|
+
name: "VHDL",
|
|
3944
|
+
description: "A hardware description and verification language for digital electronic systems.",
|
|
3945
|
+
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."
|
|
3946
|
+
},
|
|
3947
|
+
es: {
|
|
3948
|
+
name: "VHDL",
|
|
3949
|
+
description: "Un lenguaje de descripcion y verificacion de hardware para sistemas electronicos digitales.",
|
|
3950
|
+
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."
|
|
3951
|
+
}
|
|
3952
|
+
}
|
|
3953
|
+
};
|
|
3954
|
+
}
|
|
3955
|
+
});
|
|
3956
|
+
|
|
3615
3957
|
// src/languages/visual-basic.ts
|
|
3616
3958
|
var visual_basic_exports = {};
|
|
3617
3959
|
__export(visual_basic_exports, {
|
|
@@ -3726,6 +4068,44 @@ var init_webassembly = __esm({
|
|
|
3726
4068
|
}
|
|
3727
4069
|
});
|
|
3728
4070
|
|
|
4071
|
+
// src/languages/wgsl.ts
|
|
4072
|
+
var wgsl_exports = {};
|
|
4073
|
+
__export(wgsl_exports, {
|
|
4074
|
+
wgsl: () => wgsl
|
|
4075
|
+
});
|
|
4076
|
+
var wgsl;
|
|
4077
|
+
var init_wgsl = __esm({
|
|
4078
|
+
"src/languages/wgsl.ts"() {
|
|
4079
|
+
wgsl = {
|
|
4080
|
+
slug: "wgsl",
|
|
4081
|
+
publishedDate: "2021-05-18",
|
|
4082
|
+
extensions: [".wgsl"],
|
|
4083
|
+
author: "W3C GPU for the Web Working Group",
|
|
4084
|
+
website: "https://www.w3.org/TR/WGSL/",
|
|
4085
|
+
paradigms: ["shader", "data-parallel", "graphics", "gpu-compute"],
|
|
4086
|
+
tooling: {
|
|
4087
|
+
runtimes: ["WebGPU", "Browsers", "wgpu"],
|
|
4088
|
+
packageManagers: ["npm", "Cargo"],
|
|
4089
|
+
ecosystems: ["WebGPU", "Graphics", "GPU Programming", "Web"]
|
|
4090
|
+
},
|
|
4091
|
+
version: "Candidate Recommendation Draft 2026-05-07",
|
|
4092
|
+
logo: "https://cdn.simpleicons.org/webgpu/005A9C",
|
|
4093
|
+
i18n: {
|
|
4094
|
+
en: {
|
|
4095
|
+
name: "WGSL",
|
|
4096
|
+
description: "The WebGPU Shading Language for portable browser and native GPU programs.",
|
|
4097
|
+
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."
|
|
4098
|
+
},
|
|
4099
|
+
es: {
|
|
4100
|
+
name: "WGSL",
|
|
4101
|
+
description: "El lenguaje de shading de WebGPU para programas GPU portables en navegador y nativo.",
|
|
4102
|
+
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."
|
|
4103
|
+
}
|
|
4104
|
+
}
|
|
4105
|
+
};
|
|
4106
|
+
}
|
|
4107
|
+
});
|
|
4108
|
+
|
|
3729
4109
|
// src/languages/xaml.ts
|
|
3730
4110
|
var xaml_exports = {};
|
|
3731
4111
|
__export(xaml_exports, {
|
|
@@ -3986,13 +4366,16 @@ init_abap();
|
|
|
3986
4366
|
init_actionscript();
|
|
3987
4367
|
init_ada();
|
|
3988
4368
|
init_apex();
|
|
4369
|
+
init_asciidoc();
|
|
3989
4370
|
init_asp();
|
|
3990
4371
|
init_assembly();
|
|
3991
4372
|
init_astro();
|
|
3992
4373
|
init_awk();
|
|
3993
4374
|
init_bash();
|
|
3994
4375
|
init_batch();
|
|
4376
|
+
init_bazel();
|
|
3995
4377
|
init_bicep();
|
|
4378
|
+
init_blade();
|
|
3996
4379
|
init_c();
|
|
3997
4380
|
init_clojure();
|
|
3998
4381
|
init_cmake();
|
|
@@ -4025,6 +4408,7 @@ init_handlebars();
|
|
|
4025
4408
|
init_haskell();
|
|
4026
4409
|
init_haxe();
|
|
4027
4410
|
init_hcl();
|
|
4411
|
+
init_hlsl();
|
|
4028
4412
|
init_html();
|
|
4029
4413
|
init_ini();
|
|
4030
4414
|
init_java();
|
|
@@ -4055,9 +4439,11 @@ init_perl();
|
|
|
4055
4439
|
init_php();
|
|
4056
4440
|
init_plantuml();
|
|
4057
4441
|
init_powershell();
|
|
4442
|
+
init_prolog();
|
|
4058
4443
|
init_protobuf();
|
|
4059
4444
|
init_pug();
|
|
4060
4445
|
init_python();
|
|
4446
|
+
init_qml();
|
|
4061
4447
|
init_r();
|
|
4062
4448
|
init_racket();
|
|
4063
4449
|
init_razor();
|
|
@@ -4068,6 +4454,7 @@ init_scala();
|
|
|
4068
4454
|
init_scss();
|
|
4069
4455
|
init_solidity();
|
|
4070
4456
|
init_sql();
|
|
4457
|
+
init_starlark();
|
|
4071
4458
|
init_svelte();
|
|
4072
4459
|
init_svg();
|
|
4073
4460
|
init_svn();
|
|
@@ -4077,10 +4464,13 @@ init_tex();
|
|
|
4077
4464
|
init_toml();
|
|
4078
4465
|
init_twig();
|
|
4079
4466
|
init_typescript();
|
|
4467
|
+
init_typst();
|
|
4080
4468
|
init_verilog();
|
|
4469
|
+
init_vhdl();
|
|
4081
4470
|
init_visual_basic();
|
|
4082
4471
|
init_vue();
|
|
4083
4472
|
init_webassembly();
|
|
4473
|
+
init_wgsl();
|
|
4084
4474
|
init_xaml();
|
|
4085
4475
|
init_xml();
|
|
4086
4476
|
init_xquery();
|
|
@@ -4093,13 +4483,16 @@ var languages = [
|
|
|
4093
4483
|
actionscript,
|
|
4094
4484
|
ada,
|
|
4095
4485
|
apex,
|
|
4486
|
+
asciidoc,
|
|
4096
4487
|
asp,
|
|
4097
4488
|
astro,
|
|
4098
4489
|
assembly,
|
|
4099
4490
|
awk,
|
|
4100
4491
|
bash,
|
|
4101
4492
|
batch,
|
|
4493
|
+
bazel,
|
|
4102
4494
|
bicep,
|
|
4495
|
+
blade,
|
|
4103
4496
|
c,
|
|
4104
4497
|
cmake,
|
|
4105
4498
|
clojure,
|
|
@@ -4132,6 +4525,7 @@ var languages = [
|
|
|
4132
4525
|
haskell,
|
|
4133
4526
|
haxe,
|
|
4134
4527
|
hcl,
|
|
4528
|
+
hlsl,
|
|
4135
4529
|
html,
|
|
4136
4530
|
ini,
|
|
4137
4531
|
java,
|
|
@@ -4163,9 +4557,11 @@ var languages = [
|
|
|
4163
4557
|
php,
|
|
4164
4558
|
plantuml,
|
|
4165
4559
|
powershell,
|
|
4560
|
+
prolog,
|
|
4166
4561
|
protobuf,
|
|
4167
4562
|
pug,
|
|
4168
4563
|
python,
|
|
4564
|
+
qml,
|
|
4169
4565
|
r,
|
|
4170
4566
|
racket,
|
|
4171
4567
|
razor,
|
|
@@ -4176,6 +4572,7 @@ var languages = [
|
|
|
4176
4572
|
scss,
|
|
4177
4573
|
solidity,
|
|
4178
4574
|
sql,
|
|
4575
|
+
starlark,
|
|
4179
4576
|
svg,
|
|
4180
4577
|
svelte,
|
|
4181
4578
|
swift,
|
|
@@ -4184,10 +4581,13 @@ var languages = [
|
|
|
4184
4581
|
toml,
|
|
4185
4582
|
twig,
|
|
4186
4583
|
typescript,
|
|
4584
|
+
typst,
|
|
4187
4585
|
verilog,
|
|
4586
|
+
vhdl,
|
|
4188
4587
|
visualBasic,
|
|
4189
4588
|
vue,
|
|
4190
4589
|
webassembly,
|
|
4590
|
+
wgsl,
|
|
4191
4591
|
xaml,
|
|
4192
4592
|
xml,
|
|
4193
4593
|
xquery,
|
|
@@ -4255,6 +4655,7 @@ var languageIndex = [
|
|
|
4255
4655
|
{ slug: "actionscript", extensions: [".as"] },
|
|
4256
4656
|
{ slug: "ada", extensions: [".adb", ".ads", ".ada"] },
|
|
4257
4657
|
{ slug: "apex", extensions: [".cls", ".trigger"] },
|
|
4658
|
+
{ slug: "asciidoc", extensions: [".adoc", ".asciidoc", ".asc"] },
|
|
4258
4659
|
{ slug: "asp", extensions: [".asp", ".aspx", ".ascx", ".ashx", ".asmx", ".master"] },
|
|
4259
4660
|
{ slug: "astro", extensions: [".astro"] },
|
|
4260
4661
|
{ slug: "assembly", extensions: [".asm", ".s", ".S", ".inc"] },
|
|
@@ -4264,7 +4665,12 @@ var languageIndex = [
|
|
|
4264
4665
|
extensions: [".sh", ".bash", ".bashrc", ".bash_profile", ".bash_login", ".profile"]
|
|
4265
4666
|
},
|
|
4266
4667
|
{ slug: "batch", extensions: [".bat", ".cmd"] },
|
|
4668
|
+
{
|
|
4669
|
+
slug: "bazel",
|
|
4670
|
+
extensions: ["BUILD.bazel", "WORKSPACE", "WORKSPACE.bazel", "MODULE.bazel"]
|
|
4671
|
+
},
|
|
4267
4672
|
{ slug: "bicep", extensions: [".bicep", ".bicepparam"] },
|
|
4673
|
+
{ slug: "blade", extensions: [".blade.php"] },
|
|
4268
4674
|
{ slug: "c", extensions: [".c", ".h"] },
|
|
4269
4675
|
{ slug: "cmake", extensions: ["CMakeLists.txt", ".cmake"] },
|
|
4270
4676
|
{ slug: "clojure", extensions: [".clj", ".cljs", ".cljc", ".edn", ".bb"] },
|
|
@@ -4306,6 +4712,7 @@ var languageIndex = [
|
|
|
4306
4712
|
{ slug: "haskell", extensions: [".hs", ".lhs", ".hsc", ".hs-boot", ".hsig", ".cabal"] },
|
|
4307
4713
|
{ slug: "haxe", extensions: [".hx", ".hxml"] },
|
|
4308
4714
|
{ slug: "hcl", extensions: [".hcl", ".tf", ".tfvars", ".pkr.hcl", ".nomad"] },
|
|
4715
|
+
{ slug: "hlsl", extensions: [".hlsl", ".fx", ".fxh", ".hlsli"] },
|
|
4309
4716
|
{ slug: "html", extensions: [".html", ".htm"] },
|
|
4310
4717
|
{ slug: "ini", extensions: [".ini"] },
|
|
4311
4718
|
{ slug: "java", extensions: [".java"] },
|
|
@@ -4337,9 +4744,11 @@ var languageIndex = [
|
|
|
4337
4744
|
{ slug: "php", extensions: [".php", ".phtml", ".php3", ".php4", ".php5", ".phps"] },
|
|
4338
4745
|
{ slug: "plantuml", extensions: [".puml", ".plantuml", ".iuml"] },
|
|
4339
4746
|
{ slug: "powershell", extensions: [".ps1", ".psm1", ".psd1", ".ps1xml"] },
|
|
4747
|
+
{ slug: "prolog", extensions: [".pl", ".pro", ".prolog", ".P"] },
|
|
4340
4748
|
{ slug: "protobuf", extensions: [".proto"] },
|
|
4341
4749
|
{ slug: "pug", extensions: [".pug", ".jade"] },
|
|
4342
4750
|
{ slug: "python", extensions: [".py", ".pyw"] },
|
|
4751
|
+
{ slug: "qml", extensions: [".qml", ".qmltypes", ".qmlproject"] },
|
|
4343
4752
|
{ slug: "r", extensions: [".r", ".R", ".rmd", ".Rmd", ".qmd", ".Rprofile"] },
|
|
4344
4753
|
{ slug: "racket", extensions: [".rkt", ".rktd", ".rktl", ".scrbl"] },
|
|
4345
4754
|
{ slug: "razor", extensions: [".cshtml", ".razor"] },
|
|
@@ -4353,6 +4762,7 @@ var languageIndex = [
|
|
|
4353
4762
|
{ slug: "scss", extensions: [".scss", ".sass"] },
|
|
4354
4763
|
{ slug: "solidity", extensions: [".sol"] },
|
|
4355
4764
|
{ slug: "sql", extensions: [".sql"] },
|
|
4765
|
+
{ slug: "starlark", extensions: [".bzl", ".star", ".sky"] },
|
|
4356
4766
|
{ slug: "svg", extensions: [".svg", ".svgz"] },
|
|
4357
4767
|
{ slug: "svelte", extensions: [".svelte"] },
|
|
4358
4768
|
{ slug: "swift", extensions: [".swift"] },
|
|
@@ -4361,10 +4771,13 @@ var languageIndex = [
|
|
|
4361
4771
|
{ slug: "toml", extensions: [".toml"] },
|
|
4362
4772
|
{ slug: "twig", extensions: [".twig"] },
|
|
4363
4773
|
{ slug: "typescript", extensions: [".ts", ".tsx", ".mts", ".cts"] },
|
|
4774
|
+
{ slug: "typst", extensions: [".typ"] },
|
|
4364
4775
|
{ slug: "verilog", extensions: [".v", ".vh", ".sv", ".svh"] },
|
|
4776
|
+
{ slug: "vhdl", extensions: [".vhd", ".vhdl"] },
|
|
4365
4777
|
{ slug: "visual-basic", extensions: [".vb"] },
|
|
4366
4778
|
{ slug: "vue", extensions: [".vue"] },
|
|
4367
4779
|
{ slug: "webassembly", extensions: [".wasm", ".wat"] },
|
|
4780
|
+
{ slug: "wgsl", extensions: [".wgsl"] },
|
|
4368
4781
|
{ slug: "xaml", extensions: [".xaml", ".baml"] },
|
|
4369
4782
|
{ slug: "xml", extensions: [".xml", ".xsd", ".xsl", ".xslt"] },
|
|
4370
4783
|
{ slug: "xquery", extensions: [".xq", ".xql", ".xqm", ".xquery", ".xqy"] },
|
|
@@ -4381,13 +4794,16 @@ var languageLoaders = {
|
|
|
4381
4794
|
actionscript: () => Promise.resolve().then(() => (init_actionscript(), actionscript_exports)).then((module) => module.actionscript),
|
|
4382
4795
|
ada: () => Promise.resolve().then(() => (init_ada(), ada_exports)).then((module) => module.ada),
|
|
4383
4796
|
apex: () => Promise.resolve().then(() => (init_apex(), apex_exports)).then((module) => module.apex),
|
|
4797
|
+
asciidoc: () => Promise.resolve().then(() => (init_asciidoc(), asciidoc_exports)).then((module) => module.asciidoc),
|
|
4384
4798
|
asp: () => Promise.resolve().then(() => (init_asp(), asp_exports)).then((module) => module.asp),
|
|
4385
4799
|
assembly: () => Promise.resolve().then(() => (init_assembly(), assembly_exports)).then((module) => module.assembly),
|
|
4386
4800
|
astro: () => Promise.resolve().then(() => (init_astro(), astro_exports)).then((module) => module.astro),
|
|
4387
4801
|
awk: () => Promise.resolve().then(() => (init_awk(), awk_exports)).then((module) => module.awk),
|
|
4388
4802
|
bash: () => Promise.resolve().then(() => (init_bash(), bash_exports)).then((module) => module.bash),
|
|
4389
4803
|
batch: () => Promise.resolve().then(() => (init_batch(), batch_exports)).then((module) => module.batch),
|
|
4804
|
+
bazel: () => Promise.resolve().then(() => (init_bazel(), bazel_exports)).then((module) => module.bazel),
|
|
4390
4805
|
bicep: () => Promise.resolve().then(() => (init_bicep(), bicep_exports)).then((module) => module.bicep),
|
|
4806
|
+
blade: () => Promise.resolve().then(() => (init_blade(), blade_exports)).then((module) => module.blade),
|
|
4391
4807
|
c: () => Promise.resolve().then(() => (init_c(), c_exports)).then((module) => module.c),
|
|
4392
4808
|
cmake: () => Promise.resolve().then(() => (init_cmake(), cmake_exports)).then((module) => module.cmake),
|
|
4393
4809
|
clojure: () => Promise.resolve().then(() => (init_clojure(), clojure_exports)).then((module) => module.clojure),
|
|
@@ -4420,6 +4836,7 @@ var languageLoaders = {
|
|
|
4420
4836
|
haskell: () => Promise.resolve().then(() => (init_haskell(), haskell_exports)).then((module) => module.haskell),
|
|
4421
4837
|
haxe: () => Promise.resolve().then(() => (init_haxe(), haxe_exports)).then((module) => module.haxe),
|
|
4422
4838
|
hcl: () => Promise.resolve().then(() => (init_hcl(), hcl_exports)).then((module) => module.hcl),
|
|
4839
|
+
hlsl: () => Promise.resolve().then(() => (init_hlsl(), hlsl_exports)).then((module) => module.hlsl),
|
|
4423
4840
|
html: () => Promise.resolve().then(() => (init_html(), html_exports)).then((module) => module.html),
|
|
4424
4841
|
ini: () => Promise.resolve().then(() => (init_ini(), ini_exports)).then((module) => module.ini),
|
|
4425
4842
|
java: () => Promise.resolve().then(() => (init_java(), java_exports)).then((module) => module.java),
|
|
@@ -4451,9 +4868,11 @@ var languageLoaders = {
|
|
|
4451
4868
|
php: () => Promise.resolve().then(() => (init_php(), php_exports)).then((module) => module.php),
|
|
4452
4869
|
plantuml: () => Promise.resolve().then(() => (init_plantuml(), plantuml_exports)).then((module) => module.plantuml),
|
|
4453
4870
|
powershell: () => Promise.resolve().then(() => (init_powershell(), powershell_exports)).then((module) => module.powershell),
|
|
4871
|
+
prolog: () => Promise.resolve().then(() => (init_prolog(), prolog_exports)).then((module) => module.prolog),
|
|
4454
4872
|
protobuf: () => Promise.resolve().then(() => (init_protobuf(), protobuf_exports)).then((module) => module.protobuf),
|
|
4455
4873
|
pug: () => Promise.resolve().then(() => (init_pug(), pug_exports)).then((module) => module.pug),
|
|
4456
4874
|
python: () => Promise.resolve().then(() => (init_python(), python_exports)).then((module) => module.python),
|
|
4875
|
+
qml: () => Promise.resolve().then(() => (init_qml(), qml_exports)).then((module) => module.qml),
|
|
4457
4876
|
r: () => Promise.resolve().then(() => (init_r(), r_exports)).then((module) => module.r),
|
|
4458
4877
|
racket: () => Promise.resolve().then(() => (init_racket(), racket_exports)).then((module) => module.racket),
|
|
4459
4878
|
razor: () => Promise.resolve().then(() => (init_razor(), razor_exports)).then((module) => module.razor),
|
|
@@ -4464,6 +4883,7 @@ var languageLoaders = {
|
|
|
4464
4883
|
scss: () => Promise.resolve().then(() => (init_scss(), scss_exports)).then((module) => module.scss),
|
|
4465
4884
|
solidity: () => Promise.resolve().then(() => (init_solidity(), solidity_exports)).then((module) => module.solidity),
|
|
4466
4885
|
sql: () => Promise.resolve().then(() => (init_sql(), sql_exports)).then((module) => module.sql),
|
|
4886
|
+
starlark: () => Promise.resolve().then(() => (init_starlark(), starlark_exports)).then((module) => module.starlark),
|
|
4467
4887
|
svelte: () => Promise.resolve().then(() => (init_svelte(), svelte_exports)).then((module) => module.svelte),
|
|
4468
4888
|
svg: () => Promise.resolve().then(() => (init_svg(), svg_exports)).then((module) => module.svg),
|
|
4469
4889
|
swift: () => Promise.resolve().then(() => (init_swift(), swift_exports)).then((module) => module.swift),
|
|
@@ -4472,10 +4892,13 @@ var languageLoaders = {
|
|
|
4472
4892
|
toml: () => Promise.resolve().then(() => (init_toml(), toml_exports)).then((module) => module.toml),
|
|
4473
4893
|
twig: () => Promise.resolve().then(() => (init_twig(), twig_exports)).then((module) => module.twig),
|
|
4474
4894
|
typescript: () => Promise.resolve().then(() => (init_typescript(), typescript_exports)).then((module) => module.typescript),
|
|
4895
|
+
typst: () => Promise.resolve().then(() => (init_typst(), typst_exports)).then((module) => module.typst),
|
|
4475
4896
|
verilog: () => Promise.resolve().then(() => (init_verilog(), verilog_exports)).then((module) => module.verilog),
|
|
4897
|
+
vhdl: () => Promise.resolve().then(() => (init_vhdl(), vhdl_exports)).then((module) => module.vhdl),
|
|
4476
4898
|
"visual-basic": () => Promise.resolve().then(() => (init_visual_basic(), visual_basic_exports)).then((module) => module.visualBasic),
|
|
4477
4899
|
vue: () => Promise.resolve().then(() => (init_vue(), vue_exports)).then((module) => module.vue),
|
|
4478
4900
|
webassembly: () => Promise.resolve().then(() => (init_webassembly(), webassembly_exports)).then((module) => module.webassembly),
|
|
4901
|
+
wgsl: () => Promise.resolve().then(() => (init_wgsl(), wgsl_exports)).then((module) => module.wgsl),
|
|
4479
4902
|
xaml: () => Promise.resolve().then(() => (init_xaml(), xaml_exports)).then((module) => module.xaml),
|
|
4480
4903
|
xml: () => Promise.resolve().then(() => (init_xml(), xml_exports)).then((module) => module.xml),
|
|
4481
4904
|
xquery: () => Promise.resolve().then(() => (init_xquery(), xquery_exports)).then((module) => module.xquery),
|