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.js CHANGED
@@ -681,6 +681,44 @@ var init_dockerfile = __esm({
681
681
  }
682
682
  });
683
683
 
684
+ // src/languages/elixir.ts
685
+ var elixir_exports = {};
686
+ __export(elixir_exports, {
687
+ elixir: () => elixir
688
+ });
689
+ var elixir;
690
+ var init_elixir = __esm({
691
+ "src/languages/elixir.ts"() {
692
+ elixir = {
693
+ slug: "elixir",
694
+ publishedDate: "2012-05-25",
695
+ extensions: [".ex", ".exs", ".eex", ".leex", ".heex"],
696
+ author: "Jose Valim",
697
+ website: "https://elixir-lang.org",
698
+ paradigms: ["functional", "concurrent", "distributed", "metaprogramming"],
699
+ tooling: {
700
+ runtimes: ["BEAM", "Erlang/OTP"],
701
+ packageManagers: ["Mix", "Hex"],
702
+ ecosystems: ["Web", "Distributed Systems", "Fault-tolerant Systems", "Data Processing"]
703
+ },
704
+ version: "1.19.5",
705
+ logo: "https://cdn.simpleicons.org/elixir/4B275F",
706
+ i18n: {
707
+ en: {
708
+ name: "Elixir",
709
+ description: "A dynamic functional language for scalable, maintainable, and fault-tolerant systems.",
710
+ 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."
711
+ },
712
+ es: {
713
+ name: "Elixir",
714
+ description: "Un lenguaje funcional dinamico para sistemas escalables, mantenibles y tolerantes a fallos.",
715
+ 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."
716
+ }
717
+ }
718
+ };
719
+ }
720
+ });
721
+
684
722
  // src/languages/elm.ts
685
723
  var elm_exports = {};
686
724
  __export(elm_exports, {
@@ -1060,6 +1098,82 @@ var init_groovy = __esm({
1060
1098
  }
1061
1099
  });
1062
1100
 
1101
+ // src/languages/haskell.ts
1102
+ var haskell_exports = {};
1103
+ __export(haskell_exports, {
1104
+ haskell: () => haskell
1105
+ });
1106
+ var haskell;
1107
+ var init_haskell = __esm({
1108
+ "src/languages/haskell.ts"() {
1109
+ haskell = {
1110
+ slug: "haskell",
1111
+ publishedDate: "1990-04-01",
1112
+ extensions: [".hs", ".lhs", ".hsc", ".hs-boot", ".hsig", ".cabal"],
1113
+ author: "Haskell Committee",
1114
+ website: "https://www.haskell.org",
1115
+ paradigms: ["functional", "declarative", "lazy evaluation", "statically typed"],
1116
+ tooling: {
1117
+ runtimes: ["GHC", "GHCi"],
1118
+ packageManagers: ["Cabal", "Stack", "GHCup"],
1119
+ ecosystems: ["Functional Programming", "Compilers", "Research", "Financial Systems"]
1120
+ },
1121
+ version: "GHC 9.14.1",
1122
+ logo: "https://cdn.simpleicons.org/haskell/5D4F85",
1123
+ i18n: {
1124
+ en: {
1125
+ name: "Haskell",
1126
+ description: "A lazy, purely functional language with strong static typing and expressive abstractions.",
1127
+ 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."
1128
+ },
1129
+ es: {
1130
+ name: "Haskell",
1131
+ description: "Un lenguaje puramente funcional y lazy con tipado estatico fuerte y abstracciones expresivas.",
1132
+ 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."
1133
+ }
1134
+ }
1135
+ };
1136
+ }
1137
+ });
1138
+
1139
+ // src/languages/hcl.ts
1140
+ var hcl_exports = {};
1141
+ __export(hcl_exports, {
1142
+ hcl: () => hcl
1143
+ });
1144
+ var hcl;
1145
+ var init_hcl = __esm({
1146
+ "src/languages/hcl.ts"() {
1147
+ hcl = {
1148
+ slug: "hcl",
1149
+ publishedDate: "2014-01-01",
1150
+ extensions: [".hcl", ".tf", ".tfvars", ".pkr.hcl", ".nomad"],
1151
+ author: "HashiCorp",
1152
+ website: "https://github.com/hashicorp/hcl",
1153
+ paradigms: ["declarative", "configuration", "data-serialization"],
1154
+ tooling: {
1155
+ runtimes: ["Terraform", "Packer", "Nomad", "Vault", "Consul"],
1156
+ packageManagers: ["Terraform Registry"],
1157
+ ecosystems: ["Infrastructure as Code", "DevOps", "Cloud", "HashiCorp"]
1158
+ },
1159
+ version: "2.24.0",
1160
+ logo: "https://cdn.simpleicons.org/hashicorp/844FBA",
1161
+ i18n: {
1162
+ en: {
1163
+ name: "HCL",
1164
+ description: "HashiCorp Configuration Language for human-readable infrastructure and application configuration.",
1165
+ 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."
1166
+ },
1167
+ es: {
1168
+ name: "HCL",
1169
+ description: "El lenguaje de configuracion de HashiCorp para infraestructura y configuracion legible por humanos.",
1170
+ 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."
1171
+ }
1172
+ }
1173
+ };
1174
+ }
1175
+ });
1176
+
1063
1177
  // src/languages/html.ts
1064
1178
  var html_exports = {};
1065
1179
  __export(html_exports, {
@@ -1276,6 +1390,44 @@ var init_julia = __esm({
1276
1390
  }
1277
1391
  });
1278
1392
 
1393
+ // src/languages/jupyter-notebook.ts
1394
+ var jupyter_notebook_exports = {};
1395
+ __export(jupyter_notebook_exports, {
1396
+ jupyterNotebook: () => jupyterNotebook
1397
+ });
1398
+ var jupyterNotebook;
1399
+ var init_jupyter_notebook = __esm({
1400
+ "src/languages/jupyter-notebook.ts"() {
1401
+ jupyterNotebook = {
1402
+ slug: "jupyter-notebook",
1403
+ publishedDate: "2011-12-21",
1404
+ extensions: [".ipynb"],
1405
+ author: "Project Jupyter",
1406
+ website: "https://jupyter.org",
1407
+ paradigms: ["literate programming", "interactive computing", "data serialization", "markup"],
1408
+ tooling: {
1409
+ runtimes: ["Jupyter Notebook", "JupyterLab", "VS Code"],
1410
+ packageManagers: ["pip", "conda", "mamba"],
1411
+ ecosystems: ["Data Science", "Machine Learning", "Scientific Computing", "Education"]
1412
+ },
1413
+ version: "nbformat 4.5",
1414
+ logo: "https://cdn.simpleicons.org/jupyter/F37626",
1415
+ i18n: {
1416
+ en: {
1417
+ name: "Jupyter Notebook",
1418
+ description: "A JSON-based notebook format for combining live code, narrative text, outputs, and media.",
1419
+ 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."
1420
+ },
1421
+ es: {
1422
+ name: "Jupyter Notebook",
1423
+ description: "Un formato de notebook basado en JSON para combinar codigo vivo, texto, salidas y medios.",
1424
+ 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."
1425
+ }
1426
+ }
1427
+ };
1428
+ }
1429
+ });
1430
+
1279
1431
  // src/languages/kotlin.ts
1280
1432
  var kotlin_exports = {};
1281
1433
  __export(kotlin_exports, {
@@ -1724,6 +1876,44 @@ var init_objective_c = __esm({
1724
1876
  }
1725
1877
  });
1726
1878
 
1879
+ // src/languages/ocaml.ts
1880
+ var ocaml_exports = {};
1881
+ __export(ocaml_exports, {
1882
+ ocaml: () => ocaml
1883
+ });
1884
+ var ocaml;
1885
+ var init_ocaml = __esm({
1886
+ "src/languages/ocaml.ts"() {
1887
+ ocaml = {
1888
+ slug: "ocaml",
1889
+ publishedDate: "1996-01-01",
1890
+ extensions: [".ml", ".mli", ".mll", ".mly", ".mlt", ".eliom", ".eliomi"],
1891
+ author: "Xavier Leroy, Jerome Vouillon, Damien Doligez, Didier Remy, Ascander Suarez",
1892
+ website: "https://ocaml.org",
1893
+ paradigms: ["functional", "imperative", "object-oriented", "modular"],
1894
+ tooling: {
1895
+ runtimes: ["OCaml Runtime", "Native Code Compiler", "Bytecode Interpreter"],
1896
+ packageManagers: ["opam", "Dune"],
1897
+ ecosystems: ["Compilers", "Formal Methods", "Systems Programming", "Web"]
1898
+ },
1899
+ version: "5.6.0",
1900
+ logo: "https://cdn.simpleicons.org/ocaml/EC6813",
1901
+ i18n: {
1902
+ en: {
1903
+ name: "OCaml",
1904
+ description: "A statically typed ML-family language with modules, inference, and native compilation.",
1905
+ 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."
1906
+ },
1907
+ es: {
1908
+ name: "OCaml",
1909
+ description: "Un lenguaje de la familia ML con tipado estatico, modulos, inferencia y compilacion nativa.",
1910
+ 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."
1911
+ }
1912
+ }
1913
+ };
1914
+ }
1915
+ });
1916
+
1727
1917
  // src/languages/pascal.ts
1728
1918
  var pascal_exports = {};
1729
1919
  __export(pascal_exports, {
@@ -1990,6 +2180,44 @@ var init_r = __esm({
1990
2180
  }
1991
2181
  });
1992
2182
 
2183
+ // src/languages/razor.ts
2184
+ var razor_exports = {};
2185
+ __export(razor_exports, {
2186
+ razor: () => razor
2187
+ });
2188
+ var razor;
2189
+ var init_razor = __esm({
2190
+ "src/languages/razor.ts"() {
2191
+ razor = {
2192
+ slug: "razor",
2193
+ publishedDate: "2010-07-01",
2194
+ extensions: [".cshtml", ".razor"],
2195
+ author: "Microsoft",
2196
+ website: "https://learn.microsoft.com/en-us/aspnet/core/mvc/views/razor",
2197
+ paradigms: ["templating", "component-based", "server-side", "declarative"],
2198
+ tooling: {
2199
+ runtimes: ["ASP.NET Core", ".NET", "Blazor"],
2200
+ packageManagers: ["NuGet"],
2201
+ ecosystems: [".NET", "ASP.NET Core", "Web", "Blazor"]
2202
+ },
2203
+ version: "10.0.8",
2204
+ logo: "https://cdn.simpleicons.org/dotnet/512BD4",
2205
+ i18n: {
2206
+ en: {
2207
+ name: "Razor",
2208
+ description: "Microsoft's markup syntax for ASP.NET Core views, Razor Pages, and Blazor components.",
2209
+ 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."
2210
+ },
2211
+ es: {
2212
+ name: "Razor",
2213
+ description: "La sintaxis de marcado de Microsoft para vistas ASP.NET Core, Razor Pages y componentes Blazor.",
2214
+ 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."
2215
+ }
2216
+ }
2217
+ };
2218
+ }
2219
+ });
2220
+
1993
2221
  // src/languages/ruby.ts
1994
2222
  var ruby_exports = {};
1995
2223
  __export(ruby_exports, {
@@ -2142,6 +2370,44 @@ var init_scss = __esm({
2142
2370
  }
2143
2371
  });
2144
2372
 
2373
+ // src/languages/solidity.ts
2374
+ var solidity_exports = {};
2375
+ __export(solidity_exports, {
2376
+ solidity: () => solidity
2377
+ });
2378
+ var solidity;
2379
+ var init_solidity = __esm({
2380
+ "src/languages/solidity.ts"() {
2381
+ solidity = {
2382
+ slug: "solidity",
2383
+ publishedDate: "2015-07-30",
2384
+ extensions: [".sol"],
2385
+ author: "Gavin Wood / Ethereum Foundation / Solidity Team",
2386
+ website: "https://soliditylang.org",
2387
+ paradigms: ["contract-oriented", "object-oriented", "statically-typed", "imperative"],
2388
+ tooling: {
2389
+ runtimes: ["Ethereum Virtual Machine", "EVM-compatible chains"],
2390
+ packageManagers: ["npm", "Foundry", "Hardhat"],
2391
+ ecosystems: ["Ethereum", "Web3", "Smart Contracts", "Blockchain"]
2392
+ },
2393
+ version: "0.8.35",
2394
+ logo: "https://cdn.simpleicons.org/solidity/363636",
2395
+ i18n: {
2396
+ en: {
2397
+ name: "Solidity",
2398
+ description: "A statically typed smart contract language for Ethereum and EVM-compatible blockchains.",
2399
+ 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."
2400
+ },
2401
+ es: {
2402
+ name: "Solidity",
2403
+ description: "Un lenguaje tipado estaticamente para smart contracts en Ethereum y blockchains compatibles con EVM.",
2404
+ 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."
2405
+ }
2406
+ }
2407
+ };
2408
+ }
2409
+ });
2410
+
2145
2411
  // src/languages/sql.ts
2146
2412
  var sql_exports = {};
2147
2413
  __export(sql_exports, {
@@ -2708,6 +2974,7 @@ init_css();
2708
2974
  init_cuda();
2709
2975
  init_dart();
2710
2976
  init_dockerfile();
2977
+ init_elixir();
2711
2978
  init_elm();
2712
2979
  init_erlang();
2713
2980
  init_fortran();
@@ -2718,12 +2985,15 @@ init_go();
2718
2985
  init_gradle();
2719
2986
  init_graphql();
2720
2987
  init_groovy();
2988
+ init_haskell();
2989
+ init_hcl();
2721
2990
  init_html();
2722
2991
  init_ini();
2723
2992
  init_java();
2724
2993
  init_javascript();
2725
2994
  init_json();
2726
2995
  init_julia();
2996
+ init_jupyter_notebook();
2727
2997
  init_kotlin();
2728
2998
  init_less();
2729
2999
  init_lisp();
@@ -2736,6 +3006,7 @@ init_metal();
2736
3006
  init_nginx();
2737
3007
  init_nix();
2738
3008
  init_objective_c();
3009
+ init_ocaml();
2739
3010
  init_pascal();
2740
3011
  init_perl();
2741
3012
  init_php();
@@ -2743,10 +3014,12 @@ init_powershell();
2743
3014
  init_pug();
2744
3015
  init_python();
2745
3016
  init_r();
3017
+ init_razor();
2746
3018
  init_ruby();
2747
3019
  init_rust();
2748
3020
  init_scala();
2749
3021
  init_scss();
3022
+ init_solidity();
2750
3023
  init_sql();
2751
3024
  init_svelte();
2752
3025
  init_svg();
@@ -2781,6 +3054,7 @@ var languages = [
2781
3054
  cuda,
2782
3055
  dart,
2783
3056
  dockerfile,
3057
+ elixir,
2784
3058
  elm,
2785
3059
  erlang,
2786
3060
  fortran,
@@ -2791,11 +3065,14 @@ var languages = [
2791
3065
  glsl,
2792
3066
  graphql,
2793
3067
  groovy,
3068
+ haskell,
3069
+ hcl,
2794
3070
  html,
2795
3071
  ini,
2796
3072
  java,
2797
3073
  javascript,
2798
3074
  json,
3075
+ jupyterNotebook,
2799
3076
  julia,
2800
3077
  kotlin,
2801
3078
  less,
@@ -2809,6 +3086,7 @@ var languages = [
2809
3086
  svn,
2810
3087
  nginx,
2811
3088
  nix,
3089
+ ocaml,
2812
3090
  objectiveC,
2813
3091
  pascal,
2814
3092
  perl,
@@ -2817,10 +3095,12 @@ var languages = [
2817
3095
  pug,
2818
3096
  python,
2819
3097
  r,
3098
+ razor,
2820
3099
  ruby,
2821
3100
  rust,
2822
3101
  scala,
2823
3102
  scss,
3103
+ solidity,
2824
3104
  sql,
2825
3105
  svg,
2826
3106
  svelte,
@@ -2912,6 +3192,7 @@ var languageIndex = [
2912
3192
  { slug: "cuda", extensions: [".cu", ".cuh"] },
2913
3193
  { slug: "dart", extensions: [".dart"] },
2914
3194
  { slug: "dockerfile", extensions: ["Dockerfile", ".dockerfile"] },
3195
+ { slug: "elixir", extensions: [".ex", ".exs", ".eex", ".leex", ".heex"] },
2915
3196
  { slug: "elm", extensions: [".elm"] },
2916
3197
  {
2917
3198
  slug: "erlang",
@@ -2931,11 +3212,14 @@ var languageIndex = [
2931
3212
  },
2932
3213
  { slug: "graphql", extensions: [".graphql", ".gql", ".graphqls"] },
2933
3214
  { slug: "groovy", extensions: [".groovy", ".gvy", ".gy", ".gsh"] },
3215
+ { slug: "haskell", extensions: [".hs", ".lhs", ".hsc", ".hs-boot", ".hsig", ".cabal"] },
3216
+ { slug: "hcl", extensions: [".hcl", ".tf", ".tfvars", ".pkr.hcl", ".nomad"] },
2934
3217
  { slug: "html", extensions: [".html", ".htm"] },
2935
3218
  { slug: "ini", extensions: [".ini"] },
2936
3219
  { slug: "java", extensions: [".java"] },
2937
3220
  { slug: "javascript", extensions: [".js", ".mjs", ".cjs", ".jsx"] },
2938
3221
  { slug: "json", extensions: [".json"] },
3222
+ { slug: "jupyter-notebook", extensions: [".ipynb"] },
2939
3223
  { slug: "julia", extensions: [".jl"] },
2940
3224
  { slug: "kotlin", extensions: [".kt", ".kts"] },
2941
3225
  { slug: "less", extensions: [".less"] },
@@ -2949,6 +3233,7 @@ var languageIndex = [
2949
3233
  { slug: "svn", extensions: [".svn", "svnserve.conf"] },
2950
3234
  { slug: "nginx", extensions: ["nginx.conf", ".nginx", ".conf"] },
2951
3235
  { slug: "nix", extensions: [".nix"] },
3236
+ { slug: "ocaml", extensions: [".ml", ".mli", ".mll", ".mly", ".mlt", ".eliom", ".eliomi"] },
2952
3237
  { slug: "objective-c", extensions: [".m", ".mm"] },
2953
3238
  { slug: "pascal", extensions: [".pas", ".pp", ".inc", ".lpr", ".dpr", ".dfm"] },
2954
3239
  { slug: "perl", extensions: [".pl", ".pm", ".pod", ".t", ".psgi"] },
@@ -2957,6 +3242,7 @@ var languageIndex = [
2957
3242
  { slug: "pug", extensions: [".pug", ".jade"] },
2958
3243
  { slug: "python", extensions: [".py", ".pyw"] },
2959
3244
  { slug: "r", extensions: [".r", ".R", ".rmd", ".Rmd", ".qmd", ".Rprofile"] },
3245
+ { slug: "razor", extensions: [".cshtml", ".razor"] },
2960
3246
  {
2961
3247
  slug: "ruby",
2962
3248
  extensions: [".rb", ".rbw", ".rake", ".gemspec", "Gemfile", "Rakefile", "config.ru"]
@@ -2964,6 +3250,7 @@ var languageIndex = [
2964
3250
  { slug: "rust", extensions: [".rs"] },
2965
3251
  { slug: "scala", extensions: [".scala", ".sc"] },
2966
3252
  { slug: "scss", extensions: [".scss", ".sass"] },
3253
+ { slug: "solidity", extensions: [".sol"] },
2967
3254
  { slug: "sql", extensions: [".sql"] },
2968
3255
  { slug: "svg", extensions: [".svg", ".svgz"] },
2969
3256
  { slug: "svelte", extensions: [".svelte"] },
@@ -3001,6 +3288,7 @@ var languageLoaders = {
3001
3288
  cuda: () => Promise.resolve().then(() => (init_cuda(), cuda_exports)).then((module) => module.cuda),
3002
3289
  dart: () => Promise.resolve().then(() => (init_dart(), dart_exports)).then((module) => module.dart),
3003
3290
  dockerfile: () => Promise.resolve().then(() => (init_dockerfile(), dockerfile_exports)).then((module) => module.dockerfile),
3291
+ elixir: () => Promise.resolve().then(() => (init_elixir(), elixir_exports)).then((module) => module.elixir),
3004
3292
  elm: () => Promise.resolve().then(() => (init_elm(), elm_exports)).then((module) => module.elm),
3005
3293
  erlang: () => Promise.resolve().then(() => (init_erlang(), erlang_exports)).then((module) => module.erlang),
3006
3294
  fortran: () => Promise.resolve().then(() => (init_fortran(), fortran_exports)).then((module) => module.fortran),
@@ -3011,11 +3299,14 @@ var languageLoaders = {
3011
3299
  glsl: () => Promise.resolve().then(() => (init_glsl(), glsl_exports)).then((module) => module.glsl),
3012
3300
  graphql: () => Promise.resolve().then(() => (init_graphql(), graphql_exports)).then((module) => module.graphql),
3013
3301
  groovy: () => Promise.resolve().then(() => (init_groovy(), groovy_exports)).then((module) => module.groovy),
3302
+ haskell: () => Promise.resolve().then(() => (init_haskell(), haskell_exports)).then((module) => module.haskell),
3303
+ hcl: () => Promise.resolve().then(() => (init_hcl(), hcl_exports)).then((module) => module.hcl),
3014
3304
  html: () => Promise.resolve().then(() => (init_html(), html_exports)).then((module) => module.html),
3015
3305
  ini: () => Promise.resolve().then(() => (init_ini(), ini_exports)).then((module) => module.ini),
3016
3306
  java: () => Promise.resolve().then(() => (init_java(), java_exports)).then((module) => module.java),
3017
3307
  javascript: () => Promise.resolve().then(() => (init_javascript(), javascript_exports)).then((module) => module.javascript),
3018
3308
  json: () => Promise.resolve().then(() => (init_json(), json_exports)).then((module) => module.json),
3309
+ "jupyter-notebook": () => Promise.resolve().then(() => (init_jupyter_notebook(), jupyter_notebook_exports)).then((module) => module.jupyterNotebook),
3019
3310
  julia: () => Promise.resolve().then(() => (init_julia(), julia_exports)).then((module) => module.julia),
3020
3311
  kotlin: () => Promise.resolve().then(() => (init_kotlin(), kotlin_exports)).then((module) => module.kotlin),
3021
3312
  less: () => Promise.resolve().then(() => (init_less(), less_exports)).then((module) => module.less),
@@ -3029,6 +3320,7 @@ var languageLoaders = {
3029
3320
  svn: () => Promise.resolve().then(() => (init_svn(), svn_exports)).then((module) => module.svn),
3030
3321
  nginx: () => Promise.resolve().then(() => (init_nginx(), nginx_exports)).then((module) => module.nginx),
3031
3322
  nix: () => Promise.resolve().then(() => (init_nix(), nix_exports)).then((module) => module.nix),
3323
+ ocaml: () => Promise.resolve().then(() => (init_ocaml(), ocaml_exports)).then((module) => module.ocaml),
3032
3324
  "objective-c": () => Promise.resolve().then(() => (init_objective_c(), objective_c_exports)).then((module) => module.objectiveC),
3033
3325
  pascal: () => Promise.resolve().then(() => (init_pascal(), pascal_exports)).then((module) => module.pascal),
3034
3326
  perl: () => Promise.resolve().then(() => (init_perl(), perl_exports)).then((module) => module.perl),
@@ -3037,10 +3329,12 @@ var languageLoaders = {
3037
3329
  pug: () => Promise.resolve().then(() => (init_pug(), pug_exports)).then((module) => module.pug),
3038
3330
  python: () => Promise.resolve().then(() => (init_python(), python_exports)).then((module) => module.python),
3039
3331
  r: () => Promise.resolve().then(() => (init_r(), r_exports)).then((module) => module.r),
3332
+ razor: () => Promise.resolve().then(() => (init_razor(), razor_exports)).then((module) => module.razor),
3040
3333
  ruby: () => Promise.resolve().then(() => (init_ruby(), ruby_exports)).then((module) => module.ruby),
3041
3334
  rust: () => Promise.resolve().then(() => (init_rust(), rust_exports)).then((module) => module.rust),
3042
3335
  scala: () => Promise.resolve().then(() => (init_scala(), scala_exports)).then((module) => module.scala),
3043
3336
  scss: () => Promise.resolve().then(() => (init_scss(), scss_exports)).then((module) => module.scss),
3337
+ solidity: () => Promise.resolve().then(() => (init_solidity(), solidity_exports)).then((module) => module.solidity),
3044
3338
  sql: () => Promise.resolve().then(() => (init_sql(), sql_exports)).then((module) => module.sql),
3045
3339
  svelte: () => Promise.resolve().then(() => (init_svelte(), svelte_exports)).then((module) => module.svelte),
3046
3340
  svg: () => Promise.resolve().then(() => (init_svg(), svg_exports)).then((module) => module.svg),
@@ -3170,6 +3464,7 @@ init_css();
3170
3464
  init_cuda();
3171
3465
  init_dart();
3172
3466
  init_dockerfile();
3467
+ init_elixir();
3173
3468
  init_elm();
3174
3469
  init_erlang();
3175
3470
  init_fortran();
@@ -3180,11 +3475,14 @@ init_gradle();
3180
3475
  init_glsl();
3181
3476
  init_graphql();
3182
3477
  init_groovy();
3478
+ init_haskell();
3479
+ init_hcl();
3183
3480
  init_html();
3184
3481
  init_ini();
3185
3482
  init_java();
3186
3483
  init_javascript();
3187
3484
  init_json();
3485
+ init_jupyter_notebook();
3188
3486
  init_julia();
3189
3487
  init_kotlin();
3190
3488
  init_less();
@@ -3197,6 +3495,7 @@ init_meson();
3197
3495
  init_metal();
3198
3496
  init_nginx();
3199
3497
  init_nix();
3498
+ init_ocaml();
3200
3499
  init_objective_c();
3201
3500
  init_pascal();
3202
3501
  init_perl();
@@ -3205,10 +3504,12 @@ init_powershell();
3205
3504
  init_pug();
3206
3505
  init_python();
3207
3506
  init_r();
3507
+ init_razor();
3208
3508
  init_ruby();
3209
3509
  init_rust();
3210
3510
  init_scala();
3211
3511
  init_scss();
3512
+ init_solidity();
3212
3513
  init_sql();
3213
3514
  init_svg();
3214
3515
  init_svn();
@@ -3225,6 +3526,6 @@ init_yaml();
3225
3526
  init_zig();
3226
3527
  init_zsh();
3227
3528
 
3228
- export { abap, actionscript, api, asp, assembly, astro, bash, batch, c, cmake, cobol, coffeescript, cpp, crystal, csharp, css, cuda, dart, detectLanguage, detectLanguages, dockerfile, elm, erlang, fortran, fsharp, git, glsl, go, gradle, graphql, groovy, html, ini, java, javascript, json, julia, kotlin, languages, less, lisp, localizeLanguage, lua, makefile, markdown, matlab, meson, metal, nginx, nix, objectiveC, pascal, perl, php, powershell, pug, python, r, ruby, rust, scala, scss, sql, svelte, svg, svn, swift, toml, typescript, visualBasic, vue, webassembly, xaml, xml, yaml, zig, zsh };
3529
+ export { abap, actionscript, api, asp, assembly, astro, bash, batch, c, cmake, cobol, coffeescript, cpp, crystal, csharp, css, cuda, dart, detectLanguage, detectLanguages, dockerfile, elixir, elm, erlang, fortran, fsharp, git, glsl, go, gradle, graphql, groovy, haskell, hcl, html, ini, java, javascript, json, julia, jupyterNotebook, kotlin, languages, less, lisp, localizeLanguage, lua, makefile, markdown, matlab, meson, metal, nginx, nix, objectiveC, ocaml, pascal, perl, php, powershell, pug, python, r, razor, ruby, rust, scala, scss, solidity, sql, svelte, svg, svn, swift, toml, typescript, visualBasic, vue, webassembly, xaml, xml, yaml, zig, zsh };
3229
3530
  //# sourceMappingURL=index.js.map
3230
3531
  //# sourceMappingURL=index.js.map