code-languages 1.12.4 → 1.14.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 (60) hide show
  1. package/README.md +33 -2
  2. package/dist/api.cjs +294 -0
  3. package/dist/api.cjs.map +1 -1
  4. package/dist/api.d.cts +189 -0
  5. package/dist/api.d.ts +189 -0
  6. package/dist/api.js +294 -0
  7. package/dist/api.js.map +1 -1
  8. package/dist/detect.cjs +210 -0
  9. package/dist/detect.cjs.map +1 -1
  10. package/dist/detect.js +210 -0
  11. package/dist/detect.js.map +1 -1
  12. package/dist/index.cjs +301 -0
  13. package/dist/index.cjs.map +1 -1
  14. package/dist/index.d.cts +189 -0
  15. package/dist/index.d.ts +189 -0
  16. package/dist/index.js +302 -1
  17. package/dist/index.js.map +1 -1
  18. package/dist/languages/elixir.cjs +34 -0
  19. package/dist/languages/elixir.cjs.map +1 -0
  20. package/dist/languages/elixir.d.cts +29 -0
  21. package/dist/languages/elixir.d.ts +29 -0
  22. package/dist/languages/elixir.js +32 -0
  23. package/dist/languages/elixir.js.map +1 -0
  24. package/dist/languages/haskell.cjs +34 -0
  25. package/dist/languages/haskell.cjs.map +1 -0
  26. package/dist/languages/haskell.d.cts +29 -0
  27. package/dist/languages/haskell.d.ts +29 -0
  28. package/dist/languages/haskell.js +32 -0
  29. package/dist/languages/haskell.js.map +1 -0
  30. package/dist/languages/hcl.cjs +34 -0
  31. package/dist/languages/hcl.cjs.map +1 -0
  32. package/dist/languages/hcl.d.cts +29 -0
  33. package/dist/languages/hcl.d.ts +29 -0
  34. package/dist/languages/hcl.js +32 -0
  35. package/dist/languages/hcl.js.map +1 -0
  36. package/dist/languages/jupyter-notebook.cjs +34 -0
  37. package/dist/languages/jupyter-notebook.cjs.map +1 -0
  38. package/dist/languages/jupyter-notebook.d.cts +29 -0
  39. package/dist/languages/jupyter-notebook.d.ts +29 -0
  40. package/dist/languages/jupyter-notebook.js +32 -0
  41. package/dist/languages/jupyter-notebook.js.map +1 -0
  42. package/dist/languages/ocaml.cjs +34 -0
  43. package/dist/languages/ocaml.cjs.map +1 -0
  44. package/dist/languages/ocaml.d.cts +29 -0
  45. package/dist/languages/ocaml.d.ts +29 -0
  46. package/dist/languages/ocaml.js +32 -0
  47. package/dist/languages/ocaml.js.map +1 -0
  48. package/dist/languages/razor.cjs +34 -0
  49. package/dist/languages/razor.cjs.map +1 -0
  50. package/dist/languages/razor.d.cts +29 -0
  51. package/dist/languages/razor.d.ts +29 -0
  52. package/dist/languages/razor.js +32 -0
  53. package/dist/languages/razor.js.map +1 -0
  54. package/dist/languages/solidity.cjs +34 -0
  55. package/dist/languages/solidity.cjs.map +1 -0
  56. package/dist/languages/solidity.d.cts +29 -0
  57. package/dist/languages/solidity.d.ts +29 -0
  58. package/dist/languages/solidity.js +32 -0
  59. package/dist/languages/solidity.js.map +1 -0
  60. package/package.json +36 -1
package/dist/index.cjs CHANGED
@@ -683,6 +683,44 @@ var init_dockerfile = __esm({
683
683
  }
684
684
  });
685
685
 
686
+ // src/languages/elixir.ts
687
+ var elixir_exports = {};
688
+ __export(elixir_exports, {
689
+ elixir: () => exports.elixir
690
+ });
691
+ exports.elixir = void 0;
692
+ var init_elixir = __esm({
693
+ "src/languages/elixir.ts"() {
694
+ exports.elixir = {
695
+ slug: "elixir",
696
+ publishedDate: "2012-05-25",
697
+ extensions: [".ex", ".exs", ".eex", ".leex", ".heex"],
698
+ author: "Jose Valim",
699
+ website: "https://elixir-lang.org",
700
+ paradigms: ["functional", "concurrent", "distributed", "metaprogramming"],
701
+ tooling: {
702
+ runtimes: ["BEAM", "Erlang/OTP"],
703
+ packageManagers: ["Mix", "Hex"],
704
+ ecosystems: ["Web", "Distributed Systems", "Fault-tolerant Systems", "Data Processing"]
705
+ },
706
+ version: "1.19.5",
707
+ logo: "https://cdn.simpleicons.org/elixir/4B275F",
708
+ i18n: {
709
+ en: {
710
+ name: "Elixir",
711
+ description: "A dynamic functional language for scalable, maintainable, and fault-tolerant systems.",
712
+ longDescription: "Elixir runs on the BEAM virtual machine and combines functional programming, lightweight processes, message passing, pattern matching, macros, and OTP libraries for building concurrent and distributed software.\n\nIt is widely used for web applications with Phoenix, real-time systems, background jobs, data pipelines, embedded systems, and services that need resilience, observability, and high concurrency."
713
+ },
714
+ es: {
715
+ name: "Elixir",
716
+ description: "Un lenguaje funcional dinamico para sistemas escalables, mantenibles y tolerantes a fallos.",
717
+ longDescription: "Elixir corre sobre la maquina virtual BEAM y combina programacion funcional, procesos ligeros, paso de mensajes, pattern matching, macros y librerias OTP para construir software concurrente y distribuido.\n\nSe usa ampliamente en aplicaciones web con Phoenix, sistemas en tiempo real, trabajos en segundo plano, pipelines de datos, sistemas embebidos y servicios que necesitan resiliencia, observabilidad y alta concurrencia."
718
+ }
719
+ }
720
+ };
721
+ }
722
+ });
723
+
686
724
  // src/languages/elm.ts
687
725
  var elm_exports = {};
688
726
  __export(elm_exports, {
@@ -1062,6 +1100,82 @@ var init_groovy = __esm({
1062
1100
  }
1063
1101
  });
1064
1102
 
1103
+ // src/languages/haskell.ts
1104
+ var haskell_exports = {};
1105
+ __export(haskell_exports, {
1106
+ haskell: () => exports.haskell
1107
+ });
1108
+ exports.haskell = void 0;
1109
+ var init_haskell = __esm({
1110
+ "src/languages/haskell.ts"() {
1111
+ exports.haskell = {
1112
+ slug: "haskell",
1113
+ publishedDate: "1990-04-01",
1114
+ extensions: [".hs", ".lhs", ".hsc", ".hs-boot", ".hsig", ".cabal"],
1115
+ author: "Haskell Committee",
1116
+ website: "https://www.haskell.org",
1117
+ paradigms: ["functional", "declarative", "lazy evaluation", "statically typed"],
1118
+ tooling: {
1119
+ runtimes: ["GHC", "GHCi"],
1120
+ packageManagers: ["Cabal", "Stack", "GHCup"],
1121
+ ecosystems: ["Functional Programming", "Compilers", "Research", "Financial Systems"]
1122
+ },
1123
+ version: "GHC 9.14.1",
1124
+ logo: "https://cdn.simpleicons.org/haskell/5D4F85",
1125
+ i18n: {
1126
+ en: {
1127
+ name: "Haskell",
1128
+ description: "A lazy, purely functional language with strong static typing and expressive abstractions.",
1129
+ longDescription: "Haskell is a general-purpose functional programming language known for purity, lazy evaluation, algebraic data types, type classes, pattern matching, and a powerful static type system. The Haskell 2010 language standard is widely supported, while GHC adds many commonly used extensions.\n\nIt is used in compiler construction, programming language research, financial systems, formal methods, data processing, education, and production services that benefit from strong types and high-level abstractions."
1130
+ },
1131
+ es: {
1132
+ name: "Haskell",
1133
+ description: "Un lenguaje puramente funcional y lazy con tipado estatico fuerte y abstracciones expresivas.",
1134
+ longDescription: "Haskell es un lenguaje de programacion funcional de proposito general conocido por pureza, evaluacion lazy, tipos algebraicos, type classes, pattern matching y un sistema de tipos estatico potente. El estandar Haskell 2010 tiene amplio soporte, mientras GHC agrega muchas extensiones de uso comun.\n\nSe usa en construccion de compiladores, investigacion en lenguajes de programacion, sistemas financieros, metodos formales, procesamiento de datos, educacion y servicios de produccion que se benefician de tipos fuertes y abstracciones de alto nivel."
1135
+ }
1136
+ }
1137
+ };
1138
+ }
1139
+ });
1140
+
1141
+ // src/languages/hcl.ts
1142
+ var hcl_exports = {};
1143
+ __export(hcl_exports, {
1144
+ hcl: () => exports.hcl
1145
+ });
1146
+ exports.hcl = void 0;
1147
+ var init_hcl = __esm({
1148
+ "src/languages/hcl.ts"() {
1149
+ exports.hcl = {
1150
+ slug: "hcl",
1151
+ publishedDate: "2014-01-01",
1152
+ extensions: [".hcl", ".tf", ".tfvars", ".pkr.hcl", ".nomad"],
1153
+ author: "HashiCorp",
1154
+ website: "https://github.com/hashicorp/hcl",
1155
+ paradigms: ["declarative", "configuration", "data-serialization"],
1156
+ tooling: {
1157
+ runtimes: ["Terraform", "Packer", "Nomad", "Vault", "Consul"],
1158
+ packageManagers: ["Terraform Registry"],
1159
+ ecosystems: ["Infrastructure as Code", "DevOps", "Cloud", "HashiCorp"]
1160
+ },
1161
+ version: "2.24.0",
1162
+ logo: "https://cdn.simpleicons.org/hashicorp/844FBA",
1163
+ i18n: {
1164
+ en: {
1165
+ name: "HCL",
1166
+ description: "HashiCorp Configuration Language for human-readable infrastructure and application configuration.",
1167
+ longDescription: "HCL is HashiCorp Configuration Language, a structured configuration language designed to be readable by humans while remaining easy for tools to parse. It supports blocks, attributes, expressions, variables, functions, object values, and references used to describe infrastructure and application settings.\n\nIt is best known through Terraform, but it is also used across HashiCorp tools such as Packer, Nomad, Vault, and Consul. HCL files commonly define cloud resources, modules, providers, jobs, policies, templates, and environment-specific variables."
1168
+ },
1169
+ es: {
1170
+ name: "HCL",
1171
+ description: "El lenguaje de configuracion de HashiCorp para infraestructura y configuracion legible por humanos.",
1172
+ longDescription: "HCL es HashiCorp Configuration Language, un lenguaje de configuracion estructurado disenado para ser legible por humanos y facil de analizar por herramientas. Soporta bloques, atributos, expresiones, variables, funciones, valores de objeto y referencias usadas para describir infraestructura y configuracion de aplicaciones.\n\nEs conocido principalmente por Terraform, pero tambien se usa en herramientas de HashiCorp como Packer, Nomad, Vault y Consul. Los archivos HCL suelen definir recursos cloud, modulos, providers, jobs, politicas, templates y variables especificas por entorno."
1173
+ }
1174
+ }
1175
+ };
1176
+ }
1177
+ });
1178
+
1065
1179
  // src/languages/html.ts
1066
1180
  var html_exports = {};
1067
1181
  __export(html_exports, {
@@ -1278,6 +1392,44 @@ var init_julia = __esm({
1278
1392
  }
1279
1393
  });
1280
1394
 
1395
+ // src/languages/jupyter-notebook.ts
1396
+ var jupyter_notebook_exports = {};
1397
+ __export(jupyter_notebook_exports, {
1398
+ jupyterNotebook: () => exports.jupyterNotebook
1399
+ });
1400
+ exports.jupyterNotebook = void 0;
1401
+ var init_jupyter_notebook = __esm({
1402
+ "src/languages/jupyter-notebook.ts"() {
1403
+ exports.jupyterNotebook = {
1404
+ slug: "jupyter-notebook",
1405
+ publishedDate: "2011-12-21",
1406
+ extensions: [".ipynb"],
1407
+ author: "Project Jupyter",
1408
+ website: "https://jupyter.org",
1409
+ paradigms: ["literate programming", "interactive computing", "data serialization", "markup"],
1410
+ tooling: {
1411
+ runtimes: ["Jupyter Notebook", "JupyterLab", "VS Code"],
1412
+ packageManagers: ["pip", "conda", "mamba"],
1413
+ ecosystems: ["Data Science", "Machine Learning", "Scientific Computing", "Education"]
1414
+ },
1415
+ version: "nbformat 4.5",
1416
+ logo: "https://cdn.simpleicons.org/jupyter/F37626",
1417
+ i18n: {
1418
+ en: {
1419
+ name: "Jupyter Notebook",
1420
+ description: "A JSON-based notebook format for combining live code, narrative text, outputs, and media.",
1421
+ longDescription: "Jupyter Notebook files store executable code cells, Markdown narrative, rich outputs, metadata, and kernel information in a JSON document with the .ipynb extension.\n\nThey are widely used for data analysis, machine learning experiments, scientific computing, education, tutorials, reports, and reproducible computational workflows."
1422
+ },
1423
+ es: {
1424
+ name: "Jupyter Notebook",
1425
+ description: "Un formato de notebook basado en JSON para combinar codigo vivo, texto, salidas y medios.",
1426
+ longDescription: "Los archivos Jupyter Notebook guardan celdas de codigo ejecutable, narrativa en Markdown, salidas enriquecidas, metadatos e informacion del kernel en un documento JSON con extension .ipynb.\n\nSe usan ampliamente en analisis de datos, experimentos de machine learning, computacion cientifica, educacion, tutoriales, reportes y flujos computacionales reproducibles."
1427
+ }
1428
+ }
1429
+ };
1430
+ }
1431
+ });
1432
+
1281
1433
  // src/languages/kotlin.ts
1282
1434
  var kotlin_exports = {};
1283
1435
  __export(kotlin_exports, {
@@ -1726,6 +1878,44 @@ var init_objective_c = __esm({
1726
1878
  }
1727
1879
  });
1728
1880
 
1881
+ // src/languages/ocaml.ts
1882
+ var ocaml_exports = {};
1883
+ __export(ocaml_exports, {
1884
+ ocaml: () => exports.ocaml
1885
+ });
1886
+ exports.ocaml = void 0;
1887
+ var init_ocaml = __esm({
1888
+ "src/languages/ocaml.ts"() {
1889
+ exports.ocaml = {
1890
+ slug: "ocaml",
1891
+ publishedDate: "1996-01-01",
1892
+ extensions: [".ml", ".mli", ".mll", ".mly", ".mlt", ".eliom", ".eliomi"],
1893
+ author: "Xavier Leroy, Jerome Vouillon, Damien Doligez, Didier Remy, Ascander Suarez",
1894
+ website: "https://ocaml.org",
1895
+ paradigms: ["functional", "imperative", "object-oriented", "modular"],
1896
+ tooling: {
1897
+ runtimes: ["OCaml Runtime", "Native Code Compiler", "Bytecode Interpreter"],
1898
+ packageManagers: ["opam", "Dune"],
1899
+ ecosystems: ["Compilers", "Formal Methods", "Systems Programming", "Web"]
1900
+ },
1901
+ version: "5.6.0",
1902
+ logo: "https://cdn.simpleicons.org/ocaml/EC6813",
1903
+ i18n: {
1904
+ en: {
1905
+ name: "OCaml",
1906
+ description: "A statically typed ML-family language with modules, inference, and native compilation.",
1907
+ longDescription: "OCaml combines functional, imperative, and object-oriented programming with Hindley-Milner type inference, algebraic data types, pattern matching, functors, and a powerful module system.\n\nIt is used for compilers, theorem provers, static analysis, developer tools, financial systems, systems software, and production services where strong types, performance, and maintainability matter."
1908
+ },
1909
+ es: {
1910
+ name: "OCaml",
1911
+ description: "Un lenguaje de la familia ML con tipado estatico, modulos, inferencia y compilacion nativa.",
1912
+ longDescription: "OCaml combina programacion funcional, imperativa y orientada a objetos con inferencia de tipos Hindley-Milner, tipos algebraicos, pattern matching, functors y un sistema de modulos potente.\n\nSe usa en compiladores, demostradores de teoremas, analisis estatico, herramientas de desarrollo, sistemas financieros, software de sistemas y servicios de produccion donde importan los tipos fuertes, el rendimiento y la mantenibilidad."
1913
+ }
1914
+ }
1915
+ };
1916
+ }
1917
+ });
1918
+
1729
1919
  // src/languages/pascal.ts
1730
1920
  var pascal_exports = {};
1731
1921
  __export(pascal_exports, {
@@ -1992,6 +2182,44 @@ var init_r = __esm({
1992
2182
  }
1993
2183
  });
1994
2184
 
2185
+ // src/languages/razor.ts
2186
+ var razor_exports = {};
2187
+ __export(razor_exports, {
2188
+ razor: () => exports.razor
2189
+ });
2190
+ exports.razor = void 0;
2191
+ var init_razor = __esm({
2192
+ "src/languages/razor.ts"() {
2193
+ exports.razor = {
2194
+ slug: "razor",
2195
+ publishedDate: "2010-07-01",
2196
+ extensions: [".cshtml", ".razor"],
2197
+ author: "Microsoft",
2198
+ website: "https://learn.microsoft.com/en-us/aspnet/core/mvc/views/razor",
2199
+ paradigms: ["templating", "component-based", "server-side", "declarative"],
2200
+ tooling: {
2201
+ runtimes: ["ASP.NET Core", ".NET", "Blazor"],
2202
+ packageManagers: ["NuGet"],
2203
+ ecosystems: [".NET", "ASP.NET Core", "Web", "Blazor"]
2204
+ },
2205
+ version: "10.0.8",
2206
+ logo: "https://cdn.simpleicons.org/dotnet/512BD4",
2207
+ i18n: {
2208
+ en: {
2209
+ name: "Razor",
2210
+ description: "Microsoft's markup syntax for ASP.NET Core views, Razor Pages, and Blazor components.",
2211
+ longDescription: "Razor is a markup syntax and templating language used by ASP.NET Core to combine HTML with C# expressions, directives, layouts, tag helpers, components, and server-side or interactive rendering logic.\n\nIt is used in MVC views, Razor Pages, Razor Class Libraries, and Blazor components. Razor files commonly define page templates, reusable UI components, forms, layouts, routing, component parameters, and bindings within .NET web applications."
2212
+ },
2213
+ es: {
2214
+ name: "Razor",
2215
+ description: "La sintaxis de marcado de Microsoft para vistas ASP.NET Core, Razor Pages y componentes Blazor.",
2216
+ longDescription: "Razor es una sintaxis de marcado y lenguaje de templates usado por ASP.NET Core para combinar HTML con expresiones C#, directivas, layouts, tag helpers, componentes y logica de renderizado server-side o interactiva.\n\nSe usa en vistas MVC, Razor Pages, Razor Class Libraries y componentes Blazor. Los archivos Razor suelen definir templates de paginas, componentes UI reutilizables, formularios, layouts, routing, parametros de componentes y bindings dentro de aplicaciones web .NET."
2217
+ }
2218
+ }
2219
+ };
2220
+ }
2221
+ });
2222
+
1995
2223
  // src/languages/ruby.ts
1996
2224
  var ruby_exports = {};
1997
2225
  __export(ruby_exports, {
@@ -2144,6 +2372,44 @@ var init_scss = __esm({
2144
2372
  }
2145
2373
  });
2146
2374
 
2375
+ // src/languages/solidity.ts
2376
+ var solidity_exports = {};
2377
+ __export(solidity_exports, {
2378
+ solidity: () => exports.solidity
2379
+ });
2380
+ exports.solidity = void 0;
2381
+ var init_solidity = __esm({
2382
+ "src/languages/solidity.ts"() {
2383
+ exports.solidity = {
2384
+ slug: "solidity",
2385
+ publishedDate: "2015-07-30",
2386
+ extensions: [".sol"],
2387
+ author: "Gavin Wood / Ethereum Foundation / Solidity Team",
2388
+ website: "https://soliditylang.org",
2389
+ paradigms: ["contract-oriented", "object-oriented", "statically-typed", "imperative"],
2390
+ tooling: {
2391
+ runtimes: ["Ethereum Virtual Machine", "EVM-compatible chains"],
2392
+ packageManagers: ["npm", "Foundry", "Hardhat"],
2393
+ ecosystems: ["Ethereum", "Web3", "Smart Contracts", "Blockchain"]
2394
+ },
2395
+ version: "0.8.35",
2396
+ logo: "https://cdn.simpleicons.org/solidity/363636",
2397
+ i18n: {
2398
+ en: {
2399
+ name: "Solidity",
2400
+ description: "A statically typed smart contract language for Ethereum and EVM-compatible blockchains.",
2401
+ longDescription: "Solidity is a statically typed, contract-oriented programming language designed for writing smart contracts that run on the Ethereum Virtual Machine and compatible blockchain networks. It supports contracts, libraries, interfaces, inheritance, modifiers, events, custom errors, ABI encoding, and explicit visibility and mutability rules.\n\nIt is used to build decentralized applications, token contracts, DAOs, DeFi protocols, NFT contracts, governance systems, and other on-chain programs where deterministic execution and verifiable state transitions are required."
2402
+ },
2403
+ es: {
2404
+ name: "Solidity",
2405
+ description: "Un lenguaje tipado estaticamente para smart contracts en Ethereum y blockchains compatibles con EVM.",
2406
+ longDescription: "Solidity es un lenguaje de programacion tipado estaticamente y orientado a contratos, disenado para escribir smart contracts que se ejecutan en Ethereum Virtual Machine y redes blockchain compatibles. Soporta contratos, bibliotecas, interfaces, herencia, modificadores, eventos, errores personalizados, codificacion ABI y reglas explicitas de visibilidad y mutabilidad.\n\nSe usa para construir aplicaciones descentralizadas, contratos de tokens, DAOs, protocolos DeFi, contratos NFT, sistemas de gobernanza y otros programas on-chain donde se requiere ejecucion determinista y transiciones de estado verificables."
2407
+ }
2408
+ }
2409
+ };
2410
+ }
2411
+ });
2412
+
2147
2413
  // src/languages/sql.ts
2148
2414
  var sql_exports = {};
2149
2415
  __export(sql_exports, {
@@ -2710,6 +2976,7 @@ init_css();
2710
2976
  init_cuda();
2711
2977
  init_dart();
2712
2978
  init_dockerfile();
2979
+ init_elixir();
2713
2980
  init_elm();
2714
2981
  init_erlang();
2715
2982
  init_fortran();
@@ -2720,12 +2987,15 @@ init_go();
2720
2987
  init_gradle();
2721
2988
  init_graphql();
2722
2989
  init_groovy();
2990
+ init_haskell();
2991
+ init_hcl();
2723
2992
  init_html();
2724
2993
  init_ini();
2725
2994
  init_java();
2726
2995
  init_javascript();
2727
2996
  init_json();
2728
2997
  init_julia();
2998
+ init_jupyter_notebook();
2729
2999
  init_kotlin();
2730
3000
  init_less();
2731
3001
  init_lisp();
@@ -2738,6 +3008,7 @@ init_metal();
2738
3008
  init_nginx();
2739
3009
  init_nix();
2740
3010
  init_objective_c();
3011
+ init_ocaml();
2741
3012
  init_pascal();
2742
3013
  init_perl();
2743
3014
  init_php();
@@ -2745,10 +3016,12 @@ init_powershell();
2745
3016
  init_pug();
2746
3017
  init_python();
2747
3018
  init_r();
3019
+ init_razor();
2748
3020
  init_ruby();
2749
3021
  init_rust();
2750
3022
  init_scala();
2751
3023
  init_scss();
3024
+ init_solidity();
2752
3025
  init_sql();
2753
3026
  init_svelte();
2754
3027
  init_svg();
@@ -2783,6 +3056,7 @@ var languages = [
2783
3056
  exports.cuda,
2784
3057
  exports.dart,
2785
3058
  exports.dockerfile,
3059
+ exports.elixir,
2786
3060
  exports.elm,
2787
3061
  exports.erlang,
2788
3062
  exports.fortran,
@@ -2793,11 +3067,14 @@ var languages = [
2793
3067
  exports.glsl,
2794
3068
  exports.graphql,
2795
3069
  exports.groovy,
3070
+ exports.haskell,
3071
+ exports.hcl,
2796
3072
  exports.html,
2797
3073
  exports.ini,
2798
3074
  exports.java,
2799
3075
  exports.javascript,
2800
3076
  exports.json,
3077
+ exports.jupyterNotebook,
2801
3078
  exports.julia,
2802
3079
  exports.kotlin,
2803
3080
  exports.less,
@@ -2811,6 +3088,7 @@ var languages = [
2811
3088
  exports.svn,
2812
3089
  exports.nginx,
2813
3090
  exports.nix,
3091
+ exports.ocaml,
2814
3092
  exports.objectiveC,
2815
3093
  exports.pascal,
2816
3094
  exports.perl,
@@ -2819,10 +3097,12 @@ var languages = [
2819
3097
  exports.pug,
2820
3098
  exports.python,
2821
3099
  exports.r,
3100
+ exports.razor,
2822
3101
  exports.ruby,
2823
3102
  exports.rust,
2824
3103
  exports.scala,
2825
3104
  exports.scss,
3105
+ exports.solidity,
2826
3106
  exports.sql,
2827
3107
  exports.svg,
2828
3108
  exports.svelte,
@@ -2914,6 +3194,7 @@ var languageIndex = [
2914
3194
  { slug: "cuda", extensions: [".cu", ".cuh"] },
2915
3195
  { slug: "dart", extensions: [".dart"] },
2916
3196
  { slug: "dockerfile", extensions: ["Dockerfile", ".dockerfile"] },
3197
+ { slug: "elixir", extensions: [".ex", ".exs", ".eex", ".leex", ".heex"] },
2917
3198
  { slug: "elm", extensions: [".elm"] },
2918
3199
  {
2919
3200
  slug: "erlang",
@@ -2933,11 +3214,14 @@ var languageIndex = [
2933
3214
  },
2934
3215
  { slug: "graphql", extensions: [".graphql", ".gql", ".graphqls"] },
2935
3216
  { slug: "groovy", extensions: [".groovy", ".gvy", ".gy", ".gsh"] },
3217
+ { slug: "haskell", extensions: [".hs", ".lhs", ".hsc", ".hs-boot", ".hsig", ".cabal"] },
3218
+ { slug: "hcl", extensions: [".hcl", ".tf", ".tfvars", ".pkr.hcl", ".nomad"] },
2936
3219
  { slug: "html", extensions: [".html", ".htm"] },
2937
3220
  { slug: "ini", extensions: [".ini"] },
2938
3221
  { slug: "java", extensions: [".java"] },
2939
3222
  { slug: "javascript", extensions: [".js", ".mjs", ".cjs", ".jsx"] },
2940
3223
  { slug: "json", extensions: [".json"] },
3224
+ { slug: "jupyter-notebook", extensions: [".ipynb"] },
2941
3225
  { slug: "julia", extensions: [".jl"] },
2942
3226
  { slug: "kotlin", extensions: [".kt", ".kts"] },
2943
3227
  { slug: "less", extensions: [".less"] },
@@ -2951,6 +3235,7 @@ var languageIndex = [
2951
3235
  { slug: "svn", extensions: [".svn", "svnserve.conf"] },
2952
3236
  { slug: "nginx", extensions: ["nginx.conf", ".nginx", ".conf"] },
2953
3237
  { slug: "nix", extensions: [".nix"] },
3238
+ { slug: "ocaml", extensions: [".ml", ".mli", ".mll", ".mly", ".mlt", ".eliom", ".eliomi"] },
2954
3239
  { slug: "objective-c", extensions: [".m", ".mm"] },
2955
3240
  { slug: "pascal", extensions: [".pas", ".pp", ".inc", ".lpr", ".dpr", ".dfm"] },
2956
3241
  { slug: "perl", extensions: [".pl", ".pm", ".pod", ".t", ".psgi"] },
@@ -2959,6 +3244,7 @@ var languageIndex = [
2959
3244
  { slug: "pug", extensions: [".pug", ".jade"] },
2960
3245
  { slug: "python", extensions: [".py", ".pyw"] },
2961
3246
  { slug: "r", extensions: [".r", ".R", ".rmd", ".Rmd", ".qmd", ".Rprofile"] },
3247
+ { slug: "razor", extensions: [".cshtml", ".razor"] },
2962
3248
  {
2963
3249
  slug: "ruby",
2964
3250
  extensions: [".rb", ".rbw", ".rake", ".gemspec", "Gemfile", "Rakefile", "config.ru"]
@@ -2966,6 +3252,7 @@ var languageIndex = [
2966
3252
  { slug: "rust", extensions: [".rs"] },
2967
3253
  { slug: "scala", extensions: [".scala", ".sc"] },
2968
3254
  { slug: "scss", extensions: [".scss", ".sass"] },
3255
+ { slug: "solidity", extensions: [".sol"] },
2969
3256
  { slug: "sql", extensions: [".sql"] },
2970
3257
  { slug: "svg", extensions: [".svg", ".svgz"] },
2971
3258
  { slug: "svelte", extensions: [".svelte"] },
@@ -3003,6 +3290,7 @@ var languageLoaders = {
3003
3290
  cuda: () => Promise.resolve().then(() => (init_cuda(), cuda_exports)).then((module) => module.cuda),
3004
3291
  dart: () => Promise.resolve().then(() => (init_dart(), dart_exports)).then((module) => module.dart),
3005
3292
  dockerfile: () => Promise.resolve().then(() => (init_dockerfile(), dockerfile_exports)).then((module) => module.dockerfile),
3293
+ elixir: () => Promise.resolve().then(() => (init_elixir(), elixir_exports)).then((module) => module.elixir),
3006
3294
  elm: () => Promise.resolve().then(() => (init_elm(), elm_exports)).then((module) => module.elm),
3007
3295
  erlang: () => Promise.resolve().then(() => (init_erlang(), erlang_exports)).then((module) => module.erlang),
3008
3296
  fortran: () => Promise.resolve().then(() => (init_fortran(), fortran_exports)).then((module) => module.fortran),
@@ -3013,11 +3301,14 @@ var languageLoaders = {
3013
3301
  glsl: () => Promise.resolve().then(() => (init_glsl(), glsl_exports)).then((module) => module.glsl),
3014
3302
  graphql: () => Promise.resolve().then(() => (init_graphql(), graphql_exports)).then((module) => module.graphql),
3015
3303
  groovy: () => Promise.resolve().then(() => (init_groovy(), groovy_exports)).then((module) => module.groovy),
3304
+ haskell: () => Promise.resolve().then(() => (init_haskell(), haskell_exports)).then((module) => module.haskell),
3305
+ hcl: () => Promise.resolve().then(() => (init_hcl(), hcl_exports)).then((module) => module.hcl),
3016
3306
  html: () => Promise.resolve().then(() => (init_html(), html_exports)).then((module) => module.html),
3017
3307
  ini: () => Promise.resolve().then(() => (init_ini(), ini_exports)).then((module) => module.ini),
3018
3308
  java: () => Promise.resolve().then(() => (init_java(), java_exports)).then((module) => module.java),
3019
3309
  javascript: () => Promise.resolve().then(() => (init_javascript(), javascript_exports)).then((module) => module.javascript),
3020
3310
  json: () => Promise.resolve().then(() => (init_json(), json_exports)).then((module) => module.json),
3311
+ "jupyter-notebook": () => Promise.resolve().then(() => (init_jupyter_notebook(), jupyter_notebook_exports)).then((module) => module.jupyterNotebook),
3021
3312
  julia: () => Promise.resolve().then(() => (init_julia(), julia_exports)).then((module) => module.julia),
3022
3313
  kotlin: () => Promise.resolve().then(() => (init_kotlin(), kotlin_exports)).then((module) => module.kotlin),
3023
3314
  less: () => Promise.resolve().then(() => (init_less(), less_exports)).then((module) => module.less),
@@ -3031,6 +3322,7 @@ var languageLoaders = {
3031
3322
  svn: () => Promise.resolve().then(() => (init_svn(), svn_exports)).then((module) => module.svn),
3032
3323
  nginx: () => Promise.resolve().then(() => (init_nginx(), nginx_exports)).then((module) => module.nginx),
3033
3324
  nix: () => Promise.resolve().then(() => (init_nix(), nix_exports)).then((module) => module.nix),
3325
+ ocaml: () => Promise.resolve().then(() => (init_ocaml(), ocaml_exports)).then((module) => module.ocaml),
3034
3326
  "objective-c": () => Promise.resolve().then(() => (init_objective_c(), objective_c_exports)).then((module) => module.objectiveC),
3035
3327
  pascal: () => Promise.resolve().then(() => (init_pascal(), pascal_exports)).then((module) => module.pascal),
3036
3328
  perl: () => Promise.resolve().then(() => (init_perl(), perl_exports)).then((module) => module.perl),
@@ -3039,10 +3331,12 @@ var languageLoaders = {
3039
3331
  pug: () => Promise.resolve().then(() => (init_pug(), pug_exports)).then((module) => module.pug),
3040
3332
  python: () => Promise.resolve().then(() => (init_python(), python_exports)).then((module) => module.python),
3041
3333
  r: () => Promise.resolve().then(() => (init_r(), r_exports)).then((module) => module.r),
3334
+ razor: () => Promise.resolve().then(() => (init_razor(), razor_exports)).then((module) => module.razor),
3042
3335
  ruby: () => Promise.resolve().then(() => (init_ruby(), ruby_exports)).then((module) => module.ruby),
3043
3336
  rust: () => Promise.resolve().then(() => (init_rust(), rust_exports)).then((module) => module.rust),
3044
3337
  scala: () => Promise.resolve().then(() => (init_scala(), scala_exports)).then((module) => module.scala),
3045
3338
  scss: () => Promise.resolve().then(() => (init_scss(), scss_exports)).then((module) => module.scss),
3339
+ solidity: () => Promise.resolve().then(() => (init_solidity(), solidity_exports)).then((module) => module.solidity),
3046
3340
  sql: () => Promise.resolve().then(() => (init_sql(), sql_exports)).then((module) => module.sql),
3047
3341
  svelte: () => Promise.resolve().then(() => (init_svelte(), svelte_exports)).then((module) => module.svelte),
3048
3342
  svg: () => Promise.resolve().then(() => (init_svg(), svg_exports)).then((module) => module.svg),
@@ -3172,6 +3466,7 @@ init_css();
3172
3466
  init_cuda();
3173
3467
  init_dart();
3174
3468
  init_dockerfile();
3469
+ init_elixir();
3175
3470
  init_elm();
3176
3471
  init_erlang();
3177
3472
  init_fortran();
@@ -3182,11 +3477,14 @@ init_gradle();
3182
3477
  init_glsl();
3183
3478
  init_graphql();
3184
3479
  init_groovy();
3480
+ init_haskell();
3481
+ init_hcl();
3185
3482
  init_html();
3186
3483
  init_ini();
3187
3484
  init_java();
3188
3485
  init_javascript();
3189
3486
  init_json();
3487
+ init_jupyter_notebook();
3190
3488
  init_julia();
3191
3489
  init_kotlin();
3192
3490
  init_less();
@@ -3199,6 +3497,7 @@ init_meson();
3199
3497
  init_metal();
3200
3498
  init_nginx();
3201
3499
  init_nix();
3500
+ init_ocaml();
3202
3501
  init_objective_c();
3203
3502
  init_pascal();
3204
3503
  init_perl();
@@ -3207,10 +3506,12 @@ init_powershell();
3207
3506
  init_pug();
3208
3507
  init_python();
3209
3508
  init_r();
3509
+ init_razor();
3210
3510
  init_ruby();
3211
3511
  init_rust();
3212
3512
  init_scala();
3213
3513
  init_scss();
3514
+ init_solidity();
3214
3515
  init_sql();
3215
3516
  init_svg();
3216
3517
  init_svn();