code-languages 1.17.0 → 1.18.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.
Files changed (78) hide show
  1. package/README.md +50 -0
  2. package/dist/api.cjs +420 -0
  3. package/dist/api.cjs.map +1 -1
  4. package/dist/api.d.cts +270 -0
  5. package/dist/api.d.ts +270 -0
  6. package/dist/api.js +420 -0
  7. package/dist/api.js.map +1 -1
  8. package/dist/detect.cjs +300 -0
  9. package/dist/detect.cjs.map +1 -1
  10. package/dist/detect.js +300 -0
  11. package/dist/detect.js.map +1 -1
  12. package/dist/index.cjs +420 -0
  13. package/dist/index.cjs.map +1 -1
  14. package/dist/index.d.cts +260 -0
  15. package/dist/index.d.ts +260 -0
  16. package/dist/index.js +420 -0
  17. package/dist/index.js.map +1 -1
  18. package/dist/languages/bicep.cjs +34 -0
  19. package/dist/languages/bicep.cjs.map +1 -0
  20. package/dist/languages/bicep.d.cts +29 -0
  21. package/dist/languages/bicep.d.ts +29 -0
  22. package/dist/languages/bicep.js +32 -0
  23. package/dist/languages/bicep.js.map +1 -0
  24. package/dist/languages/cue.cjs +34 -0
  25. package/dist/languages/cue.cjs.map +1 -0
  26. package/dist/languages/cue.d.cts +29 -0
  27. package/dist/languages/cue.d.ts +29 -0
  28. package/dist/languages/cue.js +32 -0
  29. package/dist/languages/cue.js.map +1 -0
  30. package/dist/languages/gdscript.cjs +34 -0
  31. package/dist/languages/gdscript.cjs.map +1 -0
  32. package/dist/languages/gdscript.d.cts +29 -0
  33. package/dist/languages/gdscript.d.ts +29 -0
  34. package/dist/languages/gdscript.js +32 -0
  35. package/dist/languages/gdscript.js.map +1 -0
  36. package/dist/languages/handlebars.cjs +34 -0
  37. package/dist/languages/handlebars.cjs.map +1 -0
  38. package/dist/languages/handlebars.d.cts +29 -0
  39. package/dist/languages/handlebars.d.ts +29 -0
  40. package/dist/languages/handlebars.js +32 -0
  41. package/dist/languages/handlebars.js.map +1 -0
  42. package/dist/languages/jinja.cjs +34 -0
  43. package/dist/languages/jinja.cjs.map +1 -0
  44. package/dist/languages/jinja.d.cts +29 -0
  45. package/dist/languages/jinja.d.ts +29 -0
  46. package/dist/languages/jinja.js +32 -0
  47. package/dist/languages/jinja.js.map +1 -0
  48. package/dist/languages/liquid.cjs +34 -0
  49. package/dist/languages/liquid.cjs.map +1 -0
  50. package/dist/languages/liquid.d.cts +29 -0
  51. package/dist/languages/liquid.d.ts +29 -0
  52. package/dist/languages/liquid.js +32 -0
  53. package/dist/languages/liquid.js.map +1 -0
  54. package/dist/languages/mdx.cjs +34 -0
  55. package/dist/languages/mdx.cjs.map +1 -0
  56. package/dist/languages/mdx.d.cts +29 -0
  57. package/dist/languages/mdx.d.ts +29 -0
  58. package/dist/languages/mdx.js +32 -0
  59. package/dist/languages/mdx.js.map +1 -0
  60. package/dist/languages/mermaid.cjs +34 -0
  61. package/dist/languages/mermaid.cjs.map +1 -0
  62. package/dist/languages/mermaid.d.cts +29 -0
  63. package/dist/languages/mermaid.d.ts +29 -0
  64. package/dist/languages/mermaid.js +32 -0
  65. package/dist/languages/mermaid.js.map +1 -0
  66. package/dist/languages/plantuml.cjs +34 -0
  67. package/dist/languages/plantuml.cjs.map +1 -0
  68. package/dist/languages/plantuml.d.cts +29 -0
  69. package/dist/languages/plantuml.d.ts +29 -0
  70. package/dist/languages/plantuml.js +32 -0
  71. package/dist/languages/plantuml.js.map +1 -0
  72. package/dist/languages/verilog.cjs +34 -0
  73. package/dist/languages/verilog.cjs.map +1 -0
  74. package/dist/languages/verilog.d.cts +29 -0
  75. package/dist/languages/verilog.d.ts +29 -0
  76. package/dist/languages/verilog.js +32 -0
  77. package/dist/languages/verilog.js.map +1 -0
  78. package/package.json +51 -1
package/dist/api.cjs CHANGED
@@ -387,6 +387,44 @@ var init_batch = __esm({
387
387
  }
388
388
  });
389
389
 
390
+ // src/languages/bicep.ts
391
+ var bicep_exports = {};
392
+ __export(bicep_exports, {
393
+ bicep: () => bicep
394
+ });
395
+ var bicep;
396
+ var init_bicep = __esm({
397
+ "src/languages/bicep.ts"() {
398
+ bicep = {
399
+ slug: "bicep",
400
+ publishedDate: "2020-09-01",
401
+ extensions: [".bicep", ".bicepparam"],
402
+ author: "Microsoft",
403
+ website: "https://github.com/Azure/bicep",
404
+ paradigms: ["declarative", "infrastructure-as-code", "configuration"],
405
+ tooling: {
406
+ runtimes: ["Azure Resource Manager"],
407
+ packageManagers: ["Azure Verified Modules", "Bicep Registry"],
408
+ ecosystems: ["Azure", "Cloud", "DevOps", "Infrastructure as Code"]
409
+ },
410
+ version: "0.43.8",
411
+ logo: "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/azure-bicep.svg",
412
+ i18n: {
413
+ en: {
414
+ name: "Bicep",
415
+ description: "A declarative language for describing Azure infrastructure as code.",
416
+ longDescription: "Bicep is a domain-specific language for authoring Azure Resource Manager deployments with a concise syntax, modules, parameters, symbolic names, loops, conditions, and type-aware tooling. It compiles to ARM templates while giving authors a friendlier source format.\n\nIt is used for repeatable Azure infrastructure deployments, platform engineering, cloud governance, reusable modules, CI/CD provisioning, and environment-specific resource definitions."
417
+ },
418
+ es: {
419
+ name: "Bicep",
420
+ description: "Un lenguaje declarativo para describir infraestructura de Azure como codigo.",
421
+ longDescription: "Bicep es un lenguaje de dominio especifico para crear despliegues de Azure Resource Manager con sintaxis concisa, modulos, parametros, nombres simbolicos, bucles, condiciones y tooling con tipos. Compila a plantillas ARM y ofrece un formato fuente mas comodo.\n\nSe usa para despliegues repetibles de infraestructura en Azure, platform engineering, gobierno cloud, modulos reutilizables, aprovisionamiento en CI/CD y definiciones de recursos por entorno."
422
+ }
423
+ }
424
+ };
425
+ }
426
+ });
427
+
390
428
  // src/languages/c.ts
391
429
  var c_exports = {};
392
430
  __export(c_exports, {
@@ -760,6 +798,44 @@ var init_cuda = __esm({
760
798
  }
761
799
  });
762
800
 
801
+ // src/languages/cue.ts
802
+ var cue_exports = {};
803
+ __export(cue_exports, {
804
+ cue: () => cue
805
+ });
806
+ var cue;
807
+ var init_cue = __esm({
808
+ "src/languages/cue.ts"() {
809
+ cue = {
810
+ slug: "cue",
811
+ publishedDate: "2019-02-27",
812
+ extensions: [".cue"],
813
+ author: "Marcel van Lohuizen / CUE contributors",
814
+ website: "https://cue.dev",
815
+ paradigms: ["declarative", "constraint-based", "data-validation", "configuration"],
816
+ tooling: {
817
+ runtimes: ["CUE CLI", "Go"],
818
+ packageManagers: ["Go modules"],
819
+ ecosystems: ["Configuration", "Validation", "Kubernetes", "DevOps"]
820
+ },
821
+ version: "0.16.1",
822
+ logo: "https://avatars.githubusercontent.com/u/43867057?s=200&v=4",
823
+ i18n: {
824
+ en: {
825
+ name: "CUE",
826
+ description: "A constraint-based language for configuration, data validation, and generation.",
827
+ longDescription: "CUE combines configuration data, schemas, validation rules, and policy constraints in one language. Its values can be incomplete, unified, exported, and checked against structural constraints, making it useful for managing complex data definitions.\n\nIt is used with Kubernetes manifests, JSON, YAML, OpenAPI, Protobuf, CI configuration, infrastructure definitions, and systems that need one source of truth for data shape and validation."
828
+ },
829
+ es: {
830
+ name: "CUE",
831
+ description: "Un lenguaje basado en restricciones para configuracion, validacion y generacion de datos.",
832
+ longDescription: "CUE combina datos de configuracion, esquemas, reglas de validacion y restricciones de politica en un solo lenguaje. Sus valores pueden estar incompletos, unificarse, exportarse y comprobarse contra restricciones estructurales, lo que ayuda a gestionar definiciones de datos complejas.\n\nSe usa con manifiestos Kubernetes, JSON, YAML, OpenAPI, Protobuf, configuracion de CI, definiciones de infraestructura y sistemas que necesitan una fuente unica para forma y validacion de datos."
833
+ }
834
+ }
835
+ };
836
+ }
837
+ });
838
+
763
839
  // src/languages/d.ts
764
840
  var d_exports = {};
765
841
  __export(d_exports, {
@@ -1101,6 +1177,44 @@ var init_fsharp = __esm({
1101
1177
  }
1102
1178
  });
1103
1179
 
1180
+ // src/languages/gdscript.ts
1181
+ var gdscript_exports = {};
1182
+ __export(gdscript_exports, {
1183
+ gdscript: () => gdscript
1184
+ });
1185
+ var gdscript;
1186
+ var init_gdscript = __esm({
1187
+ "src/languages/gdscript.ts"() {
1188
+ gdscript = {
1189
+ slug: "gdscript",
1190
+ publishedDate: "2014-12-15",
1191
+ extensions: [".gd"],
1192
+ author: "Juan Linietsky, Ariel Manzur / Godot contributors",
1193
+ website: "https://docs.godotengine.org/en/stable/tutorials/scripting/gdscript/",
1194
+ paradigms: ["object-oriented", "imperative", "event-driven", "scripting"],
1195
+ tooling: {
1196
+ runtimes: ["Godot Engine"],
1197
+ packageManagers: ["Godot Asset Library"],
1198
+ ecosystems: ["Game Development", "2D Games", "3D Games"]
1199
+ },
1200
+ version: "4.6",
1201
+ logo: "https://cdn.simpleicons.org/godotengine/478CBF",
1202
+ i18n: {
1203
+ en: {
1204
+ name: "GDScript",
1205
+ description: "Godot Engine's integrated scripting language for gameplay and editor logic.",
1206
+ longDescription: "GDScript is a high-level scripting language built for Godot Engine. It uses indentation-based syntax, dynamic and optional static typing, signals, scene-node integration, coroutines, resources, and editor-aware tooling tailored to game development.\n\nIt is used to implement gameplay, UI behavior, tools, animation logic, prototypes, editor plugins, and scripts that interact closely with Godot scenes and engine APIs."
1207
+ },
1208
+ es: {
1209
+ name: "GDScript",
1210
+ description: "El lenguaje de scripting integrado de Godot Engine para gameplay y logica de editor.",
1211
+ longDescription: "GDScript es un lenguaje de scripting de alto nivel creado para Godot Engine. Usa sintaxis basada en indentacion, tipado dinamico y estatico opcional, senales, integracion con nodos de escena, corrutinas, recursos y tooling del editor orientado al desarrollo de juegos.\n\nSe usa para implementar gameplay, comportamiento de UI, herramientas, logica de animacion, prototipos, plugins del editor y scripts que interactuan de cerca con escenas y APIs de Godot."
1212
+ }
1213
+ }
1214
+ };
1215
+ }
1216
+ });
1217
+
1104
1218
  // src/languages/git.ts
1105
1219
  var git_exports = {};
1106
1220
  __export(git_exports, {
@@ -1366,6 +1480,44 @@ var init_groovy = __esm({
1366
1480
  }
1367
1481
  });
1368
1482
 
1483
+ // src/languages/handlebars.ts
1484
+ var handlebars_exports = {};
1485
+ __export(handlebars_exports, {
1486
+ handlebars: () => handlebars
1487
+ });
1488
+ var handlebars;
1489
+ var init_handlebars = __esm({
1490
+ "src/languages/handlebars.ts"() {
1491
+ handlebars = {
1492
+ slug: "handlebars",
1493
+ publishedDate: "2010-07-01",
1494
+ extensions: [".hbs", ".handlebars"],
1495
+ author: "Yehuda Katz / Handlebars contributors",
1496
+ website: "https://handlebarsjs.com",
1497
+ paradigms: ["templating", "declarative", "logic-less"],
1498
+ tooling: {
1499
+ runtimes: ["Node.js", "Browser"],
1500
+ packageManagers: ["npm", "Yarn", "pnpm"],
1501
+ ecosystems: ["Web", "Email Templates", "Static Sites"]
1502
+ },
1503
+ version: "4.7.9",
1504
+ logo: "https://cdn.simpleicons.org/handlebarsdotjs/000000",
1505
+ i18n: {
1506
+ en: {
1507
+ name: "Handlebars",
1508
+ description: "A logic-light template language for rendering HTML and text from data.",
1509
+ longDescription: "Handlebars is a template language and JavaScript runtime that extends Mustache with helpers, block expressions, partials, precompilation, and escaping. It keeps templates focused on presentation while letting helpers supply reusable behavior.\n\nIt is used for server-rendered HTML, client-side views, static site generation, transactional email, documentation tools, and build systems that need predictable text generation from structured data."
1510
+ },
1511
+ es: {
1512
+ name: "Handlebars",
1513
+ description: "Un lenguaje de plantillas con poca logica para renderizar HTML y texto desde datos.",
1514
+ longDescription: "Handlebars es un lenguaje de plantillas y runtime JavaScript que extiende Mustache con helpers, expresiones de bloque, partials, precompilacion y escapado. Mantiene las plantillas centradas en la presentacion y deja que los helpers aporten comportamiento reutilizable.\n\nSe usa para HTML renderizado en servidor, vistas de cliente, generacion de sitios estaticos, email transaccional, herramientas de documentacion y sistemas de build que generan texto desde datos estructurados."
1515
+ }
1516
+ }
1517
+ };
1518
+ }
1519
+ });
1520
+
1369
1521
  // src/languages/haskell.ts
1370
1522
  var haskell_exports = {};
1371
1523
  __export(haskell_exports, {
@@ -1625,6 +1777,44 @@ var init_javascript = __esm({
1625
1777
  }
1626
1778
  });
1627
1779
 
1780
+ // src/languages/jinja.ts
1781
+ var jinja_exports = {};
1782
+ __export(jinja_exports, {
1783
+ jinja: () => jinja
1784
+ });
1785
+ var jinja;
1786
+ var init_jinja = __esm({
1787
+ "src/languages/jinja.ts"() {
1788
+ jinja = {
1789
+ slug: "jinja",
1790
+ publishedDate: "2008-07-17",
1791
+ extensions: [".jinja", ".jinja2", ".j2"],
1792
+ author: "Armin Ronacher / Pallets",
1793
+ website: "https://jinja.palletsprojects.com",
1794
+ paradigms: ["templating", "declarative", "server-side", "scripting"],
1795
+ tooling: {
1796
+ runtimes: ["Python"],
1797
+ packageManagers: ["pip", "Poetry", "uv"],
1798
+ ecosystems: ["Python", "Flask", "Ansible", "Web"]
1799
+ },
1800
+ version: "3.1.6",
1801
+ logo: "https://cdn.simpleicons.org/jinja/B41717",
1802
+ i18n: {
1803
+ en: {
1804
+ name: "Jinja",
1805
+ description: "A Python template language used for web views, automation, and configuration.",
1806
+ longDescription: "Jinja is a template engine for Python with inheritance, blocks, includes, macros, filters, tests, autoescaping, sandboxing, and whitespace control. Its syntax is expressive enough for reusable views while keeping application logic outside templates.\n\nIt is widely used in Flask applications, Ansible templates, static site generators, documentation systems, email rendering, configuration generation, and automation workflows."
1807
+ },
1808
+ es: {
1809
+ name: "Jinja",
1810
+ description: "Un lenguaje de plantillas para Python usado en vistas web, automatizacion y configuracion.",
1811
+ longDescription: "Jinja es un motor de plantillas para Python con herencia, bloques, includes, macros, filtros, tests, autoescapado, sandboxing y control de espacios. Su sintaxis permite vistas reutilizables sin llevar la logica de aplicacion a las plantillas.\n\nSe usa ampliamente en aplicaciones Flask, plantillas de Ansible, generadores de sitios estaticos, sistemas de documentacion, renderizado de email, generacion de configuracion y flujos de automatizacion."
1812
+ }
1813
+ }
1814
+ };
1815
+ }
1816
+ });
1817
+
1628
1818
  // src/languages/json.ts
1629
1819
  var json_exports = {};
1630
1820
  __export(json_exports, {
@@ -1810,6 +2000,44 @@ var init_less = __esm({
1810
2000
  }
1811
2001
  });
1812
2002
 
2003
+ // src/languages/liquid.ts
2004
+ var liquid_exports = {};
2005
+ __export(liquid_exports, {
2006
+ liquid: () => liquid
2007
+ });
2008
+ var liquid;
2009
+ var init_liquid = __esm({
2010
+ "src/languages/liquid.ts"() {
2011
+ liquid = {
2012
+ slug: "liquid",
2013
+ publishedDate: "2006-06-01",
2014
+ extensions: [".liquid"],
2015
+ author: "Shopify",
2016
+ website: "https://shopify.github.io/liquid/",
2017
+ paradigms: ["templating", "declarative", "logic-less", "server-side"],
2018
+ tooling: {
2019
+ runtimes: ["Ruby", "Node.js", "Shopify"],
2020
+ packageManagers: ["RubyGems", "npm"],
2021
+ ecosystems: ["Shopify", "Jekyll", "Static Sites", "E-commerce"]
2022
+ },
2023
+ version: "10.21.1",
2024
+ logo: "https://cdn.simpleicons.org/shopify/7AB55C",
2025
+ i18n: {
2026
+ en: {
2027
+ name: "Liquid",
2028
+ description: "A safe template language used by Shopify, Jekyll, and content-driven sites.",
2029
+ longDescription: "Liquid is a template language designed to expose controlled data to templates through tags, objects, filters, loops, conditions, and includes. It favors predictable rendering and constrained logic so non-developers can safely customize content presentation.\n\nIt is used in Shopify themes, Jekyll sites, GitHub Pages, storefront customization, content management systems, email templates, and static publishing workflows."
2030
+ },
2031
+ es: {
2032
+ name: "Liquid",
2033
+ description: "Un lenguaje de plantillas seguro usado por Shopify, Jekyll y sitios basados en contenido.",
2034
+ longDescription: "Liquid es un lenguaje de plantillas disenado para exponer datos controlados mediante tags, objetos, filtros, bucles, condiciones e includes. Prioriza renderizado predecible y logica limitada para que personas no desarrolladoras puedan personalizar la presentacion de contenido con seguridad.\n\nSe usa en temas de Shopify, sitios Jekyll, GitHub Pages, personalizacion de tiendas, sistemas de gestion de contenido, plantillas de email y flujos de publicacion estatica."
2035
+ }
2036
+ }
2037
+ };
2038
+ }
2039
+ });
2040
+
1813
2041
  // src/languages/lisp.ts
1814
2042
  var lisp_exports = {};
1815
2043
  __export(lisp_exports, {
@@ -1994,6 +2222,82 @@ var init_matlab = __esm({
1994
2222
  }
1995
2223
  });
1996
2224
 
2225
+ // src/languages/mdx.ts
2226
+ var mdx_exports = {};
2227
+ __export(mdx_exports, {
2228
+ mdx: () => mdx
2229
+ });
2230
+ var mdx;
2231
+ var init_mdx = __esm({
2232
+ "src/languages/mdx.ts"() {
2233
+ mdx = {
2234
+ slug: "mdx",
2235
+ publishedDate: "2018-03-23",
2236
+ extensions: [".mdx"],
2237
+ author: "MDX contributors",
2238
+ website: "https://mdxjs.com",
2239
+ paradigms: ["markup", "component-oriented", "declarative", "documentation"],
2240
+ tooling: {
2241
+ runtimes: ["React", "Node.js"],
2242
+ packageManagers: ["npm", "Yarn", "pnpm"],
2243
+ ecosystems: ["Documentation", "React", "Static Sites", "Content"]
2244
+ },
2245
+ version: "3.1.1",
2246
+ logo: "https://cdn.simpleicons.org/mdx/1B1F24",
2247
+ i18n: {
2248
+ en: {
2249
+ name: "MDX",
2250
+ description: "A Markdown-based format that embeds JSX components in content documents.",
2251
+ longDescription: "MDX combines Markdown prose with JSX expressions and components, allowing documents to include interactive examples, imports, exports, and component-driven layouts. It is commonly compiled into JavaScript for React-based rendering pipelines.\n\nIt is used in documentation sites, design systems, blogs, tutorials, component demos, content platforms, and static site generators that need prose and UI components in the same source file."
2252
+ },
2253
+ es: {
2254
+ name: "MDX",
2255
+ description: "Un formato basado en Markdown que inserta componentes JSX en documentos de contenido.",
2256
+ longDescription: "MDX combina prosa Markdown con expresiones y componentes JSX, permitiendo que los documentos incluyan ejemplos interactivos, imports, exports y layouts basados en componentes. Normalmente se compila a JavaScript para pipelines de renderizado con React.\n\nSe usa en sitios de documentacion, sistemas de diseno, blogs, tutoriales, demos de componentes, plataformas de contenido y generadores de sitios estaticos que necesitan prosa y UI en el mismo archivo fuente."
2257
+ }
2258
+ }
2259
+ };
2260
+ }
2261
+ });
2262
+
2263
+ // src/languages/mermaid.ts
2264
+ var mermaid_exports = {};
2265
+ __export(mermaid_exports, {
2266
+ mermaid: () => mermaid
2267
+ });
2268
+ var mermaid;
2269
+ var init_mermaid = __esm({
2270
+ "src/languages/mermaid.ts"() {
2271
+ mermaid = {
2272
+ slug: "mermaid",
2273
+ publishedDate: "2014-11-04",
2274
+ extensions: [".mmd", ".mermaid"],
2275
+ author: "Knut Sveidqvist / Mermaid contributors",
2276
+ website: "https://mermaid.js.org",
2277
+ paradigms: ["declarative", "diagramming", "markup"],
2278
+ tooling: {
2279
+ runtimes: ["Browser", "Node.js"],
2280
+ packageManagers: ["npm", "Yarn", "pnpm"],
2281
+ ecosystems: ["Documentation", "Markdown", "Diagrams", "Knowledge Management"]
2282
+ },
2283
+ version: "11.11.0",
2284
+ logo: "https://cdn.simpleicons.org/mermaid/FF3670",
2285
+ i18n: {
2286
+ en: {
2287
+ name: "Mermaid",
2288
+ description: "A text-based diagram language for flowcharts, sequences, timelines, and more.",
2289
+ longDescription: "Mermaid is a diagramming language that renders structured text into diagrams such as flowcharts, sequence diagrams, class diagrams, state diagrams, entity relationship diagrams, gantt charts, timelines, and mind maps. It is designed to live comfortably beside Markdown documentation.\n\nIt is used in READMEs, architecture notes, wikis, documentation sites, issue trackers, knowledge bases, and workflows where diagrams should be versioned as plain text."
2290
+ },
2291
+ es: {
2292
+ name: "Mermaid",
2293
+ description: "Un lenguaje textual de diagramas para flujos, secuencias, lineas de tiempo y mas.",
2294
+ longDescription: "Mermaid es un lenguaje de diagramacion que renderiza texto estructurado como diagramas de flujo, secuencia, clases, estados, entidad-relacion, gantt, lineas de tiempo y mapas mentales. Esta pensado para convivir comodamente con documentacion Markdown.\n\nSe usa en READMEs, notas de arquitectura, wikis, sitios de documentacion, issue trackers, bases de conocimiento y flujos donde los diagramas deben versionarse como texto plano."
2295
+ }
2296
+ }
2297
+ };
2298
+ }
2299
+ });
2300
+
1997
2301
  // src/languages/meson.ts
1998
2302
  var meson_exports = {};
1999
2303
  __export(meson_exports, {
@@ -2372,6 +2676,44 @@ var init_php = __esm({
2372
2676
  }
2373
2677
  });
2374
2678
 
2679
+ // src/languages/plantuml.ts
2680
+ var plantuml_exports = {};
2681
+ __export(plantuml_exports, {
2682
+ plantuml: () => plantuml
2683
+ });
2684
+ var plantuml;
2685
+ var init_plantuml = __esm({
2686
+ "src/languages/plantuml.ts"() {
2687
+ plantuml = {
2688
+ slug: "plantuml",
2689
+ publishedDate: "2009-04-17",
2690
+ extensions: [".puml", ".plantuml", ".iuml"],
2691
+ author: "Arnaud Roques / PlantUML contributors",
2692
+ website: "https://plantuml.com",
2693
+ paradigms: ["declarative", "diagramming", "modeling"],
2694
+ tooling: {
2695
+ runtimes: ["Java", "PlantUML Server"],
2696
+ packageManagers: ["Maven", "Gradle", "npm"],
2697
+ ecosystems: ["UML", "Architecture", "Documentation", "Diagrams"]
2698
+ },
2699
+ version: "1.2026.3",
2700
+ logo: "https://plantuml.com/logo3.png",
2701
+ i18n: {
2702
+ en: {
2703
+ name: "PlantUML",
2704
+ description: "A text-based diagram language for UML, architecture, and documentation diagrams.",
2705
+ longDescription: "PlantUML is a diagram language and renderer for sequence, class, activity, component, state, object, deployment, timing, mind map, and architecture diagrams. It lets teams keep diagrams in source control and generate images from compact text.\n\nIt is used in software architecture documentation, design reviews, technical specs, wikis, CI-generated diagrams, and projects that prefer versionable diagrams over manually edited drawing files."
2706
+ },
2707
+ es: {
2708
+ name: "PlantUML",
2709
+ description: "Un lenguaje textual de diagramas para UML, arquitectura y documentacion.",
2710
+ longDescription: "PlantUML es un lenguaje y renderer de diagramas para secuencia, clases, actividad, componentes, estados, objetos, despliegue, timing, mapas mentales y arquitectura. Permite mantener diagramas en control de versiones y generar imagenes desde texto compacto.\n\nSe usa en documentacion de arquitectura de software, revisiones de diseno, especificaciones tecnicas, wikis, diagramas generados en CI y proyectos que prefieren diagramas versionables a archivos de dibujo editados manualmente."
2711
+ }
2712
+ }
2713
+ };
2714
+ }
2715
+ });
2716
+
2375
2717
  // src/languages/powershell.ts
2376
2718
  var powershell_exports = {};
2377
2719
  __export(powershell_exports, {
@@ -3234,6 +3576,44 @@ var init_typescript = __esm({
3234
3576
  }
3235
3577
  });
3236
3578
 
3579
+ // src/languages/verilog.ts
3580
+ var verilog_exports = {};
3581
+ __export(verilog_exports, {
3582
+ verilog: () => verilog
3583
+ });
3584
+ var verilog;
3585
+ var init_verilog = __esm({
3586
+ "src/languages/verilog.ts"() {
3587
+ verilog = {
3588
+ slug: "verilog",
3589
+ publishedDate: "1984-01-01",
3590
+ extensions: [".v", ".vh", ".sv", ".svh"],
3591
+ author: "Phil Moorby / Gateway Design Automation",
3592
+ website: "https://standards.ieee.org/standard/1800-2023.html",
3593
+ paradigms: ["hardware-description", "concurrent", "event-driven", "verification"],
3594
+ tooling: {
3595
+ runtimes: ["FPGA Toolchains", "ASIC EDA Tools", "Simulators"],
3596
+ packageManagers: ["FuseSoC"],
3597
+ ecosystems: ["Hardware Design", "FPGA", "ASIC", "Verification"]
3598
+ },
3599
+ version: "IEEE 1800-2023",
3600
+ logo: "https://cdn.jsdelivr.net/gh/vscode-icons/vscode-icons@master/icons/file_type_verilog.svg",
3601
+ i18n: {
3602
+ en: {
3603
+ name: "Verilog/SystemVerilog",
3604
+ description: "A hardware description and verification language for digital circuits and systems.",
3605
+ longDescription: "Verilog and SystemVerilog describe digital hardware at behavioral, register-transfer, and gate levels. The language supports modules, signals, continuous assignments, procedural blocks, timing, testbenches, assertions, interfaces, classes, and constrained random verification.\n\nIt is used for FPGA designs, ASIC development, hardware simulation, synthesis, verification environments, reusable IP blocks, and electronic design automation workflows."
3606
+ },
3607
+ es: {
3608
+ name: "Verilog/SystemVerilog",
3609
+ description: "Un lenguaje de descripcion y verificacion de hardware para circuitos y sistemas digitales.",
3610
+ longDescription: "Verilog y SystemVerilog describen hardware digital en niveles conductual, register-transfer y de compuertas. El lenguaje soporta modulos, senales, asignaciones continuas, bloques procedurales, timing, testbenches, assertions, interfaces, clases y verificacion aleatoria restringida.\n\nSe usa en disenos FPGA, desarrollo ASIC, simulacion de hardware, sintesis, entornos de verificacion, bloques IP reutilizables y flujos de automatizacion de diseno electronico."
3611
+ }
3612
+ }
3613
+ };
3614
+ }
3615
+ });
3616
+
3237
3617
  // src/languages/visual-basic.ts
3238
3618
  var visual_basic_exports = {};
3239
3619
  __export(visual_basic_exports, {
@@ -3614,6 +3994,7 @@ init_astro();
3614
3994
  init_awk();
3615
3995
  init_bash();
3616
3996
  init_batch();
3997
+ init_bicep();
3617
3998
  init_c();
3618
3999
  init_clojure();
3619
4000
  init_cmake();
@@ -3624,6 +4005,7 @@ init_crystal();
3624
4005
  init_csharp();
3625
4006
  init_css();
3626
4007
  init_cuda();
4008
+ init_cue();
3627
4009
  init_d();
3628
4010
  init_dart();
3629
4011
  init_dockerfile();
@@ -3633,6 +4015,7 @@ init_erlang();
3633
4015
  init_fennel();
3634
4016
  init_fortran();
3635
4017
  init_fsharp();
4018
+ init_gdscript();
3636
4019
  init_git();
3637
4020
  init_gleam();
3638
4021
  init_glsl();
@@ -3640,6 +4023,7 @@ init_go();
3640
4023
  init_gradle();
3641
4024
  init_graphql();
3642
4025
  init_groovy();
4026
+ init_handlebars();
3643
4027
  init_haskell();
3644
4028
  init_haxe();
3645
4029
  init_hcl();
@@ -3647,16 +4031,20 @@ init_html();
3647
4031
  init_ini();
3648
4032
  init_java();
3649
4033
  init_javascript();
4034
+ init_jinja();
3650
4035
  init_json();
3651
4036
  init_julia();
3652
4037
  init_jupyter_notebook();
3653
4038
  init_kotlin();
3654
4039
  init_less();
4040
+ init_liquid();
3655
4041
  init_lisp();
3656
4042
  init_lua();
3657
4043
  init_makefile();
3658
4044
  init_markdown();
3659
4045
  init_matlab();
4046
+ init_mdx();
4047
+ init_mermaid();
3660
4048
  init_meson();
3661
4049
  init_metal();
3662
4050
  init_nginx();
@@ -3667,6 +4055,7 @@ init_ocaml();
3667
4055
  init_pascal();
3668
4056
  init_perl();
3669
4057
  init_php();
4058
+ init_plantuml();
3670
4059
  init_powershell();
3671
4060
  init_protobuf();
3672
4061
  init_pug();
@@ -3690,6 +4079,7 @@ init_tex();
3690
4079
  init_toml();
3691
4080
  init_twig();
3692
4081
  init_typescript();
4082
+ init_verilog();
3693
4083
  init_visual_basic();
3694
4084
  init_vue();
3695
4085
  init_webassembly();
@@ -3711,6 +4101,7 @@ var languages = [
3711
4101
  awk,
3712
4102
  bash,
3713
4103
  batch,
4104
+ bicep,
3714
4105
  c,
3715
4106
  cmake,
3716
4107
  clojure,
@@ -3720,6 +4111,7 @@ var languages = [
3720
4111
  csharp,
3721
4112
  crystal,
3722
4113
  css,
4114
+ cue,
3723
4115
  cuda,
3724
4116
  d,
3725
4117
  dart,
@@ -3730,6 +4122,7 @@ var languages = [
3730
4122
  fennel,
3731
4123
  fortran,
3732
4124
  fsharp,
4125
+ gdscript,
3733
4126
  git,
3734
4127
  gleam,
3735
4128
  go,
@@ -3737,6 +4130,7 @@ var languages = [
3737
4130
  glsl,
3738
4131
  graphql,
3739
4132
  groovy,
4133
+ handlebars,
3740
4134
  haskell,
3741
4135
  haxe,
3742
4136
  hcl,
@@ -3744,16 +4138,20 @@ var languages = [
3744
4138
  ini,
3745
4139
  java,
3746
4140
  javascript,
4141
+ jinja,
3747
4142
  json,
3748
4143
  jupyterNotebook,
3749
4144
  julia,
3750
4145
  kotlin,
3751
4146
  less,
4147
+ liquid,
3752
4148
  lisp,
3753
4149
  lua,
3754
4150
  makefile,
3755
4151
  matlab,
3756
4152
  markdown,
4153
+ mdx,
4154
+ mermaid,
3757
4155
  meson,
3758
4156
  metal,
3759
4157
  svn,
@@ -3765,6 +4163,7 @@ var languages = [
3765
4163
  pascal,
3766
4164
  perl,
3767
4165
  php,
4166
+ plantuml,
3768
4167
  powershell,
3769
4168
  protobuf,
3770
4169
  pug,
@@ -3787,6 +4186,7 @@ var languages = [
3787
4186
  toml,
3788
4187
  twig,
3789
4188
  typescript,
4189
+ verilog,
3790
4190
  visualBasic,
3791
4191
  vue,
3792
4192
  webassembly,
@@ -3866,6 +4266,7 @@ var languageIndex = [
3866
4266
  extensions: [".sh", ".bash", ".bashrc", ".bash_profile", ".bash_login", ".profile"]
3867
4267
  },
3868
4268
  { slug: "batch", extensions: [".bat", ".cmd"] },
4269
+ { slug: "bicep", extensions: [".bicep", ".bicepparam"] },
3869
4270
  { slug: "c", extensions: [".c", ".h"] },
3870
4271
  { slug: "cmake", extensions: ["CMakeLists.txt", ".cmake"] },
3871
4272
  { slug: "clojure", extensions: [".clj", ".cljs", ".cljc", ".edn", ".bb"] },
@@ -3875,6 +4276,7 @@ var languageIndex = [
3875
4276
  { slug: "csharp", extensions: [".cs", ".csx"] },
3876
4277
  { slug: "crystal", extensions: [".cr"] },
3877
4278
  { slug: "css", extensions: [".css"] },
4279
+ { slug: "cue", extensions: [".cue"] },
3878
4280
  { slug: "cuda", extensions: [".cu", ".cuh"] },
3879
4281
  { slug: "d", extensions: [".d", ".di"] },
3880
4282
  { slug: "dart", extensions: [".dart"] },
@@ -3891,6 +4293,7 @@ var languageIndex = [
3891
4293
  extensions: [".f", ".for", ".ftn", ".f90", ".f95", ".f03", ".f08", ".f18", ".f23"]
3892
4294
  },
3893
4295
  { slug: "fsharp", extensions: [".fs", ".fsi", ".fsx", ".fsscript"] },
4296
+ { slug: "gdscript", extensions: [".gd"] },
3894
4297
  { slug: "git", extensions: [".git", ".gitignore", ".gitattributes", ".gitmodules", ".gitkeep"] },
3895
4298
  { slug: "gleam", extensions: [".gleam"] },
3896
4299
  { slug: "go", extensions: [".go"] },
@@ -3901,6 +4304,7 @@ var languageIndex = [
3901
4304
  },
3902
4305
  { slug: "graphql", extensions: [".graphql", ".gql", ".graphqls"] },
3903
4306
  { slug: "groovy", extensions: [".groovy", ".gvy", ".gy", ".gsh"] },
4307
+ { slug: "handlebars", extensions: [".hbs", ".handlebars"] },
3904
4308
  { slug: "haskell", extensions: [".hs", ".lhs", ".hsc", ".hs-boot", ".hsig", ".cabal"] },
3905
4309
  { slug: "haxe", extensions: [".hx", ".hxml"] },
3906
4310
  { slug: "hcl", extensions: [".hcl", ".tf", ".tfvars", ".pkr.hcl", ".nomad"] },
@@ -3908,16 +4312,20 @@ var languageIndex = [
3908
4312
  { slug: "ini", extensions: [".ini"] },
3909
4313
  { slug: "java", extensions: [".java"] },
3910
4314
  { slug: "javascript", extensions: [".js", ".mjs", ".cjs", ".jsx"] },
4315
+ { slug: "jinja", extensions: [".jinja", ".jinja2", ".j2"] },
3911
4316
  { slug: "json", extensions: [".json"] },
3912
4317
  { slug: "jupyter-notebook", extensions: [".ipynb"] },
3913
4318
  { slug: "julia", extensions: [".jl"] },
3914
4319
  { slug: "kotlin", extensions: [".kt", ".kts"] },
3915
4320
  { slug: "less", extensions: [".less"] },
4321
+ { slug: "liquid", extensions: [".liquid"] },
3916
4322
  { slug: "lisp", extensions: [".lisp", ".lsp", ".cl", ".asd"] },
3917
4323
  { slug: "lua", extensions: [".lua", ".rockspec"] },
3918
4324
  { slug: "makefile", extensions: ["Makefile", "makefile", "GNUmakefile", ".mk", ".mak"] },
3919
4325
  { slug: "matlab", extensions: [".m", ".mlx"] },
3920
4326
  { slug: "markdown", extensions: [".md", ".markdown", ".mdown", ".mkd"] },
4327
+ { slug: "mdx", extensions: [".mdx"] },
4328
+ { slug: "mermaid", extensions: [".mmd", ".mermaid"] },
3921
4329
  { slug: "meson", extensions: ["meson.build", "meson_options.txt", "meson.options", ".wrap"] },
3922
4330
  { slug: "metal", extensions: [".metal"] },
3923
4331
  { slug: "svn", extensions: [".svn", "svnserve.conf"] },
@@ -3929,6 +4337,7 @@ var languageIndex = [
3929
4337
  { slug: "pascal", extensions: [".pas", ".pp", ".inc", ".lpr", ".dpr", ".dfm"] },
3930
4338
  { slug: "perl", extensions: [".pl", ".pm", ".pod", ".t", ".psgi"] },
3931
4339
  { slug: "php", extensions: [".php", ".phtml", ".php3", ".php4", ".php5", ".phps"] },
4340
+ { slug: "plantuml", extensions: [".puml", ".plantuml", ".iuml"] },
3932
4341
  { slug: "powershell", extensions: [".ps1", ".psm1", ".psd1", ".ps1xml"] },
3933
4342
  { slug: "protobuf", extensions: [".proto"] },
3934
4343
  { slug: "pug", extensions: [".pug", ".jade"] },
@@ -3954,6 +4363,7 @@ var languageIndex = [
3954
4363
  { slug: "toml", extensions: [".toml"] },
3955
4364
  { slug: "twig", extensions: [".twig"] },
3956
4365
  { slug: "typescript", extensions: [".ts", ".tsx", ".mts", ".cts"] },
4366
+ { slug: "verilog", extensions: [".v", ".vh", ".sv", ".svh"] },
3957
4367
  { slug: "visual-basic", extensions: [".vb"] },
3958
4368
  { slug: "vue", extensions: [".vue"] },
3959
4369
  { slug: "webassembly", extensions: [".wasm", ".wat"] },
@@ -3979,6 +4389,7 @@ var languageLoaders = {
3979
4389
  awk: () => Promise.resolve().then(() => (init_awk(), awk_exports)).then((module) => module.awk),
3980
4390
  bash: () => Promise.resolve().then(() => (init_bash(), bash_exports)).then((module) => module.bash),
3981
4391
  batch: () => Promise.resolve().then(() => (init_batch(), batch_exports)).then((module) => module.batch),
4392
+ bicep: () => Promise.resolve().then(() => (init_bicep(), bicep_exports)).then((module) => module.bicep),
3982
4393
  c: () => Promise.resolve().then(() => (init_c(), c_exports)).then((module) => module.c),
3983
4394
  cmake: () => Promise.resolve().then(() => (init_cmake(), cmake_exports)).then((module) => module.cmake),
3984
4395
  clojure: () => Promise.resolve().then(() => (init_clojure(), clojure_exports)).then((module) => module.clojure),
@@ -3988,6 +4399,7 @@ var languageLoaders = {
3988
4399
  csharp: () => Promise.resolve().then(() => (init_csharp(), csharp_exports)).then((module) => module.csharp),
3989
4400
  crystal: () => Promise.resolve().then(() => (init_crystal(), crystal_exports)).then((module) => module.crystal),
3990
4401
  css: () => Promise.resolve().then(() => (init_css(), css_exports)).then((module) => module.css),
4402
+ cue: () => Promise.resolve().then(() => (init_cue(), cue_exports)).then((module) => module.cue),
3991
4403
  cuda: () => Promise.resolve().then(() => (init_cuda(), cuda_exports)).then((module) => module.cuda),
3992
4404
  d: () => Promise.resolve().then(() => (init_d(), d_exports)).then((module) => module.d),
3993
4405
  dart: () => Promise.resolve().then(() => (init_dart(), dart_exports)).then((module) => module.dart),
@@ -3998,6 +4410,7 @@ var languageLoaders = {
3998
4410
  fennel: () => Promise.resolve().then(() => (init_fennel(), fennel_exports)).then((module) => module.fennel),
3999
4411
  fortran: () => Promise.resolve().then(() => (init_fortran(), fortran_exports)).then((module) => module.fortran),
4000
4412
  fsharp: () => Promise.resolve().then(() => (init_fsharp(), fsharp_exports)).then((module) => module.fsharp),
4413
+ gdscript: () => Promise.resolve().then(() => (init_gdscript(), gdscript_exports)).then((module) => module.gdscript),
4001
4414
  git: () => Promise.resolve().then(() => (init_git(), git_exports)).then((module) => module.git),
4002
4415
  gleam: () => Promise.resolve().then(() => (init_gleam(), gleam_exports)).then((module) => module.gleam),
4003
4416
  go: () => Promise.resolve().then(() => (init_go(), go_exports)).then((module) => module.go),
@@ -4005,6 +4418,7 @@ var languageLoaders = {
4005
4418
  glsl: () => Promise.resolve().then(() => (init_glsl(), glsl_exports)).then((module) => module.glsl),
4006
4419
  graphql: () => Promise.resolve().then(() => (init_graphql(), graphql_exports)).then((module) => module.graphql),
4007
4420
  groovy: () => Promise.resolve().then(() => (init_groovy(), groovy_exports)).then((module) => module.groovy),
4421
+ handlebars: () => Promise.resolve().then(() => (init_handlebars(), handlebars_exports)).then((module) => module.handlebars),
4008
4422
  haskell: () => Promise.resolve().then(() => (init_haskell(), haskell_exports)).then((module) => module.haskell),
4009
4423
  haxe: () => Promise.resolve().then(() => (init_haxe(), haxe_exports)).then((module) => module.haxe),
4010
4424
  hcl: () => Promise.resolve().then(() => (init_hcl(), hcl_exports)).then((module) => module.hcl),
@@ -4012,16 +4426,20 @@ var languageLoaders = {
4012
4426
  ini: () => Promise.resolve().then(() => (init_ini(), ini_exports)).then((module) => module.ini),
4013
4427
  java: () => Promise.resolve().then(() => (init_java(), java_exports)).then((module) => module.java),
4014
4428
  javascript: () => Promise.resolve().then(() => (init_javascript(), javascript_exports)).then((module) => module.javascript),
4429
+ jinja: () => Promise.resolve().then(() => (init_jinja(), jinja_exports)).then((module) => module.jinja),
4015
4430
  json: () => Promise.resolve().then(() => (init_json(), json_exports)).then((module) => module.json),
4016
4431
  "jupyter-notebook": () => Promise.resolve().then(() => (init_jupyter_notebook(), jupyter_notebook_exports)).then((module) => module.jupyterNotebook),
4017
4432
  julia: () => Promise.resolve().then(() => (init_julia(), julia_exports)).then((module) => module.julia),
4018
4433
  kotlin: () => Promise.resolve().then(() => (init_kotlin(), kotlin_exports)).then((module) => module.kotlin),
4019
4434
  less: () => Promise.resolve().then(() => (init_less(), less_exports)).then((module) => module.less),
4435
+ liquid: () => Promise.resolve().then(() => (init_liquid(), liquid_exports)).then((module) => module.liquid),
4020
4436
  lisp: () => Promise.resolve().then(() => (init_lisp(), lisp_exports)).then((module) => module.lisp),
4021
4437
  lua: () => Promise.resolve().then(() => (init_lua(), lua_exports)).then((module) => module.lua),
4022
4438
  makefile: () => Promise.resolve().then(() => (init_makefile(), makefile_exports)).then((module) => module.makefile),
4023
4439
  matlab: () => Promise.resolve().then(() => (init_matlab(), matlab_exports)).then((module) => module.matlab),
4024
4440
  markdown: () => Promise.resolve().then(() => (init_markdown(), markdown_exports)).then((module) => module.markdown),
4441
+ mdx: () => Promise.resolve().then(() => (init_mdx(), mdx_exports)).then((module) => module.mdx),
4442
+ mermaid: () => Promise.resolve().then(() => (init_mermaid(), mermaid_exports)).then((module) => module.mermaid),
4025
4443
  meson: () => Promise.resolve().then(() => (init_meson(), meson_exports)).then((module) => module.meson),
4026
4444
  metal: () => Promise.resolve().then(() => (init_metal(), metal_exports)).then((module) => module.metal),
4027
4445
  svn: () => Promise.resolve().then(() => (init_svn(), svn_exports)).then((module) => module.svn),
@@ -4033,6 +4451,7 @@ var languageLoaders = {
4033
4451
  pascal: () => Promise.resolve().then(() => (init_pascal(), pascal_exports)).then((module) => module.pascal),
4034
4452
  perl: () => Promise.resolve().then(() => (init_perl(), perl_exports)).then((module) => module.perl),
4035
4453
  php: () => Promise.resolve().then(() => (init_php(), php_exports)).then((module) => module.php),
4454
+ plantuml: () => Promise.resolve().then(() => (init_plantuml(), plantuml_exports)).then((module) => module.plantuml),
4036
4455
  powershell: () => Promise.resolve().then(() => (init_powershell(), powershell_exports)).then((module) => module.powershell),
4037
4456
  protobuf: () => Promise.resolve().then(() => (init_protobuf(), protobuf_exports)).then((module) => module.protobuf),
4038
4457
  pug: () => Promise.resolve().then(() => (init_pug(), pug_exports)).then((module) => module.pug),
@@ -4055,6 +4474,7 @@ var languageLoaders = {
4055
4474
  toml: () => Promise.resolve().then(() => (init_toml(), toml_exports)).then((module) => module.toml),
4056
4475
  twig: () => Promise.resolve().then(() => (init_twig(), twig_exports)).then((module) => module.twig),
4057
4476
  typescript: () => Promise.resolve().then(() => (init_typescript(), typescript_exports)).then((module) => module.typescript),
4477
+ verilog: () => Promise.resolve().then(() => (init_verilog(), verilog_exports)).then((module) => module.verilog),
4058
4478
  "visual-basic": () => Promise.resolve().then(() => (init_visual_basic(), visual_basic_exports)).then((module) => module.visualBasic),
4059
4479
  vue: () => Promise.resolve().then(() => (init_vue(), vue_exports)).then((module) => module.vue),
4060
4480
  webassembly: () => Promise.resolve().then(() => (init_webassembly(), webassembly_exports)).then((module) => module.webassembly),