code-languages 1.37.0 → 1.38.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 +12 -1
- package/dist/{api-DVDG0xl6.d.cts → api-CjNcbLKv.d.cts} +1 -1
- package/dist/{api-CvUpukaI.d.ts → api-u3GKPoGq.d.ts} +1 -1
- package/dist/api.cjs +675 -0
- package/dist/api.d.cts +2 -2
- package/dist/api.d.ts +2 -2
- package/dist/api.js +675 -0
- package/dist/detect-slugs.cjs +11 -0
- package/dist/detect-slugs.d.cts +1 -1
- package/dist/detect-slugs.d.ts +1 -1
- package/dist/detect-slugs.js +11 -0
- package/dist/detect.cjs +543 -0
- package/dist/detect.js +543 -0
- package/dist/index.cjs +686 -0
- package/dist/index.d.cts +507 -2
- package/dist/index.d.ts +507 -2
- package/dist/index.js +687 -1
- package/dist/languages/assemblyscript.cjs +52 -0
- package/dist/languages/assemblyscript.d.cts +49 -0
- package/dist/languages/assemblyscript.d.ts +49 -0
- package/dist/languages/assemblyscript.js +50 -0
- package/dist/languages/basic.cjs +48 -0
- package/dist/languages/basic.d.cts +45 -0
- package/dist/languages/basic.d.ts +45 -0
- package/dist/languages/basic.js +46 -0
- package/dist/languages/dax.cjs +56 -0
- package/dist/languages/dax.d.cts +48 -0
- package/dist/languages/dax.d.ts +48 -0
- package/dist/languages/dax.js +54 -0
- package/dist/languages/mumps.cjs +51 -0
- package/dist/languages/mumps.d.cts +48 -0
- package/dist/languages/mumps.d.ts +48 -0
- package/dist/languages/mumps.js +49 -0
- package/dist/languages/openscad.cjs +51 -0
- package/dist/languages/openscad.d.cts +48 -0
- package/dist/languages/openscad.d.ts +48 -0
- package/dist/languages/openscad.js +49 -0
- package/dist/languages/postscript.cjs +51 -0
- package/dist/languages/postscript.d.cts +48 -0
- package/dist/languages/postscript.d.ts +48 -0
- package/dist/languages/postscript.js +49 -0
- package/dist/languages/powerquery.cjs +51 -0
- package/dist/languages/powerquery.d.cts +48 -0
- package/dist/languages/powerquery.d.ts +48 -0
- package/dist/languages/powerquery.js +49 -0
- package/dist/languages/processing.cjs +52 -0
- package/dist/languages/processing.d.cts +49 -0
- package/dist/languages/processing.d.ts +49 -0
- package/dist/languages/processing.js +50 -0
- package/dist/languages/rpg.cjs +51 -0
- package/dist/languages/rpg.d.cts +48 -0
- package/dist/languages/rpg.d.ts +48 -0
- package/dist/languages/rpg.js +49 -0
- package/dist/languages/vba.cjs +51 -0
- package/dist/languages/vba.d.cts +48 -0
- package/dist/languages/vba.d.ts +48 -0
- package/dist/languages/vba.js +49 -0
- package/dist/languages/xpath.cjs +51 -0
- package/dist/languages/xpath.d.cts +48 -0
- package/dist/languages/xpath.d.ts +48 -0
- package/dist/languages/xpath.js +49 -0
- package/dist/{registry-xJ7UlZlJ.d.cts → registry-p4uQJ2gP.d.cts} +33 -0
- package/dist/{registry-xJ7UlZlJ.d.ts → registry-p4uQJ2gP.d.ts} +33 -0
- package/package.json +56 -1
package/dist/api.js
CHANGED
|
@@ -945,6 +945,64 @@ var init_assembly = __esm({
|
|
|
945
945
|
}
|
|
946
946
|
});
|
|
947
947
|
|
|
948
|
+
// src/languages/assemblyscript.ts
|
|
949
|
+
var assemblyscript_exports = {};
|
|
950
|
+
__export(assemblyscript_exports, {
|
|
951
|
+
assemblyscript: () => assemblyscript
|
|
952
|
+
});
|
|
953
|
+
var assemblyscript;
|
|
954
|
+
var init_assemblyscript = __esm({
|
|
955
|
+
"src/languages/assemblyscript.ts"() {
|
|
956
|
+
assemblyscript = {
|
|
957
|
+
slug: "assemblyscript",
|
|
958
|
+
publishedDate: "2017-06-06",
|
|
959
|
+
extensions: [".as"],
|
|
960
|
+
author: "Daniel Wirtz / AssemblyScript Contributors",
|
|
961
|
+
website: "https://www.assemblyscript.org",
|
|
962
|
+
paradigms: ["imperative", "object-oriented", "compiled"],
|
|
963
|
+
tooling: {
|
|
964
|
+
runtimes: ["Wasm", "WASI"],
|
|
965
|
+
ecosystems: ["WebAssembly"]
|
|
966
|
+
},
|
|
967
|
+
version: "0.27.32",
|
|
968
|
+
logo: "https://avatars.githubusercontent.com/u/28916798?v=4",
|
|
969
|
+
color: "#007AAC",
|
|
970
|
+
i18n: {
|
|
971
|
+
en: {
|
|
972
|
+
name: "AssemblyScript",
|
|
973
|
+
description: "A TypeScript-like language that compiles to WebAssembly.",
|
|
974
|
+
longDescription: "AssemblyScript is a variant of TypeScript designed to compile to WebAssembly using the Binaryen toolkit.\n\nIt offers TypeScript-like syntax with explicit integer and floating-point types, linear memory access, and low-level control, enabling near-native performance in browser and server environments that support WebAssembly."
|
|
975
|
+
},
|
|
976
|
+
es: {
|
|
977
|
+
name: "AssemblyScript",
|
|
978
|
+
description: "Un lenguaje similar a TypeScript que compila a WebAssembly.",
|
|
979
|
+
longDescription: "AssemblyScript es una variante de TypeScript dise\xF1ada para compilar a WebAssembly mediante el toolkit Binaryen.\n\nOfrece sintaxis similar a TypeScript con tipos enteros y de punto flotante expl\xEDcitos, acceso a memoria lineal y control de bajo nivel, permitiendo rendimiento cercano al nativo en entornos de navegador y servidor que soportan WebAssembly."
|
|
980
|
+
},
|
|
981
|
+
it: {
|
|
982
|
+
name: "AssemblyScript",
|
|
983
|
+
description: "Un linguaggio simile a TypeScript che compila in WebAssembly.",
|
|
984
|
+
longDescription: "AssemblyScript \xE8 una variante di TypeScript progettata per compilare in WebAssembly utilizzando il toolkit Binaryen.\n\nOffre una sintassi simile a TypeScript con tipi interi e in virgola mobile espliciti, accesso alla memoria lineare e controllo di basso livello, consentendo prestazioni vicine a quelle native in ambienti browser e server che supportano WebAssembly."
|
|
985
|
+
},
|
|
986
|
+
fr: {
|
|
987
|
+
name: "AssemblyScript",
|
|
988
|
+
description: "Un langage similaire \xE0 TypeScript qui compile en WebAssembly.",
|
|
989
|
+
longDescription: "AssemblyScript est une variante de TypeScript con\xE7ue pour compiler en WebAssembly \xE0 l'aide du toolkit Binaryen.\n\nIl offre une syntaxe similaire \xE0 TypeScript avec des types entiers et \xE0 virgule flottante explicites, un acc\xE8s \xE0 la m\xE9moire lin\xE9aire et un contr\xF4le de bas niveau, permettant des performances quasi natives dans les environnements navigateur et serveur prenant en charge WebAssembly."
|
|
990
|
+
},
|
|
991
|
+
de: {
|
|
992
|
+
name: "AssemblyScript",
|
|
993
|
+
description: "Eine TypeScript-\xE4hnliche Sprache, die zu WebAssembly kompiliert.",
|
|
994
|
+
longDescription: "AssemblyScript ist eine TypeScript-Variante, die mit dem Binaryen-Toolkit zu WebAssembly kompiliert.\n\nEs bietet TypeScript-\xE4hnliche Syntax mit expliziten Integer- und Gleitkommatypen, linearem Speicherzugriff und Low-Level-Kontrolle und erm\xF6glicht Near-Native-Performance in Browser- und Serverumgebungen, die WebAssembly unterst\xFCtzen."
|
|
995
|
+
},
|
|
996
|
+
pt: {
|
|
997
|
+
name: "AssemblyScript",
|
|
998
|
+
description: "Uma linguagem semelhante ao TypeScript que compila para WebAssembly.",
|
|
999
|
+
longDescription: "AssemblyScript \xE9 uma variante do TypeScript projetada para compilar em WebAssembly usando o toolkit Binaryen.\n\nOferece sintaxe semelhante ao TypeScript com tipos inteiros e de ponto flutuante expl\xEDcitos, acesso \xE0 mem\xF3ria linear e controle de baixo n\xEDvel, permitindo desempenho quase nativo em ambientes de navegador e servidor que suportam WebAssembly."
|
|
1000
|
+
}
|
|
1001
|
+
}
|
|
1002
|
+
};
|
|
1003
|
+
}
|
|
1004
|
+
});
|
|
1005
|
+
|
|
948
1006
|
// src/languages/angelscript.ts
|
|
949
1007
|
var angelscript_exports = {};
|
|
950
1008
|
__export(angelscript_exports, {
|
|
@@ -1354,6 +1412,60 @@ var init_ballerina = __esm({
|
|
|
1354
1412
|
}
|
|
1355
1413
|
});
|
|
1356
1414
|
|
|
1415
|
+
// src/languages/basic.ts
|
|
1416
|
+
var basic_exports = {};
|
|
1417
|
+
__export(basic_exports, {
|
|
1418
|
+
basic: () => basic
|
|
1419
|
+
});
|
|
1420
|
+
var basic;
|
|
1421
|
+
var init_basic = __esm({
|
|
1422
|
+
"src/languages/basic.ts"() {
|
|
1423
|
+
basic = {
|
|
1424
|
+
slug: "basic",
|
|
1425
|
+
publishedDate: "1964-05-01",
|
|
1426
|
+
extensions: [".bas", ".bi", ".bb"],
|
|
1427
|
+
author: "John G. Kemeny, Thomas E. Kurtz",
|
|
1428
|
+
website: "https://freebasic.net",
|
|
1429
|
+
paradigms: ["imperative", "procedural", "structured"],
|
|
1430
|
+
version: "FreeBASIC 1.10.1",
|
|
1431
|
+
logo: "https://avatars.githubusercontent.com/u/5598624?v=4",
|
|
1432
|
+
color: "#00599C",
|
|
1433
|
+
i18n: {
|
|
1434
|
+
en: {
|
|
1435
|
+
name: "BASIC",
|
|
1436
|
+
description: "A family of general-purpose high-level programming languages designed for ease of use.",
|
|
1437
|
+
longDescription: "BASIC (Beginners' All-purpose Symbolic Instruction Code) was designed in 1964 to enable non-science students to use computers.\n\nModern descendants include FreeBASIC, QB64, and Visual Basic. FreeBASIC remains actively maintained, offering compiled programs, inline assembly, and compatibility with classic BASIC code while adding modern structures like objects, pointers, and preprocessor directives."
|
|
1438
|
+
},
|
|
1439
|
+
es: {
|
|
1440
|
+
name: "BASIC",
|
|
1441
|
+
description: "Una familia de lenguajes de programaci\xF3n de alto nivel de prop\xF3sito general dise\xF1ados para la facilidad de uso.",
|
|
1442
|
+
longDescription: "BASIC (Beginners' All-purpose Symbolic Instruction Code) fue dise\xF1ado en 1964 para permitir a estudiantes no cient\xEDficos usar computadoras.\n\nLos descendientes modernos incluyen FreeBASIC, QB64 y Visual Basic. FreeBASIC sigue mantenido activamente, ofreciendo programas compilados, ensamblador en l\xEDnea y compatibilidad con c\xF3digo BASIC cl\xE1sico, al tiempo que a\xF1ade estructuras modernas como objetos, punteros y directivas de preprocesador."
|
|
1443
|
+
},
|
|
1444
|
+
it: {
|
|
1445
|
+
name: "BASIC",
|
|
1446
|
+
description: "Una famiglia di linguaggi di programmazione di alto livello a uso generale progettati per la facilit\xE0 d'uso.",
|
|
1447
|
+
longDescription: "BASIC (Beginners' All-purpose Symbolic Instruction Code) fu progettato nel 1964 per consentire agli studenti non scientifici di usare i computer.\n\nI discendenti moderni includono FreeBASIC, QB64 e Visual Basic. FreeBASIC e ancora attivamente mantenuto, offrendo programmi compilati, assembly inline e compatibilita con il codice BASIC classico, aggiungendo strutture moderne come oggetti, puntatori e direttive del preprocessore."
|
|
1448
|
+
},
|
|
1449
|
+
fr: {
|
|
1450
|
+
name: "BASIC",
|
|
1451
|
+
description: "Une famille de langages de programmation de haut niveau \xE0 usage g\xE9n\xE9ral con\xE7us pour la facilit\xE9 d'utilisation.",
|
|
1452
|
+
longDescription: "BASIC (Beginners' All-purpose Symbolic Instruction Code) a \xE9t\xE9 con\xE7u en 1964 pour permettre aux \xE9tudiants non scientifiques d'utiliser des ordinateurs.\n\nLes descendants modernes comprennent FreeBASIC, QB64 et Visual Basic. FreeBASIC est encore activement maintenu, offrant des programmes compil\xE9s, de l'assembleur en ligne et une compatibilit\xE9 avec le code BASIC classique tout en ajoutant des structures modernes comme des objets, des pointeurs et des directives de pr\xE9processeur."
|
|
1453
|
+
},
|
|
1454
|
+
de: {
|
|
1455
|
+
name: "BASIC",
|
|
1456
|
+
description: "Eine Familie von allgemeinen Hochsprachen, die auf Benutzerfreundlichkeit ausgelegt sind.",
|
|
1457
|
+
longDescription: "BASIC (Beginner's All-purpose Symbolic Instruction Code) wurde 1964 entwickelt, um Nicht-Informatikstudenten die Nutzung von Computern zu erm\xF6glichen.\n\nModerne Nachfolger sind FreeBASIC, QB64 und Visual Basic. FreeBASIC wird aktiv gepflegt und bietet kompilierte Programme, Inline-Assembler und Kompatibilit\xE4t mit klassischem BASIC-Code, w\xE4hrend moderne Strukturen wie Objekte, Zeiger und Pr\xE4prozessor-Direktiven hinzugef\xFCgt werden."
|
|
1458
|
+
},
|
|
1459
|
+
pt: {
|
|
1460
|
+
name: "BASIC",
|
|
1461
|
+
description: "Uma fam\xEDlia de linguagens de programa\xE7\xE3o de alto n\xEDvel de prop\xF3sito geral projetadas para facilidade de uso.",
|
|
1462
|
+
longDescription: "BASIC (Beginners' All-purpose Symbolic Instruction Code) foi projetado em 1964 para permitir que estudantes de \xE1reas n\xE3o cient\xEDficas usassem computadores.\n\nOs descendentes modernos incluem FreeBASIC, QB64 e Visual Basic. O FreeBASIC ainda \xE9 ativamente mantido, oferecendo programas compilados, assembly inline e compatibilidade com c\xF3digo BASIC cl\xE1ssico, enquanto adiciona estruturas modernas como objetos, ponteiros e diretivas de pr\xE9-processador."
|
|
1463
|
+
}
|
|
1464
|
+
}
|
|
1465
|
+
};
|
|
1466
|
+
}
|
|
1467
|
+
});
|
|
1468
|
+
|
|
1357
1469
|
// src/languages/bash.ts
|
|
1358
1470
|
var bash_exports = {};
|
|
1359
1471
|
__export(bash_exports, {
|
|
@@ -3461,6 +3573,68 @@ var init_dart = __esm({
|
|
|
3461
3573
|
}
|
|
3462
3574
|
});
|
|
3463
3575
|
|
|
3576
|
+
// src/languages/dax.ts
|
|
3577
|
+
var dax_exports = {};
|
|
3578
|
+
__export(dax_exports, {
|
|
3579
|
+
dax: () => dax
|
|
3580
|
+
});
|
|
3581
|
+
var dax;
|
|
3582
|
+
var init_dax = __esm({
|
|
3583
|
+
"src/languages/dax.ts"() {
|
|
3584
|
+
dax = {
|
|
3585
|
+
slug: "dax",
|
|
3586
|
+
publishedDate: "2009-07-01",
|
|
3587
|
+
extensions: [".dax"],
|
|
3588
|
+
author: "Microsoft",
|
|
3589
|
+
website: "https://learn.microsoft.com/en-us/dax/",
|
|
3590
|
+
paradigms: ["declarative", "functional"],
|
|
3591
|
+
tooling: {
|
|
3592
|
+
ecosystems: [
|
|
3593
|
+
"Microsoft Power BI",
|
|
3594
|
+
"Excel",
|
|
3595
|
+
"Azure Analysis Services",
|
|
3596
|
+
"SQL Server Analysis Services"
|
|
3597
|
+
]
|
|
3598
|
+
},
|
|
3599
|
+
version: "DAX 2025",
|
|
3600
|
+
logo: "https://dummyimage.com/32x32/F2C811/000000.png&text=DAX",
|
|
3601
|
+
color: "#F2C811",
|
|
3602
|
+
i18n: {
|
|
3603
|
+
en: {
|
|
3604
|
+
name: "DAX",
|
|
3605
|
+
description: "A formula language for data modeling and analysis in Microsoft Power BI and Excel.",
|
|
3606
|
+
longDescription: "Data Analysis Expressions (DAX) is a formula language used in Power BI, Power Pivot for Excel, and Analysis Services.\n\nDAX provides functions and operators for calculations on tables and columns in tabular data models, supporting measures, calculated columns, and KPIs for business intelligence reporting."
|
|
3607
|
+
},
|
|
3608
|
+
es: {
|
|
3609
|
+
name: "DAX",
|
|
3610
|
+
description: "Un lenguaje de f\xF3rmulas para modelado y an\xE1lisis de datos en Microsoft Power BI y Excel.",
|
|
3611
|
+
longDescription: "Data Analysis Expressions (DAX) es un lenguaje de f\xF3rmulas utilizado en Power BI, Power Pivot para Excel y Analysis Services.\n\nDAX proporciona funciones y operadores para calculos sobre tablas y columnas en modelos de datos tabulares, soportando medidas, columnas calculadas y KPIs para informes de inteligencia de negocio."
|
|
3612
|
+
},
|
|
3613
|
+
it: {
|
|
3614
|
+
name: "DAX",
|
|
3615
|
+
description: "Un linguaggio di formule per la modellazione e analisi dei dati in Microsoft Power BI ed Excel.",
|
|
3616
|
+
longDescription: "Data Analysis Expressions (DAX) e un linguaggio di formule utilizzato in Power BI, Power Pivot per Excel e Analysis Services.\n\nDAX fornisce funzioni e operatori per i calcoli su tabelle e colonne in modelli di dati tabulari, supportando misure, colonne calcolate e KPI per i report di business intelligence."
|
|
3617
|
+
},
|
|
3618
|
+
fr: {
|
|
3619
|
+
name: "DAX",
|
|
3620
|
+
description: "Un langage de formules pour la mod\xE9lisation et l'analyse des donn\xE9es dans Microsoft Power BI et Excel.",
|
|
3621
|
+
longDescription: "Data Analysis Expressions (DAX) est un langage de formules utilis\xE9 dans Power BI, Power Pivot pour Excel et Analysis Services.\n\nDAX fournit des fonctions et des op\xE9rateurs pour les calculs sur des tables et des colonnes dans des mod\xE8les de donn\xE9es tabulaires, prenant en charge les mesures, les colonnes calcul\xE9es et les indicateurs cl\xE9s de performance pour les rapports d'informatique d\xE9cisionnelle."
|
|
3622
|
+
},
|
|
3623
|
+
de: {
|
|
3624
|
+
name: "DAX",
|
|
3625
|
+
description: "Eine Formelsprache f\xFCr Datenmodellierung und -analyse in Microsoft Power BI und Excel.",
|
|
3626
|
+
longDescription: "Data Analysis Expressions (DAX) ist eine Formelsprache, die in Power BI, Power Pivot f\xFCr Excel und Analysis Services verwendet wird.\n\nDAX bietet Funktionen und Operatoren f\xFCr Berechnungen \xFCber Tabellen und Spalten in tabellarischen Datenmodellen und unterst\xFCtzt Measures, berechnete Spalten und KPIs f\xFCr Business-Intelligence-Berichte."
|
|
3627
|
+
},
|
|
3628
|
+
pt: {
|
|
3629
|
+
name: "DAX",
|
|
3630
|
+
description: "Uma linguagem de f\xF3rmulas para modelagem e an\xE1lise de dados no Microsoft Power BI e Excel.",
|
|
3631
|
+
longDescription: "Data Analysis Expressions (DAX) \xE9 uma linguagem de f\xF3rmulas usada no Power BI, Power Pivot para Excel e Analysis Services.\n\nO DAX fornece fun\xE7\xF5es e operadores para c\xE1lculos em tabelas e colunas em modelos de dados tabulares, suportando medidas, colunas calculadas e KPIs para relat\xF3rios de business intelligence."
|
|
3632
|
+
}
|
|
3633
|
+
}
|
|
3634
|
+
};
|
|
3635
|
+
}
|
|
3636
|
+
});
|
|
3637
|
+
|
|
3464
3638
|
// src/languages/dhall.ts
|
|
3465
3639
|
var dhall_exports = {};
|
|
3466
3640
|
__export(dhall_exports, {
|
|
@@ -9310,6 +9484,63 @@ var init_move = __esm({
|
|
|
9310
9484
|
}
|
|
9311
9485
|
});
|
|
9312
9486
|
|
|
9487
|
+
// src/languages/mumps.ts
|
|
9488
|
+
var mumps_exports = {};
|
|
9489
|
+
__export(mumps_exports, {
|
|
9490
|
+
mumps: () => mumps
|
|
9491
|
+
});
|
|
9492
|
+
var mumps;
|
|
9493
|
+
var init_mumps = __esm({
|
|
9494
|
+
"src/languages/mumps.ts"() {
|
|
9495
|
+
mumps = {
|
|
9496
|
+
slug: "mumps",
|
|
9497
|
+
publishedDate: "1966-01-01",
|
|
9498
|
+
extensions: [".mac", ".int", ".ro", ".mro"],
|
|
9499
|
+
author: "Neil Pappalardo",
|
|
9500
|
+
website: "https://docs.intersystems.com",
|
|
9501
|
+
paradigms: ["imperative", "procedural"],
|
|
9502
|
+
tooling: {
|
|
9503
|
+
ecosystems: ["Healthcare IT", "InterSystems IRIS", "InterSystems Cach\xE9"]
|
|
9504
|
+
},
|
|
9505
|
+
version: "InterSystems IRIS 2025.1",
|
|
9506
|
+
logo: "https://avatars.githubusercontent.com/u/1506671?v=4",
|
|
9507
|
+
color: "#00B4E3",
|
|
9508
|
+
i18n: {
|
|
9509
|
+
en: {
|
|
9510
|
+
name: "MUMPS",
|
|
9511
|
+
description: "A general-purpose programming language with hierarchical database built in, widely used in healthcare IT.",
|
|
9512
|
+
longDescription: "MUMPS (Massachusetts General Hospital Utility Multi-Programming System), also known as M or Cache ObjectScript in its InterSystems implementation, is a language with a hierarchical key-value database built directly into the runtime.\n\nIt powers major healthcare information systems, including Epic and many electronic health record (EHR) platforms, making it one of the most widely deployed languages in healthcare IT despite its obscurity outside the domain."
|
|
9513
|
+
},
|
|
9514
|
+
es: {
|
|
9515
|
+
name: "MUMPS",
|
|
9516
|
+
description: "Un lenguaje de programaci\xF3n de prop\xF3sito general con base de datos jer\xE1rquica integrada, ampliamente usado en TI sanitaria.",
|
|
9517
|
+
longDescription: "MUMPS (Massachusetts General Hospital Utility Multi-Programming System), conocido como M o Cache ObjectScript en su implementaci\xF3n de InterSystems, es un lenguaje con una base de datos jer\xE1rquica de clave-valor integrada directamente en el runtime.\n\nImpulsa los principales sistemas de informaci\xF3n sanitaria, incluyendo Epic y muchas plataformas de historia cl\xEDnica electr\xF3nica (EHR), convirti\xE9ndolo en uno de los lenguajes m\xE1s ampliamente desplegados en TI sanitaria a pesar de su oscuridad fuera del dominio."
|
|
9518
|
+
},
|
|
9519
|
+
it: {
|
|
9520
|
+
name: "MUMPS",
|
|
9521
|
+
description: "Un linguaggio di programmazione generico con database gerarchico integrato, ampiamente usato nell'informatica sanitaria.",
|
|
9522
|
+
longDescription: "MUMPS (Massachusetts General Hospital Utility Multi-Programming System), noto come M o Cache ObjectScript nell'implementazione InterSystems, e un linguaggio con un database gerarchico chiave-valore integrato direttamente nel runtime.\n\nAlimenta i principali sistemi informativi sanitari, tra cui Epic e molte piattaforme di cartella clinica elettronica (EHR), rendendolo uno dei linguaggi piu ampiamente distribuiti nell'informatica sanitaria nonostante la sua oscurita al di fuori del dominio."
|
|
9523
|
+
},
|
|
9524
|
+
fr: {
|
|
9525
|
+
name: "MUMPS",
|
|
9526
|
+
description: "Un langage de programmation \xE0 usage g\xE9n\xE9ral avec base de donn\xE9es hi\xE9rarchique int\xE9gr\xE9e, largement utilis\xE9 en informatique de sant\xE9.",
|
|
9527
|
+
longDescription: "MUMPS (Massachusetts General Hospital Utility Multi-Programming System), \xE9galement connu sous le nom de M ou Cache ObjectScript dans son impl\xE9mentation InterSystems, est un langage avec une base de donn\xE9es hi\xE9rarchique cl\xE9-valeur int\xE9gr\xE9e directement dans le runtime.\n\nIl alimente les principaux syst\xE8mes d'information de sant\xE9, notamment Epic et de nombreuses plateformes de dossier m\xE9dical \xE9lectronique (DME), ce qui en fait l'un des langages les plus d\xE9ploy\xE9s en informatique de sant\xE9 malgr\xE9 son obscurit\xE9 en dehors du domaine."
|
|
9528
|
+
},
|
|
9529
|
+
de: {
|
|
9530
|
+
name: "MUMPS",
|
|
9531
|
+
description: "Eine Allzweck-Programmiersprache mit eingebetteter hierarchischer Datenbank, weit verbreitet in der Healthcare-IT.",
|
|
9532
|
+
longDescription: "MUMPS (Massachusetts General Hospital Utility Multi-Programming System), auch bekannt als M oder Cache ObjectScript in der InterSystems-Implementierung, ist eine Sprache mit einer hierarchischen Schl\xFCssel-Wert-Datenbank, die direkt in die Laufzeitumgebung integriert ist.\n\nEs treibt gro\xDFe Gesundheitsinformationssysteme an, darunter Epic und viele Plattformen f\xFCr elektronische Gesundheitsakten (EHR), was es trotz seiner Obscurit\xE4t au\xDFerhalb des Bereichs zu einer der am h\xE4ufigsten eingesetzten Sprachen in der Healthcare-IT macht."
|
|
9533
|
+
},
|
|
9534
|
+
pt: {
|
|
9535
|
+
name: "MUMPS",
|
|
9536
|
+
description: "Uma linguagem de programa\xE7\xE3o de prop\xF3sito geral com banco de dados hier\xE1rquico integrado, amplamente usada em TI de sa\xFAde.",
|
|
9537
|
+
longDescription: "MUMPS (Massachusetts General Hospital Utility Multi-Programming System), tamb\xE9m conhecido como M ou Cache ObjectScript em sua implementa\xE7\xE3o InterSystems, \xE9 uma linguagem com um banco de dados hier\xE1rquico de chave-valor integrado diretamente no runtime.\n\nImpulsiona os principais sistemas de informa\xE7\xE3o em sa\xFAde, incluindo o Epic e muitas plataformas de prontu\xE1rio eletr\xF4nico (EHR), tornando-o um dos linguagens mais amplamente implantados em TI de sa\xFAde, apesar de sua obscuridade fora do dom\xEDnio."
|
|
9538
|
+
}
|
|
9539
|
+
}
|
|
9540
|
+
};
|
|
9541
|
+
}
|
|
9542
|
+
});
|
|
9543
|
+
|
|
9313
9544
|
// src/languages/mustache.ts
|
|
9314
9545
|
var mustache_exports = {};
|
|
9315
9546
|
__export(mustache_exports, {
|
|
@@ -10245,6 +10476,63 @@ var init_opencl = __esm({
|
|
|
10245
10476
|
}
|
|
10246
10477
|
});
|
|
10247
10478
|
|
|
10479
|
+
// src/languages/openscad.ts
|
|
10480
|
+
var openscad_exports = {};
|
|
10481
|
+
__export(openscad_exports, {
|
|
10482
|
+
openscad: () => openscad
|
|
10483
|
+
});
|
|
10484
|
+
var openscad;
|
|
10485
|
+
var init_openscad = __esm({
|
|
10486
|
+
"src/languages/openscad.ts"() {
|
|
10487
|
+
openscad = {
|
|
10488
|
+
slug: "openscad",
|
|
10489
|
+
publishedDate: "2010-01-01",
|
|
10490
|
+
extensions: [".scad"],
|
|
10491
|
+
author: "Marius Kintel, Clifford Wolf",
|
|
10492
|
+
website: "https://openscad.org",
|
|
10493
|
+
paradigms: ["functional", "declarative", "imperative"],
|
|
10494
|
+
tooling: {
|
|
10495
|
+
ecosystems: ["3D modeling", "CAD"]
|
|
10496
|
+
},
|
|
10497
|
+
version: "2021.01",
|
|
10498
|
+
logo: "https://avatars.githubusercontent.com/u/1864477?v=4",
|
|
10499
|
+
color: "#F5CD2F",
|
|
10500
|
+
i18n: {
|
|
10501
|
+
en: {
|
|
10502
|
+
name: "OpenSCAD",
|
|
10503
|
+
description: "A script-based 3D CAD modeler for creating solid 3D models.",
|
|
10504
|
+
longDescription: "OpenSCAD is a free and open-source application for creating solid 3D CAD objects using a scripting language.\n\nUnlike interactive 3D modelers, OpenSCAD uses a purely functional script to describe geometry using constructive solid geometry (CSG) operations, making it popular for parametric design and 3D printing."
|
|
10505
|
+
},
|
|
10506
|
+
es: {
|
|
10507
|
+
name: "OpenSCAD",
|
|
10508
|
+
description: "Un modelador 3D CAD basado en scripts para crear modelos s\xF3lidos 3D.",
|
|
10509
|
+
longDescription: "OpenSCAD es una aplicaci\xF3n libre y de c\xF3digo abierto para crear objetos s\xF3lidos 3D CAD mediante un lenguaje de scripting.\n\nA diferencia de los modeladores 3D interactivos, OpenSCAD utiliza un script puramente funcional para describir geometr\xEDa mediante operaciones de geometr\xEDa s\xF3lida constructiva (CSG), siendo popular para el dise\xF1o param\xE9trico y la impresi\xF3n 3D."
|
|
10510
|
+
},
|
|
10511
|
+
it: {
|
|
10512
|
+
name: "OpenSCAD",
|
|
10513
|
+
description: "Un modellatore CAD 3D basato su script per la creazione di modelli solidi 3D.",
|
|
10514
|
+
longDescription: "OpenSCAD e un'applicazione libera e open source per la creazione di oggetti CAD 3D solidi tramite un linguaggio di scripting.\n\nA differenza dei modellatori 3D interattivi, OpenSCAD utilizza uno script puramente funzionale per descrivere la geometria tramite operazioni di geometria solida costruttiva (CSG), rendendolo popolare per il design parametrico e la stampa 3D."
|
|
10515
|
+
},
|
|
10516
|
+
fr: {
|
|
10517
|
+
name: "OpenSCAD",
|
|
10518
|
+
description: "Un modeleur CAO 3D bas\xE9 sur des scripts pour cr\xE9er des mod\xE8les solides 3D.",
|
|
10519
|
+
longDescription: "OpenSCAD est une application libre et open source pour cr\xE9er des objets CAO 3D solides \xE0 l'aide d'un langage de script.\n\nContrairement aux modeleurs 3D interactifs, OpenSCAD utilise un script purement fonctionnel pour d\xE9crire la g\xE9om\xE9trie \xE0 l'aide d'op\xE9rations de g\xE9om\xE9trie solide constructive (CSG), ce qui le rend populaire pour la conception param\xE9trique et l'impression 3D."
|
|
10520
|
+
},
|
|
10521
|
+
de: {
|
|
10522
|
+
name: "OpenSCAD",
|
|
10523
|
+
description: "Ein skriptbasierter 3D-CAD-Modellierer zur Erstellung solider 3D-Modelle.",
|
|
10524
|
+
longDescription: "OpenSCAD ist eine freie und quelloffene Anwendung zur Erstellung solider 3D-CAD-Objekte mit einer Skriptsprache.\n\nIm Gegensatz zu interaktiven 3D-Modellierern verwendet OpenSCAD ein rein funktionales Skript zur Beschreibung der Geometrie mittels konstruktiver Festk\xF6rpergeometrie (CSG) und ist beliebt f\xFCr parametrisches Design und 3D-Druck."
|
|
10525
|
+
},
|
|
10526
|
+
pt: {
|
|
10527
|
+
name: "OpenSCAD",
|
|
10528
|
+
description: "Um modelador CAD 3D baseado em scripts para criar modelos s\xF3lidos 3D.",
|
|
10529
|
+
longDescription: "OpenSCAD \xE9 uma aplica\xE7\xE3o livre e de c\xF3digo aberto para criar objetos CAD 3D s\xF3lidos usando uma linguagem de scripting.\n\nAo contr\xE1rio dos modeladores 3D interativos, o OpenSCAD usa um script puramente funcional para descrever a geometria usando opera\xE7\xF5es de geometria s\xF3lida construtiva (CSG), sendo popular para design param\xE9trico e impress\xE3o 3D."
|
|
10530
|
+
}
|
|
10531
|
+
}
|
|
10532
|
+
};
|
|
10533
|
+
}
|
|
10534
|
+
});
|
|
10535
|
+
|
|
10248
10536
|
// src/languages/org.ts
|
|
10249
10537
|
var org_exports = {};
|
|
10250
10538
|
__export(org_exports, {
|
|
@@ -10947,6 +11235,120 @@ var init_pony = __esm({
|
|
|
10947
11235
|
}
|
|
10948
11236
|
});
|
|
10949
11237
|
|
|
11238
|
+
// src/languages/postscript.ts
|
|
11239
|
+
var postscript_exports = {};
|
|
11240
|
+
__export(postscript_exports, {
|
|
11241
|
+
postscript: () => postscript
|
|
11242
|
+
});
|
|
11243
|
+
var postscript;
|
|
11244
|
+
var init_postscript = __esm({
|
|
11245
|
+
"src/languages/postscript.ts"() {
|
|
11246
|
+
postscript = {
|
|
11247
|
+
slug: "postscript",
|
|
11248
|
+
publishedDate: "1984-01-01",
|
|
11249
|
+
extensions: [".ps", ".eps"],
|
|
11250
|
+
author: "John Warnock, Charles Geschke / Adobe Systems",
|
|
11251
|
+
website: "https://www.adobe.com/products/postscript.html",
|
|
11252
|
+
paradigms: ["stack-based", "declarative", "procedural"],
|
|
11253
|
+
tooling: {
|
|
11254
|
+
ecosystems: ["Print", "PDF"]
|
|
11255
|
+
},
|
|
11256
|
+
version: "PostScript 3",
|
|
11257
|
+
logo: "https://dummyimage.com/32x32/EC1C24/ffffff.png&text=PS",
|
|
11258
|
+
color: "#EC1C24",
|
|
11259
|
+
i18n: {
|
|
11260
|
+
en: {
|
|
11261
|
+
name: "PostScript",
|
|
11262
|
+
description: "A stack-based page description language used in professional printing and as the foundation of PDF.",
|
|
11263
|
+
longDescription: "PostScript is a stack-based, Turing-complete programming language and page description language developed by Adobe Systems.\n\nIt describes pages to be rendered by a printer or viewer using vector graphics commands, text layout, and image data. PostScript is the technical foundation for the PDF format and remains widely used in professional typesetting and print workflows."
|
|
11264
|
+
},
|
|
11265
|
+
es: {
|
|
11266
|
+
name: "PostScript",
|
|
11267
|
+
description: "Un lenguaje de descripci\xF3n de p\xE1gina basado en pila usado en impresi\xF3n profesional y como base del PDF.",
|
|
11268
|
+
longDescription: "PostScript es un lenguaje de programaci\xF3n basado en pila, Turing completo, y lenguaje de descripci\xF3n de p\xE1gina desarrollado por Adobe Systems.\n\nDescribe p\xE1ginas a renderizar por una impresora o visor mediante comandos de gr\xE1ficos vectoriales, dise\xF1o de texto y datos de imagen. PostScript es la base t\xE9cnica del formato PDF y sigue siendo ampliamente utilizado en composici\xF3n tipogr\xE1fica profesional y flujos de trabajo de impresi\xF3n."
|
|
11269
|
+
},
|
|
11270
|
+
it: {
|
|
11271
|
+
name: "PostScript",
|
|
11272
|
+
description: "Un linguaggio di descrizione delle pagine basato su stack utilizzato nella stampa professionale e come base del PDF.",
|
|
11273
|
+
longDescription: "PostScript e un linguaggio di programmazione basato su stack, Turing-completo, e linguaggio di descrizione delle pagine sviluppato da Adobe Systems.\n\nDescrive le pagine da renderizzare da una stampante o da un visualizzatore tramite comandi di grafica vettoriale, layout del testo e dati immagine. PostScript e la base tecnica del formato PDF e rimane ampiamente utilizzato nella composizione tipografica professionale e nei flussi di lavoro di stampa."
|
|
11274
|
+
},
|
|
11275
|
+
fr: {
|
|
11276
|
+
name: "PostScript",
|
|
11277
|
+
description: "Un langage de description de page bas\xE9 sur une pile utilis\xE9 dans l'impression professionnelle et comme fondement du PDF.",
|
|
11278
|
+
longDescription: "PostScript est un langage de programmation bas\xE9 sur une pile, Turing-complet, et un langage de description de page d\xE9velopp\xE9 par Adobe Systems.\n\nIl d\xE9crit les pages \xE0 rendre par une imprimante ou un visualiseur \xE0 l'aide de commandes graphiques vectorielles, de mise en page de texte et de donn\xE9es d'image. PostScript est la base technique du format PDF et reste largement utilis\xE9 dans la composition professionnelle et les flux de travail d'impression."
|
|
11279
|
+
},
|
|
11280
|
+
de: {
|
|
11281
|
+
name: "PostScript",
|
|
11282
|
+
description: "Eine stapelbasierte Seitenbeschreibungssprache f\xFCr professionellen Druck und als Grundlage von PDF.",
|
|
11283
|
+
longDescription: "PostScript ist eine stapelbasierte, Turing-vollst\xE4ndige Programmiersprache und Seitenbeschreibungssprache, die von Adobe Systems entwickelt wurde.\n\nSie beschreibt Seiten, die von einem Drucker oder Viewer mithilfe von Vektorgrafik-Befehlen, Textlayout und Bilddaten gerendert werden sollen. PostScript ist die technische Grundlage des PDF-Formats und wird weiterhin h\xE4ufig im professionellen Satz und in Druckworkflows eingesetzt."
|
|
11284
|
+
},
|
|
11285
|
+
pt: {
|
|
11286
|
+
name: "PostScript",
|
|
11287
|
+
description: "Uma linguagem de descri\xE7\xE3o de p\xE1gina baseada em pilha usada em impress\xE3o profissional e como base do PDF.",
|
|
11288
|
+
longDescription: "PostScript \xE9 uma linguagem de programa\xE7\xE3o baseada em pilha, Turing-completa, e linguagem de descri\xE7\xE3o de p\xE1gina desenvolvida pela Adobe Systems.\n\nDescreve p\xE1ginas a serem renderizadas por uma impressora ou visualizador usando comandos de gr\xE1ficos vetoriais, layout de texto e dados de imagem. O PostScript \xE9 a base t\xE9cnica do formato PDF e continua amplamente utilizado na composi\xE7\xE3o tipogr\xE1fica profissional e nos fluxos de trabalho de impress\xE3o."
|
|
11289
|
+
}
|
|
11290
|
+
}
|
|
11291
|
+
};
|
|
11292
|
+
}
|
|
11293
|
+
});
|
|
11294
|
+
|
|
11295
|
+
// src/languages/powerquery.ts
|
|
11296
|
+
var powerquery_exports = {};
|
|
11297
|
+
__export(powerquery_exports, {
|
|
11298
|
+
powerquery: () => powerquery
|
|
11299
|
+
});
|
|
11300
|
+
var powerquery;
|
|
11301
|
+
var init_powerquery = __esm({
|
|
11302
|
+
"src/languages/powerquery.ts"() {
|
|
11303
|
+
powerquery = {
|
|
11304
|
+
slug: "powerquery",
|
|
11305
|
+
publishedDate: "2013-01-01",
|
|
11306
|
+
extensions: [".pq", ".pqm"],
|
|
11307
|
+
author: "Microsoft",
|
|
11308
|
+
website: "https://learn.microsoft.com/en-us/powerquery-m/",
|
|
11309
|
+
paradigms: ["functional", "declarative"],
|
|
11310
|
+
tooling: {
|
|
11311
|
+
ecosystems: ["Microsoft Power BI", "Excel", "Azure Data Factory", "Microsoft Fabric"]
|
|
11312
|
+
},
|
|
11313
|
+
version: "Power Query M 2025",
|
|
11314
|
+
logo: "https://dummyimage.com/32x32/F2C811/000000.png&text=PQ",
|
|
11315
|
+
color: "#F2C811",
|
|
11316
|
+
i18n: {
|
|
11317
|
+
en: {
|
|
11318
|
+
name: "Power Query M",
|
|
11319
|
+
description: "A functional language for data transformation and ETL in Microsoft Power BI and Excel.",
|
|
11320
|
+
longDescription: "Power Query M (also called the M formula language) is a functional language used in Microsoft Power BI, Excel, Azure Data Factory, and Microsoft Fabric for data transformation and ETL (extract, transform, load) workflows.\n\nM expressions describe a sequence of data transformation steps, from connecting to data sources to reshaping, filtering, and combining data for loading into a data model."
|
|
11321
|
+
},
|
|
11322
|
+
es: {
|
|
11323
|
+
name: "Power Query M",
|
|
11324
|
+
description: "Un lenguaje funcional para transformaci\xF3n de datos y ETL en Microsoft Power BI y Excel.",
|
|
11325
|
+
longDescription: "Power Query M (tambi\xE9n llamado lenguaje de f\xF3rmulas M) es un lenguaje funcional utilizado en Microsoft Power BI, Excel, Azure Data Factory y Microsoft Fabric para transformaci\xF3n de datos y flujos de trabajo ETL.\n\nLas expresiones M describen una secuencia de pasos de transformaci\xF3n de datos, desde la conexi\xF3n con fuentes de datos hasta el reshaping, filtrado y combinaci\xF3n de datos para su carga en un modelo de datos."
|
|
11326
|
+
},
|
|
11327
|
+
it: {
|
|
11328
|
+
name: "Power Query M",
|
|
11329
|
+
description: "Un linguaggio funzionale per la trasformazione dei dati e ETL in Microsoft Power BI ed Excel.",
|
|
11330
|
+
longDescription: "Power Query M (detto anche linguaggio di formule M) e un linguaggio funzionale utilizzato in Microsoft Power BI, Excel, Azure Data Factory e Microsoft Fabric per la trasformazione dei dati e i flussi di lavoro ETL.\n\nLe espressioni M descrivono una sequenza di passaggi di trasformazione dei dati, dalla connessione alle origini dati alla rimodellazione, al filtraggio e alla combinazione dei dati per il caricamento in un modello di dati."
|
|
11331
|
+
},
|
|
11332
|
+
fr: {
|
|
11333
|
+
name: "Power Query M",
|
|
11334
|
+
description: "Un langage fonctionnel pour la transformation des donn\xE9es et ETL dans Microsoft Power BI et Excel.",
|
|
11335
|
+
longDescription: "Power Query M (\xE9galement appel\xE9 langage de formules M) est un langage fonctionnel utilis\xE9 dans Microsoft Power BI, Excel, Azure Data Factory et Microsoft Fabric pour la transformation des donn\xE9es et les flux de travail ETL.\n\nLes expressions M d\xE9crivent une s\xE9quence d'\xE9tapes de transformation des donn\xE9es, de la connexion aux sources de donn\xE9es \xE0 la mise en forme, au filtrage et \xE0 la combinaison des donn\xE9es pour leur chargement dans un mod\xE8le de donn\xE9es."
|
|
11336
|
+
},
|
|
11337
|
+
de: {
|
|
11338
|
+
name: "Power Query M",
|
|
11339
|
+
description: "Eine funktionale Sprache f\xFCr Datentransformation und ETL in Microsoft Power BI und Excel.",
|
|
11340
|
+
longDescription: "Power Query M (auch M-Formelsprache genannt) ist eine funktionale Sprache, die in Microsoft Power BI, Excel, Azure Data Factory und Microsoft Fabric f\xFCr Datentransformation und ETL-Workflows verwendet wird.\n\nM-Ausdr\xFCcke beschreiben eine Abfolge von Datentransformationsschritten, von der Verbindung mit Datenquellen bis zur Umgestaltung, Filterung und Kombination von Daten f\xFCr das Laden in ein Datenmodell."
|
|
11341
|
+
},
|
|
11342
|
+
pt: {
|
|
11343
|
+
name: "Power Query M",
|
|
11344
|
+
description: "Uma linguagem funcional para transforma\xE7\xE3o de dados e ETL no Microsoft Power BI e Excel.",
|
|
11345
|
+
longDescription: "Power Query M (tamb\xE9m chamado de linguagem de f\xF3rmulas M) \xE9 uma linguagem funcional usada no Microsoft Power BI, Excel, Azure Data Factory e Microsoft Fabric para transforma\xE7\xE3o de dados e fluxos de trabalho ETL.\n\nAs express\xF5es M descrevem uma sequ\xEAncia de etapas de transforma\xE7\xE3o de dados, desde a conex\xE3o com fontes de dados at\xE9 a reformula\xE7\xE3o, filtragem e combina\xE7\xE3o de dados para carregamento em um modelo de dados."
|
|
11346
|
+
}
|
|
11347
|
+
}
|
|
11348
|
+
};
|
|
11349
|
+
}
|
|
11350
|
+
});
|
|
11351
|
+
|
|
10950
11352
|
// src/languages/powershell.ts
|
|
10951
11353
|
var powershell_exports = {};
|
|
10952
11354
|
__export(powershell_exports, {
|
|
@@ -11006,6 +11408,64 @@ var init_powershell = __esm({
|
|
|
11006
11408
|
}
|
|
11007
11409
|
});
|
|
11008
11410
|
|
|
11411
|
+
// src/languages/processing.ts
|
|
11412
|
+
var processing_exports = {};
|
|
11413
|
+
__export(processing_exports, {
|
|
11414
|
+
processing: () => processing
|
|
11415
|
+
});
|
|
11416
|
+
var processing;
|
|
11417
|
+
var init_processing = __esm({
|
|
11418
|
+
"src/languages/processing.ts"() {
|
|
11419
|
+
processing = {
|
|
11420
|
+
slug: "processing",
|
|
11421
|
+
publishedDate: "2001-08-01",
|
|
11422
|
+
extensions: [".pde"],
|
|
11423
|
+
author: "Casey Reas, Ben Fry",
|
|
11424
|
+
website: "https://processing.org",
|
|
11425
|
+
paradigms: ["imperative", "object-oriented", "visual"],
|
|
11426
|
+
tooling: {
|
|
11427
|
+
runtimes: ["JVM", "Java"],
|
|
11428
|
+
ecosystems: ["Creative coding", "Java"]
|
|
11429
|
+
},
|
|
11430
|
+
version: "4.4.5",
|
|
11431
|
+
logo: "https://cdn.simpleicons.org/processingfoundation/006699",
|
|
11432
|
+
color: "#006699",
|
|
11433
|
+
i18n: {
|
|
11434
|
+
en: {
|
|
11435
|
+
name: "Processing",
|
|
11436
|
+
description: "A flexible software sketchbook and language for learning to code in the context of the visual arts.",
|
|
11437
|
+
longDescription: "Processing is an open-source graphical language and environment built for the electronic arts and visual design communities.\n\nIt combines a simplified Java-like syntax with a rich set of 2D and 3D drawing APIs, making it a popular choice for creative coding, generative art, data visualization, and interactive installations."
|
|
11438
|
+
},
|
|
11439
|
+
es: {
|
|
11440
|
+
name: "Processing",
|
|
11441
|
+
description: "Un cuaderno de c\xF3digo flexible y lenguaje para aprender a programar en el contexto de las artes visuales.",
|
|
11442
|
+
longDescription: "Processing es un lenguaje y entorno gr\xE1fico de c\xF3digo abierto construido para las comunidades de artes electr\xF3nicas y dise\xF1o visual.\n\nCombina una sintaxis simplificada similar a Java con un rico conjunto de APIs de dibujo 2D y 3D, convirti\xE9ndose en una opci\xF3n popular para la codificaci\xF3n creativa, el arte generativo, la visualizaci\xF3n de datos y las instalaciones interactivas."
|
|
11443
|
+
},
|
|
11444
|
+
it: {
|
|
11445
|
+
name: "Processing",
|
|
11446
|
+
description: "Un taccuino di codice flessibile e un linguaggio per imparare a programmare nel contesto delle arti visive.",
|
|
11447
|
+
longDescription: "Processing e un linguaggio e ambiente grafico open source costruito per le comunita delle arti elettroniche e del design visivo.\n\nCombina una sintassi semplificata simile a Java con un ricco insieme di API di disegno 2D e 3D, rendendolo una scelta popolare per il creative coding, l'arte generativa, la visualizzazione dei dati e le installazioni interattive."
|
|
11448
|
+
},
|
|
11449
|
+
fr: {
|
|
11450
|
+
name: "Processing",
|
|
11451
|
+
description: "Un carnet de code flexible et un langage pour apprendre \xE0 programmer dans le contexte des arts visuels.",
|
|
11452
|
+
longDescription: "Processing est un langage et un environnement graphique open source con\xE7u pour les communaut\xE9s des arts \xE9lectroniques et du design visuel.\n\nIl combine une syntaxe simplifi\xE9e de type Java avec un riche ensemble d'API de dessin 2D et 3D, ce qui en fait un choix populaire pour le codage cr\xE9atif, l'art g\xE9n\xE9ratif, la visualisation de donn\xE9es et les installations interactives."
|
|
11453
|
+
},
|
|
11454
|
+
de: {
|
|
11455
|
+
name: "Processing",
|
|
11456
|
+
description: "Ein flexibles Software-Skizzenbuch und eine Sprache zum Programmierenlernen im Kontext der visuellen K\xFCnste.",
|
|
11457
|
+
longDescription: "Processing ist eine Open-Source-Grafiksprache und -umgebung, die f\xFCr die Gemeinschaft der elektronischen K\xFCnste und des visuellen Designs entwickelt wurde.\n\nEs kombiniert eine vereinfachte Java-\xE4hnliche Syntax mit einem umfangreichen Satz von 2D- und 3D-Zeichen-APIs und ist eine beliebte Wahl f\xFCr kreatives Coding, generative Kunst, Datenvisualisierung und interaktive Installationen."
|
|
11458
|
+
},
|
|
11459
|
+
pt: {
|
|
11460
|
+
name: "Processing",
|
|
11461
|
+
description: "Um caderno de software flex\xEDvel e linguagem para aprender a programar no contexto das artes visuais.",
|
|
11462
|
+
longDescription: "Processing \xE9 uma linguagem e ambiente gr\xE1fico de c\xF3digo aberto criado para as comunidades de artes eletr\xF4nicas e design visual.\n\nCombina uma sintaxe simplificada semelhante ao Java com um rico conjunto de APIs de desenho 2D e 3D, tornando-se uma escolha popular para codifica\xE7\xE3o criativa, arte generativa, visualiza\xE7\xE3o de dados e instala\xE7\xF5es interativas."
|
|
11463
|
+
}
|
|
11464
|
+
}
|
|
11465
|
+
};
|
|
11466
|
+
}
|
|
11467
|
+
});
|
|
11468
|
+
|
|
11009
11469
|
// src/languages/prolog.ts
|
|
11010
11470
|
var prolog_exports = {};
|
|
11011
11471
|
__export(prolog_exports, {
|
|
@@ -12241,6 +12701,63 @@ var init_roc = __esm({
|
|
|
12241
12701
|
}
|
|
12242
12702
|
});
|
|
12243
12703
|
|
|
12704
|
+
// src/languages/rpg.ts
|
|
12705
|
+
var rpg_exports = {};
|
|
12706
|
+
__export(rpg_exports, {
|
|
12707
|
+
rpg: () => rpg
|
|
12708
|
+
});
|
|
12709
|
+
var rpg;
|
|
12710
|
+
var init_rpg = __esm({
|
|
12711
|
+
"src/languages/rpg.ts"() {
|
|
12712
|
+
rpg = {
|
|
12713
|
+
slug: "rpg",
|
|
12714
|
+
publishedDate: "1959-01-01",
|
|
12715
|
+
extensions: [".rpg", ".rpgle", ".sqlrpgle", ".clle", ".dspf"],
|
|
12716
|
+
author: "IBM",
|
|
12717
|
+
website: "https://www.ibm.com/docs/en/i/7.5?topic=programming-rpg",
|
|
12718
|
+
paradigms: ["procedural", "object-oriented"],
|
|
12719
|
+
tooling: {
|
|
12720
|
+
ecosystems: ["IBM i", "AS/400", "iSeries"]
|
|
12721
|
+
},
|
|
12722
|
+
version: "RPG IV Free-Form (IBM i 7.5)",
|
|
12723
|
+
logo: "https://avatars.githubusercontent.com/u/733939?v=4",
|
|
12724
|
+
color: "#052FAD",
|
|
12725
|
+
i18n: {
|
|
12726
|
+
en: {
|
|
12727
|
+
name: "RPG",
|
|
12728
|
+
description: "A high-level programming language for business applications on IBM i (formerly AS/400).",
|
|
12729
|
+
longDescription: "Report Program Generator (RPG) is a high-level programming language created by IBM for business data processing on IBM midrange systems.\n\nRPG IV (RPGLE), the modern free-format iteration, supports object-oriented features, embedded SQL, and service programs. It remains the dominant language for ERP systems, banking, and government workloads running on IBM i (iSeries, AS/400)."
|
|
12730
|
+
},
|
|
12731
|
+
es: {
|
|
12732
|
+
name: "RPG",
|
|
12733
|
+
description: "Un lenguaje de programaci\xF3n de alto nivel para aplicaciones empresariales en IBM i (anteriormente AS/400).",
|
|
12734
|
+
longDescription: "Report Program Generator (RPG) es un lenguaje de programaci\xF3n de alto nivel creado por IBM para el procesamiento de datos empresariales en sistemas midrange de IBM.\n\nRPG IV (RPGLE), la iteraci\xF3n moderna en formato libre, soporta caracter\xEDsticas orientadas a objetos, SQL embebido y programas de servicio. Sigue siendo el lenguaje dominante para sistemas ERP, banca y cargas de trabajo gubernamentales que se ejecutan en IBM i (iSeries, AS/400)."
|
|
12735
|
+
},
|
|
12736
|
+
it: {
|
|
12737
|
+
name: "RPG",
|
|
12738
|
+
description: "Un linguaggio di programmazione ad alto livello per applicazioni aziendali su IBM i (ex AS/400).",
|
|
12739
|
+
longDescription: "Report Program Generator (RPG) e un linguaggio di programmazione ad alto livello creato da IBM per l'elaborazione dei dati aziendali sui sistemi midrange IBM.\n\nRPG IV (RPGLE), la moderna iterazione in formato libero, supporta funzionalita orientate agli oggetti, SQL incorporato e programmi di servizio. Rimane il linguaggio dominante per i sistemi ERP, il settore bancario e i carichi di lavoro governativi in esecuzione su IBM i (iSeries, AS/400)."
|
|
12740
|
+
},
|
|
12741
|
+
fr: {
|
|
12742
|
+
name: "RPG",
|
|
12743
|
+
description: "Un langage de programmation de haut niveau pour les applications d'entreprise sur IBM i (anciennement AS/400).",
|
|
12744
|
+
longDescription: "Report Program Generator (RPG) est un langage de programmation de haut niveau cr\xE9\xE9 par IBM pour le traitement de donn\xE9es d'entreprise sur les syst\xE8mes midrange IBM.\n\nRPG IV (RPGLE), l'it\xE9ration moderne au format libre, prend en charge les fonctionnalit\xE9s orient\xE9es objet, SQL int\xE9gr\xE9 et les programmes de service. Il reste le langage dominant pour les syst\xE8mes ERP, les activit\xE9s bancaires et les charges de travail gouvernementales ex\xE9cut\xE9es sur IBM i (iSeries, AS/400)."
|
|
12745
|
+
},
|
|
12746
|
+
de: {
|
|
12747
|
+
name: "RPG",
|
|
12748
|
+
description: "Eine High-Level-Programmiersprache f\xFCr Business-Anwendungen auf IBM i (fr\xFCher AS/400).",
|
|
12749
|
+
longDescription: "Report Program Generator (RPG) ist eine von IBM entwickelte Hochsprache f\xFCr die Verarbeitung von Gesch\xE4ftsdaten auf IBM-Midrange-Systemen.\n\nRPG IV (RPGLE), die moderne Freiformat-Iteration, unterst\xFCtzt objektorientierte Funktionen, eingebettetes SQL und Service-Programme. Es bleibt die dominierende Sprache f\xFCr ERP-Systeme, Bankwesen und beh\xF6rdliche Workloads auf IBM i (iSeries, AS/400)."
|
|
12750
|
+
},
|
|
12751
|
+
pt: {
|
|
12752
|
+
name: "RPG",
|
|
12753
|
+
description: "Uma linguagem de programa\xE7\xE3o de alto n\xEDvel para aplica\xE7\xF5es empresariais no IBM i (anteriormente AS/400).",
|
|
12754
|
+
longDescription: "Report Program Generator (RPG) \xE9 uma linguagem de programa\xE7\xE3o de alto n\xEDvel criada pela IBM para processamento de dados empresariais em sistemas midrange IBM.\n\nRPG IV (RPGLE), a itera\xE7\xE3o moderna em formato livre, suporta recursos orientados a objetos, SQL incorporado e programas de servi\xE7o. Permanece a linguagem dominante para sistemas ERP, setor banc\xE1rio e cargas de trabalho governamentais em execu\xE7\xE3o no IBM i (iSeries, AS/400)."
|
|
12755
|
+
}
|
|
12756
|
+
}
|
|
12757
|
+
};
|
|
12758
|
+
}
|
|
12759
|
+
});
|
|
12760
|
+
|
|
12244
12761
|
// src/languages/ruby.ts
|
|
12245
12762
|
var ruby_exports = {};
|
|
12246
12763
|
__export(ruby_exports, {
|
|
@@ -14808,6 +15325,63 @@ var init_vala = __esm({
|
|
|
14808
15325
|
}
|
|
14809
15326
|
});
|
|
14810
15327
|
|
|
15328
|
+
// src/languages/vba.ts
|
|
15329
|
+
var vba_exports = {};
|
|
15330
|
+
__export(vba_exports, {
|
|
15331
|
+
vba: () => vba
|
|
15332
|
+
});
|
|
15333
|
+
var vba;
|
|
15334
|
+
var init_vba = __esm({
|
|
15335
|
+
"src/languages/vba.ts"() {
|
|
15336
|
+
vba = {
|
|
15337
|
+
slug: "vba",
|
|
15338
|
+
publishedDate: "1993-04-01",
|
|
15339
|
+
extensions: [".bas", ".cls", ".frm", ".vba"],
|
|
15340
|
+
author: "Microsoft",
|
|
15341
|
+
website: "https://learn.microsoft.com/en-us/office/vba/api/overview/",
|
|
15342
|
+
paradigms: ["imperative", "object-oriented", "event-driven"],
|
|
15343
|
+
tooling: {
|
|
15344
|
+
ecosystems: ["Microsoft Office", "Excel", "Access", "Word", "Outlook"]
|
|
15345
|
+
},
|
|
15346
|
+
version: "VBA 7.1",
|
|
15347
|
+
logo: "https://dummyimage.com/32x32/217346/ffffff.png&text=VBA",
|
|
15348
|
+
color: "#217346",
|
|
15349
|
+
i18n: {
|
|
15350
|
+
en: {
|
|
15351
|
+
name: "VBA",
|
|
15352
|
+
description: "A macro language embedded in Microsoft Office applications.",
|
|
15353
|
+
longDescription: "Visual Basic for Applications (VBA) is an event-driven programming language built into most Microsoft Office applications.\n\nIt enables automation of repetitive tasks, creation of custom functions, interaction with Windows APIs, and integration between Office applications such as Excel, Word, Access, and Outlook."
|
|
15354
|
+
},
|
|
15355
|
+
es: {
|
|
15356
|
+
name: "VBA",
|
|
15357
|
+
description: "Un lenguaje de macros integrado en las aplicaciones de Microsoft Office.",
|
|
15358
|
+
longDescription: "Visual Basic for Applications (VBA) es un lenguaje de programacion orientado a eventos integrado en la mayoria de las aplicaciones de Microsoft Office.\n\nPermite automatizar tareas repetitivas, crear funciones personalizadas, interactuar con las APIs de Windows e integrar aplicaciones de Office como Excel, Word, Access y Outlook."
|
|
15359
|
+
},
|
|
15360
|
+
it: {
|
|
15361
|
+
name: "VBA",
|
|
15362
|
+
description: "Un linguaggio macro integrato nelle applicazioni Microsoft Office.",
|
|
15363
|
+
longDescription: "Visual Basic for Applications (VBA) e un linguaggio di programmazione orientato agli eventi integrato nella maggior parte delle applicazioni Microsoft Office.\n\nConsente di automatizzare le attivita ripetitive, creare funzioni personalizzate, interagire con le API di Windows e integrare applicazioni Office come Excel, Word, Access e Outlook."
|
|
15364
|
+
},
|
|
15365
|
+
fr: {
|
|
15366
|
+
name: "VBA",
|
|
15367
|
+
description: "Un langage de macros int\xE9gr\xE9 aux applications Microsoft Office.",
|
|
15368
|
+
longDescription: "Visual Basic for Applications (VBA) est un langage de programmation orient\xE9 \xE9v\xE9nements int\xE9gr\xE9 dans la plupart des applications Microsoft Office.\n\nIl permet d'automatiser les t\xE2ches r\xE9p\xE9titives, de cr\xE9er des fonctions personnalis\xE9es, d'interagir avec les API Windows et d'int\xE9grer des applications Office comme Excel, Word, Access et Outlook."
|
|
15369
|
+
},
|
|
15370
|
+
de: {
|
|
15371
|
+
name: "VBA",
|
|
15372
|
+
description: "Eine in Microsoft Office-Anwendungen eingebettete Makrosprache.",
|
|
15373
|
+
longDescription: "Visual Basic for Applications (VBA) ist eine ereignisgesteuerte Programmiersprache, die in die meisten Microsoft Office-Anwendungen integriert ist.\n\nSie erm\xF6glicht die Automatisierung von Routineaufgaben, die Erstellung benutzerdefinierter Funktionen, die Interaktion mit Windows-APIs und die Integration von Office-Anwendungen wie Excel, Word, Access und Outlook."
|
|
15374
|
+
},
|
|
15375
|
+
pt: {
|
|
15376
|
+
name: "VBA",
|
|
15377
|
+
description: "Uma linguagem de macros incorporada nos aplicativos do Microsoft Office.",
|
|
15378
|
+
longDescription: "Visual Basic for Applications (VBA) \xE9 uma linguagem de programa\xE7\xE3o orientada a eventos integrada \xE0 maioria dos aplicativos Microsoft Office.\n\nPermite automatizar tarefas repetitivas, criar fun\xE7\xF5es personalizadas, interagir com APIs do Windows e integrar aplicativos Office como Excel, Word, Access e Outlook."
|
|
15379
|
+
}
|
|
15380
|
+
}
|
|
15381
|
+
};
|
|
15382
|
+
}
|
|
15383
|
+
});
|
|
15384
|
+
|
|
14811
15385
|
// src/languages/vale.ts
|
|
14812
15386
|
var vale_exports = {};
|
|
14813
15387
|
__export(vale_exports, {
|
|
@@ -15623,6 +16197,63 @@ var init_xml = __esm({
|
|
|
15623
16197
|
}
|
|
15624
16198
|
});
|
|
15625
16199
|
|
|
16200
|
+
// src/languages/xpath.ts
|
|
16201
|
+
var xpath_exports = {};
|
|
16202
|
+
__export(xpath_exports, {
|
|
16203
|
+
xpath: () => xpath
|
|
16204
|
+
});
|
|
16205
|
+
var xpath;
|
|
16206
|
+
var init_xpath = __esm({
|
|
16207
|
+
"src/languages/xpath.ts"() {
|
|
16208
|
+
xpath = {
|
|
16209
|
+
slug: "xpath",
|
|
16210
|
+
publishedDate: "1999-11-16",
|
|
16211
|
+
extensions: [".xpath", ".xpth"],
|
|
16212
|
+
author: "W3C",
|
|
16213
|
+
website: "https://www.w3.org/TR/xpath-31/",
|
|
16214
|
+
paradigms: ["declarative", "functional"],
|
|
16215
|
+
tooling: {
|
|
16216
|
+
ecosystems: ["XML", "HTML", "XSLT", "XQuery"]
|
|
16217
|
+
},
|
|
16218
|
+
version: "XPath 3.1",
|
|
16219
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/6/68/XML.svg",
|
|
16220
|
+
color: "#0076A8",
|
|
16221
|
+
i18n: {
|
|
16222
|
+
en: {
|
|
16223
|
+
name: "XPath",
|
|
16224
|
+
description: "A query language for selecting nodes from XML and HTML documents.",
|
|
16225
|
+
longDescription: "XPath (XML Path Language) is a query language for selecting nodes from XML and HTML documents and computing values from their content.\n\nIt uses a path syntax to navigate the document tree and is embedded in XSLT, XQuery, XSD, and many XML-aware APIs. XPath 3.1 adds functional programming features including higher-order functions and maps."
|
|
16226
|
+
},
|
|
16227
|
+
es: {
|
|
16228
|
+
name: "XPath",
|
|
16229
|
+
description: "Un lenguaje de consulta para seleccionar nodos de documentos XML y HTML.",
|
|
16230
|
+
longDescription: "XPath (XML Path Language) es un lenguaje de consulta para seleccionar nodos de documentos XML y HTML y calcular valores a partir de su contenido.\n\nUtiliza una sintaxis de ruta para navegar por el \xE1rbol del documento y est\xE1 integrado en XSLT, XQuery, XSD y muchas APIs compatibles con XML. XPath 3.1 a\xF1ade caracter\xEDsticas de programaci\xF3n funcional incluyendo funciones de orden superior y mapas."
|
|
16231
|
+
},
|
|
16232
|
+
it: {
|
|
16233
|
+
name: "XPath",
|
|
16234
|
+
description: "Un linguaggio di query per selezionare nodi da documenti XML e HTML.",
|
|
16235
|
+
longDescription: "XPath (XML Path Language) e un linguaggio di query per selezionare nodi da documenti XML e HTML e calcolare valori dal loro contenuto.\n\nUtilizza una sintassi di percorso per navigare nell'albero del documento ed e incorporato in XSLT, XQuery, XSD e molte API compatibili con XML. XPath 3.1 aggiunge funzionalita di programmazione funzionale tra cui funzioni di ordine superiore e mappe."
|
|
16236
|
+
},
|
|
16237
|
+
fr: {
|
|
16238
|
+
name: "XPath",
|
|
16239
|
+
description: "Un langage de requ\xEAte pour s\xE9lectionner des n\u0153uds dans des documents XML et HTML.",
|
|
16240
|
+
longDescription: "XPath (XML Path Language) est un langage de requ\xEAte pour s\xE9lectionner des n\u0153uds dans des documents XML et HTML et calculer des valeurs \xE0 partir de leur contenu.\n\nIl utilise une syntaxe de chemin pour naviguer dans l'arborescence du document et est int\xE9gr\xE9 dans XSLT, XQuery, XSD et de nombreuses API compatibles XML. XPath 3.1 ajoute des fonctionnalit\xE9s de programmation fonctionnelle, notamment des fonctions d'ordre sup\xE9rieur et des cartes."
|
|
16241
|
+
},
|
|
16242
|
+
de: {
|
|
16243
|
+
name: "XPath",
|
|
16244
|
+
description: "Eine Abfragesprache zum Ausw\xE4hlen von Knoten aus XML- und HTML-Dokumenten.",
|
|
16245
|
+
longDescription: "XPath (XML Path Language) ist eine Abfragesprache zum Ausw\xE4hlen von Knoten aus XML- und HTML-Dokumenten und zum Berechnen von Werten aus deren Inhalt.\n\nSie verwendet eine Pfadsyntax zur Navigation im Dokumentenbaum und ist in XSLT, XQuery, XSD und viele XML-f\xE4hige APIs eingebettet. XPath 3.1 f\xFCgt funktionale Programmierfunktionen hinzu, einschlie\xDFlich Funktionen h\xF6herer Ordnung und Maps."
|
|
16246
|
+
},
|
|
16247
|
+
pt: {
|
|
16248
|
+
name: "XPath",
|
|
16249
|
+
description: "Uma linguagem de consulta para selecionar n\xF3s de documentos XML e HTML.",
|
|
16250
|
+
longDescription: "XPath (XML Path Language) \xE9 uma linguagem de consulta para selecionar n\xF3s de documentos XML e HTML e calcular valores a partir de seu conte\xFAdo.\n\nUsa uma sintaxe de caminho para navegar na \xE1rvore de documentos e est\xE1 incorporado em XSLT, XQuery, XSD e muitas APIs compat\xEDveis com XML. O XPath 3.1 adiciona recursos de programa\xE7\xE3o funcional, incluindo fun\xE7\xF5es de ordem superior e mapas."
|
|
16251
|
+
}
|
|
16252
|
+
}
|
|
16253
|
+
};
|
|
16254
|
+
}
|
|
16255
|
+
});
|
|
16256
|
+
|
|
15626
16257
|
// src/languages/xquery.ts
|
|
15627
16258
|
var xquery_exports = {};
|
|
15628
16259
|
__export(xquery_exports, {
|
|
@@ -16107,6 +16738,7 @@ var languageIndex = [
|
|
|
16107
16738
|
{ slug: "asciidoc", extensions: [".adoc", ".asciidoc", ".asc"] },
|
|
16108
16739
|
{ slug: "asp", extensions: [".asp", ".aspx", ".ascx", ".ashx", ".asmx", ".master"] },
|
|
16109
16740
|
{ slug: "assembly", extensions: [".asm", ".s", ".S", ".inc"] },
|
|
16741
|
+
{ slug: "assemblyscript", extensions: [".as"] },
|
|
16110
16742
|
{ slug: "angelscript", extensions: [".as", ".angelscript"] },
|
|
16111
16743
|
{ slug: "astro", extensions: [".astro"] },
|
|
16112
16744
|
{ slug: "austral", extensions: [".aum", ".aui"] },
|
|
@@ -16114,6 +16746,7 @@ var languageIndex = [
|
|
|
16114
16746
|
{ slug: "avro-idl", extensions: [".avdl"] },
|
|
16115
16747
|
{ slug: "awk", extensions: [".awk"] },
|
|
16116
16748
|
{ slug: "ballerina", extensions: [".bal"] },
|
|
16749
|
+
{ slug: "basic", extensions: [".bas", ".bi", ".bb"] },
|
|
16117
16750
|
{
|
|
16118
16751
|
slug: "bash",
|
|
16119
16752
|
extensions: [".sh", ".bash", ".bashrc", ".bash_profile", ".bash_login", ".profile"]
|
|
@@ -16153,6 +16786,7 @@ var languageIndex = [
|
|
|
16153
16786
|
{ slug: "d", extensions: [".d", ".di"] },
|
|
16154
16787
|
{ slug: "dafny", extensions: [".dfy"] },
|
|
16155
16788
|
{ slug: "dart", extensions: [".dart"] },
|
|
16789
|
+
{ slug: "dax", extensions: [".dax"] },
|
|
16156
16790
|
{ slug: "dhall", extensions: [".dhall"] },
|
|
16157
16791
|
{ slug: "dita", extensions: [".dita", ".ditamap", ".ditaval"] },
|
|
16158
16792
|
{ slug: "dockerfile", extensions: ["Dockerfile", ".dockerfile"] },
|
|
@@ -16262,6 +16896,7 @@ var languageIndex = [
|
|
|
16262
16896
|
{ slug: "modula-2", extensions: [".mod", ".def"] },
|
|
16263
16897
|
{ slug: "moonbit", extensions: [".mbt"] },
|
|
16264
16898
|
{ slug: "move", extensions: [".move"] },
|
|
16899
|
+
{ slug: "mumps", extensions: [".mac", ".int", ".ro", ".mro"] },
|
|
16265
16900
|
{ slug: "mustache", extensions: [".mustache", ".mst"] },
|
|
16266
16901
|
{ slug: "n1ql", extensions: [".n1ql"] },
|
|
16267
16902
|
{ slug: "nextflow", extensions: [".nf"] },
|
|
@@ -16278,6 +16913,7 @@ var languageIndex = [
|
|
|
16278
16913
|
{ slug: "odin", extensions: [".odin"] },
|
|
16279
16914
|
{ slug: "openapi", extensions: [".openapi.json", ".openapi.yaml", ".openapi.yml"] },
|
|
16280
16915
|
{ slug: "opencl", extensions: [".cl", ".clh"] },
|
|
16916
|
+
{ slug: "openscad", extensions: [".scad"] },
|
|
16281
16917
|
{ slug: "org", extensions: [".org"] },
|
|
16282
16918
|
{ slug: "pascal", extensions: [".pas", ".pp", ".inc", ".lpr", ".dpr", ".dfm"] },
|
|
16283
16919
|
{ slug: "perl", extensions: [".pl", ".pm", ".pod", ".t", ".psgi"] },
|
|
@@ -16290,7 +16926,10 @@ var languageIndex = [
|
|
|
16290
16926
|
{ slug: "plsql", extensions: [".pls", ".pks", ".pkb", ".plsql"] },
|
|
16291
16927
|
{ slug: "pod", extensions: [".pod"] },
|
|
16292
16928
|
{ slug: "pony", extensions: [".pony"] },
|
|
16929
|
+
{ slug: "postscript", extensions: [".ps", ".eps"] },
|
|
16930
|
+
{ slug: "powerquery", extensions: [".pq", ".pqm"] },
|
|
16293
16931
|
{ slug: "powershell", extensions: [".ps1", ".psm1", ".psd1", ".ps1xml"] },
|
|
16932
|
+
{ slug: "processing", extensions: [".pde"] },
|
|
16294
16933
|
{ slug: "prolog", extensions: [".pl", ".pro", ".prolog", ".P"] },
|
|
16295
16934
|
{ slug: "promql", extensions: [".promql"] },
|
|
16296
16935
|
{ slug: "protobuf", extensions: [".proto"] },
|
|
@@ -16312,6 +16951,7 @@ var languageIndex = [
|
|
|
16312
16951
|
{ slug: "rescript", extensions: [".res", ".resi"] },
|
|
16313
16952
|
{ slug: "restructuredtext", extensions: [".rst", ".rest"] },
|
|
16314
16953
|
{ slug: "roc", extensions: [".roc"] },
|
|
16954
|
+
{ slug: "rpg", extensions: [".rpg", ".rpgle", ".sqlrpgle", ".clle", ".dspf"] },
|
|
16315
16955
|
{
|
|
16316
16956
|
slug: "ruby",
|
|
16317
16957
|
extensions: [".rb", ".rbw", ".rake", ".gemspec", "Gemfile", "Rakefile", "config.ru"]
|
|
@@ -16359,6 +16999,7 @@ var languageIndex = [
|
|
|
16359
16999
|
{ slug: "unison", extensions: [".u", ".uu"] },
|
|
16360
17000
|
{ slug: "v", extensions: [".v", ".vsh"] },
|
|
16361
17001
|
{ slug: "vala", extensions: [".vala", ".vapi"] },
|
|
17002
|
+
{ slug: "vba", extensions: [".bas", ".cls", ".frm", ".vba"] },
|
|
16362
17003
|
{ slug: "vale", extensions: [".vale"] },
|
|
16363
17004
|
{ slug: "velocity", extensions: [".vm", ".vtl"] },
|
|
16364
17005
|
{ slug: "verilog", extensions: [".v", ".vh", ".sv", ".svh"] },
|
|
@@ -16373,6 +17014,7 @@ var languageIndex = [
|
|
|
16373
17014
|
{ slug: "wren", extensions: [".wren"] },
|
|
16374
17015
|
{ slug: "xaml", extensions: [".xaml", ".baml"] },
|
|
16375
17016
|
{ slug: "xml", extensions: [".xml", ".xsd", ".xsl", ".xslt"] },
|
|
17017
|
+
{ slug: "xpath", extensions: [".xpath", ".xpth"] },
|
|
16376
17018
|
{ slug: "xquery", extensions: [".xq", ".xql", ".xqm", ".xquery", ".xqy"] },
|
|
16377
17019
|
{ slug: "xslt", extensions: [".xsl", ".xslt"] },
|
|
16378
17020
|
{ slug: "yaml", extensions: [".yaml", ".yml"] },
|
|
@@ -16402,6 +17044,7 @@ var languageLoaders = {
|
|
|
16402
17044
|
asciidoc: async () => (await Promise.resolve().then(() => (init_asciidoc(), asciidoc_exports))).asciidoc,
|
|
16403
17045
|
asp: async () => (await Promise.resolve().then(() => (init_asp(), asp_exports))).asp,
|
|
16404
17046
|
assembly: async () => (await Promise.resolve().then(() => (init_assembly(), assembly_exports))).assembly,
|
|
17047
|
+
assemblyscript: async () => (await Promise.resolve().then(() => (init_assemblyscript(), assemblyscript_exports))).assemblyscript,
|
|
16405
17048
|
angelscript: async () => (await Promise.resolve().then(() => (init_angelscript(), angelscript_exports))).angelscript,
|
|
16406
17049
|
astro: async () => (await Promise.resolve().then(() => (init_astro(), astro_exports))).astro,
|
|
16407
17050
|
austral: async () => (await Promise.resolve().then(() => (init_austral(), austral_exports))).austral,
|
|
@@ -16409,6 +17052,7 @@ var languageLoaders = {
|
|
|
16409
17052
|
"avro-idl": async () => (await Promise.resolve().then(() => (init_avro_idl(), avro_idl_exports))).avroIdl,
|
|
16410
17053
|
awk: async () => (await Promise.resolve().then(() => (init_awk(), awk_exports))).awk,
|
|
16411
17054
|
ballerina: async () => (await Promise.resolve().then(() => (init_ballerina(), ballerina_exports))).ballerina,
|
|
17055
|
+
basic: async () => (await Promise.resolve().then(() => (init_basic(), basic_exports))).basic,
|
|
16412
17056
|
bash: async () => (await Promise.resolve().then(() => (init_bash(), bash_exports))).bash,
|
|
16413
17057
|
batch: async () => (await Promise.resolve().then(() => (init_batch(), batch_exports))).batch,
|
|
16414
17058
|
bazel: async () => (await Promise.resolve().then(() => (init_bazel(), bazel_exports))).bazel,
|
|
@@ -16445,6 +17089,7 @@ var languageLoaders = {
|
|
|
16445
17089
|
d: async () => (await Promise.resolve().then(() => (init_d(), d_exports))).d,
|
|
16446
17090
|
dafny: async () => (await Promise.resolve().then(() => (init_dafny(), dafny_exports))).dafny,
|
|
16447
17091
|
dart: async () => (await Promise.resolve().then(() => (init_dart(), dart_exports))).dart,
|
|
17092
|
+
dax: async () => (await Promise.resolve().then(() => (init_dax(), dax_exports))).dax,
|
|
16448
17093
|
dhall: async () => (await Promise.resolve().then(() => (init_dhall(), dhall_exports))).dhall,
|
|
16449
17094
|
dita: async () => (await Promise.resolve().then(() => (init_dita(), dita_exports))).dita,
|
|
16450
17095
|
dockerfile: async () => (await Promise.resolve().then(() => (init_dockerfile(), dockerfile_exports))).dockerfile,
|
|
@@ -16545,6 +17190,7 @@ var languageLoaders = {
|
|
|
16545
17190
|
"modula-2": async () => (await Promise.resolve().then(() => (init_modula_2(), modula_2_exports))).modula2,
|
|
16546
17191
|
moonbit: async () => (await Promise.resolve().then(() => (init_moonbit(), moonbit_exports))).moonbit,
|
|
16547
17192
|
move: async () => (await Promise.resolve().then(() => (init_move(), move_exports))).move,
|
|
17193
|
+
mumps: async () => (await Promise.resolve().then(() => (init_mumps(), mumps_exports))).mumps,
|
|
16548
17194
|
mustache: async () => (await Promise.resolve().then(() => (init_mustache(), mustache_exports))).mustache,
|
|
16549
17195
|
n1ql: async () => (await Promise.resolve().then(() => (init_n1ql(), n1ql_exports))).n1ql,
|
|
16550
17196
|
nextflow: async () => (await Promise.resolve().then(() => (init_nextflow(), nextflow_exports))).nextflow,
|
|
@@ -16561,6 +17207,7 @@ var languageLoaders = {
|
|
|
16561
17207
|
odin: async () => (await Promise.resolve().then(() => (init_odin(), odin_exports))).odin,
|
|
16562
17208
|
openapi: async () => (await Promise.resolve().then(() => (init_openapi(), openapi_exports))).openapi,
|
|
16563
17209
|
opencl: async () => (await Promise.resolve().then(() => (init_opencl(), opencl_exports))).opencl,
|
|
17210
|
+
openscad: async () => (await Promise.resolve().then(() => (init_openscad(), openscad_exports))).openscad,
|
|
16564
17211
|
org: async () => (await Promise.resolve().then(() => (init_org(), org_exports))).org,
|
|
16565
17212
|
pascal: async () => (await Promise.resolve().then(() => (init_pascal(), pascal_exports))).pascal,
|
|
16566
17213
|
perl: async () => (await Promise.resolve().then(() => (init_perl(), perl_exports))).perl,
|
|
@@ -16573,7 +17220,10 @@ var languageLoaders = {
|
|
|
16573
17220
|
plsql: async () => (await Promise.resolve().then(() => (init_plsql(), plsql_exports))).plsql,
|
|
16574
17221
|
pod: async () => (await Promise.resolve().then(() => (init_pod(), pod_exports))).pod,
|
|
16575
17222
|
pony: async () => (await Promise.resolve().then(() => (init_pony(), pony_exports))).pony,
|
|
17223
|
+
postscript: async () => (await Promise.resolve().then(() => (init_postscript(), postscript_exports))).postscript,
|
|
17224
|
+
powerquery: async () => (await Promise.resolve().then(() => (init_powerquery(), powerquery_exports))).powerquery,
|
|
16576
17225
|
powershell: async () => (await Promise.resolve().then(() => (init_powershell(), powershell_exports))).powershell,
|
|
17226
|
+
processing: async () => (await Promise.resolve().then(() => (init_processing(), processing_exports))).processing,
|
|
16577
17227
|
prolog: async () => (await Promise.resolve().then(() => (init_prolog(), prolog_exports))).prolog,
|
|
16578
17228
|
promql: async () => (await Promise.resolve().then(() => (init_promql(), promql_exports))).promql,
|
|
16579
17229
|
protobuf: async () => (await Promise.resolve().then(() => (init_protobuf(), protobuf_exports))).protobuf,
|
|
@@ -16595,6 +17245,7 @@ var languageLoaders = {
|
|
|
16595
17245
|
rescript: async () => (await Promise.resolve().then(() => (init_rescript(), rescript_exports))).rescript,
|
|
16596
17246
|
restructuredtext: async () => (await Promise.resolve().then(() => (init_restructuredtext(), restructuredtext_exports))).restructuredtext,
|
|
16597
17247
|
roc: async () => (await Promise.resolve().then(() => (init_roc(), roc_exports))).roc,
|
|
17248
|
+
rpg: async () => (await Promise.resolve().then(() => (init_rpg(), rpg_exports))).rpg,
|
|
16598
17249
|
ruby: async () => (await Promise.resolve().then(() => (init_ruby(), ruby_exports))).ruby,
|
|
16599
17250
|
rust: async () => (await Promise.resolve().then(() => (init_rust(), rust_exports))).rust,
|
|
16600
17251
|
sas: async () => (await Promise.resolve().then(() => (init_sas(), sas_exports))).sas,
|
|
@@ -16639,6 +17290,7 @@ var languageLoaders = {
|
|
|
16639
17290
|
unison: async () => (await Promise.resolve().then(() => (init_unison(), unison_exports))).unison,
|
|
16640
17291
|
v: async () => (await Promise.resolve().then(() => (init_v(), v_exports))).v,
|
|
16641
17292
|
vala: async () => (await Promise.resolve().then(() => (init_vala(), vala_exports))).vala,
|
|
17293
|
+
vba: async () => (await Promise.resolve().then(() => (init_vba(), vba_exports))).vba,
|
|
16642
17294
|
vale: async () => (await Promise.resolve().then(() => (init_vale(), vale_exports))).vale,
|
|
16643
17295
|
velocity: async () => (await Promise.resolve().then(() => (init_velocity(), velocity_exports))).velocity,
|
|
16644
17296
|
verilog: async () => (await Promise.resolve().then(() => (init_verilog(), verilog_exports))).verilog,
|
|
@@ -16653,6 +17305,7 @@ var languageLoaders = {
|
|
|
16653
17305
|
wren: async () => (await Promise.resolve().then(() => (init_wren(), wren_exports))).wren,
|
|
16654
17306
|
xaml: async () => (await Promise.resolve().then(() => (init_xaml(), xaml_exports))).xaml,
|
|
16655
17307
|
xml: async () => (await Promise.resolve().then(() => (init_xml(), xml_exports))).xml,
|
|
17308
|
+
xpath: async () => (await Promise.resolve().then(() => (init_xpath(), xpath_exports))).xpath,
|
|
16656
17309
|
xquery: async () => (await Promise.resolve().then(() => (init_xquery(), xquery_exports))).xquery,
|
|
16657
17310
|
xslt: async () => (await Promise.resolve().then(() => (init_xslt(), xslt_exports))).xslt,
|
|
16658
17311
|
yaml: async () => (await Promise.resolve().then(() => (init_yaml(), yaml_exports))).yaml,
|
|
@@ -16736,6 +17389,7 @@ init_arduino();
|
|
|
16736
17389
|
init_asciidoc();
|
|
16737
17390
|
init_asp();
|
|
16738
17391
|
init_assembly();
|
|
17392
|
+
init_assemblyscript();
|
|
16739
17393
|
init_astro();
|
|
16740
17394
|
init_austral();
|
|
16741
17395
|
init_autohotkey();
|
|
@@ -16743,6 +17397,7 @@ init_avro_idl();
|
|
|
16743
17397
|
init_awk();
|
|
16744
17398
|
init_ballerina();
|
|
16745
17399
|
init_bash();
|
|
17400
|
+
init_basic();
|
|
16746
17401
|
init_batch();
|
|
16747
17402
|
init_bazel();
|
|
16748
17403
|
init_bcpl();
|
|
@@ -16778,6 +17433,7 @@ init_cython();
|
|
|
16778
17433
|
init_d();
|
|
16779
17434
|
init_dafny();
|
|
16780
17435
|
init_dart();
|
|
17436
|
+
init_dax();
|
|
16781
17437
|
init_dhall();
|
|
16782
17438
|
init_dita();
|
|
16783
17439
|
init_dockerfile();
|
|
@@ -16878,6 +17534,7 @@ init_modula_2();
|
|
|
16878
17534
|
init_mojo();
|
|
16879
17535
|
init_moonbit();
|
|
16880
17536
|
init_move();
|
|
17537
|
+
init_mumps();
|
|
16881
17538
|
init_mustache();
|
|
16882
17539
|
init_n1ql();
|
|
16883
17540
|
init_nextflow();
|
|
@@ -16894,6 +17551,7 @@ init_octave();
|
|
|
16894
17551
|
init_odin();
|
|
16895
17552
|
init_openapi();
|
|
16896
17553
|
init_opencl();
|
|
17554
|
+
init_openscad();
|
|
16897
17555
|
init_org();
|
|
16898
17556
|
init_pascal();
|
|
16899
17557
|
init_perl();
|
|
@@ -16906,7 +17564,10 @@ init_plpgsql();
|
|
|
16906
17564
|
init_plsql();
|
|
16907
17565
|
init_pod();
|
|
16908
17566
|
init_pony();
|
|
17567
|
+
init_postscript();
|
|
17568
|
+
init_powerquery();
|
|
16909
17569
|
init_powershell();
|
|
17570
|
+
init_processing();
|
|
16910
17571
|
init_prolog();
|
|
16911
17572
|
init_promql();
|
|
16912
17573
|
init_protobuf();
|
|
@@ -16928,6 +17589,7 @@ init_rego();
|
|
|
16928
17589
|
init_rescript();
|
|
16929
17590
|
init_restructuredtext();
|
|
16930
17591
|
init_roc();
|
|
17592
|
+
init_rpg();
|
|
16931
17593
|
init_ruby();
|
|
16932
17594
|
init_rust();
|
|
16933
17595
|
init_sas();
|
|
@@ -16973,6 +17635,7 @@ init_unison();
|
|
|
16973
17635
|
init_v();
|
|
16974
17636
|
init_vala();
|
|
16975
17637
|
init_vale();
|
|
17638
|
+
init_vba();
|
|
16976
17639
|
init_velocity();
|
|
16977
17640
|
init_verilog();
|
|
16978
17641
|
init_verse();
|
|
@@ -16986,6 +17649,7 @@ init_wgsl();
|
|
|
16986
17649
|
init_wren();
|
|
16987
17650
|
init_xaml();
|
|
16988
17651
|
init_xml();
|
|
17652
|
+
init_xpath();
|
|
16989
17653
|
init_xquery();
|
|
16990
17654
|
init_xslt();
|
|
16991
17655
|
init_yaml();
|
|
@@ -17011,6 +17675,7 @@ var languages = [
|
|
|
17011
17675
|
asciidoc,
|
|
17012
17676
|
asp,
|
|
17013
17677
|
assembly,
|
|
17678
|
+
assemblyscript,
|
|
17014
17679
|
angelscript,
|
|
17015
17680
|
astro,
|
|
17016
17681
|
austral,
|
|
@@ -17018,6 +17683,7 @@ var languages = [
|
|
|
17018
17683
|
avroIdl,
|
|
17019
17684
|
awk,
|
|
17020
17685
|
ballerina,
|
|
17686
|
+
basic,
|
|
17021
17687
|
bash,
|
|
17022
17688
|
batch,
|
|
17023
17689
|
bazel,
|
|
@@ -17054,6 +17720,7 @@ var languages = [
|
|
|
17054
17720
|
d,
|
|
17055
17721
|
dafny,
|
|
17056
17722
|
dart,
|
|
17723
|
+
dax,
|
|
17057
17724
|
dhall,
|
|
17058
17725
|
dita,
|
|
17059
17726
|
dockerfile,
|
|
@@ -17154,6 +17821,7 @@ var languages = [
|
|
|
17154
17821
|
modula2,
|
|
17155
17822
|
moonbit,
|
|
17156
17823
|
move,
|
|
17824
|
+
mumps,
|
|
17157
17825
|
mustache,
|
|
17158
17826
|
n1ql,
|
|
17159
17827
|
nextflow,
|
|
@@ -17170,6 +17838,7 @@ var languages = [
|
|
|
17170
17838
|
odin,
|
|
17171
17839
|
openapi,
|
|
17172
17840
|
opencl,
|
|
17841
|
+
openscad,
|
|
17173
17842
|
org,
|
|
17174
17843
|
pascal,
|
|
17175
17844
|
perl,
|
|
@@ -17182,7 +17851,10 @@ var languages = [
|
|
|
17182
17851
|
plsql,
|
|
17183
17852
|
pod,
|
|
17184
17853
|
pony,
|
|
17854
|
+
postscript,
|
|
17855
|
+
powerquery,
|
|
17185
17856
|
powershell,
|
|
17857
|
+
processing,
|
|
17186
17858
|
prolog,
|
|
17187
17859
|
promql,
|
|
17188
17860
|
protobuf,
|
|
@@ -17204,6 +17876,7 @@ var languages = [
|
|
|
17204
17876
|
rescript,
|
|
17205
17877
|
restructuredtext,
|
|
17206
17878
|
roc,
|
|
17879
|
+
rpg,
|
|
17207
17880
|
ruby,
|
|
17208
17881
|
rust,
|
|
17209
17882
|
sas,
|
|
@@ -17248,6 +17921,7 @@ var languages = [
|
|
|
17248
17921
|
unison,
|
|
17249
17922
|
v,
|
|
17250
17923
|
vala,
|
|
17924
|
+
vba,
|
|
17251
17925
|
vale,
|
|
17252
17926
|
velocity,
|
|
17253
17927
|
verilog,
|
|
@@ -17262,6 +17936,7 @@ var languages = [
|
|
|
17262
17936
|
wren,
|
|
17263
17937
|
xaml,
|
|
17264
17938
|
xml,
|
|
17939
|
+
xpath,
|
|
17265
17940
|
xquery,
|
|
17266
17941
|
xslt,
|
|
17267
17942
|
yaml,
|