code-languages 1.13.0 → 1.15.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 (48) hide show
  1. package/README.md +21 -0
  2. package/dist/api.cjs +210 -0
  3. package/dist/api.cjs.map +1 -1
  4. package/dist/api.d.cts +135 -0
  5. package/dist/api.d.ts +135 -0
  6. package/dist/api.js +210 -0
  7. package/dist/api.js.map +1 -1
  8. package/dist/detect.cjs +150 -0
  9. package/dist/detect.cjs.map +1 -1
  10. package/dist/detect.js +150 -0
  11. package/dist/detect.js.map +1 -1
  12. package/dist/index.cjs +215 -0
  13. package/dist/index.cjs.map +1 -1
  14. package/dist/index.d.cts +135 -0
  15. package/dist/index.d.ts +135 -0
  16. package/dist/index.js +216 -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/jupyter-notebook.cjs +34 -0
  31. package/dist/languages/jupyter-notebook.cjs.map +1 -0
  32. package/dist/languages/jupyter-notebook.d.cts +29 -0
  33. package/dist/languages/jupyter-notebook.d.ts +29 -0
  34. package/dist/languages/jupyter-notebook.js +32 -0
  35. package/dist/languages/jupyter-notebook.js.map +1 -0
  36. package/dist/languages/ocaml.cjs +34 -0
  37. package/dist/languages/ocaml.cjs.map +1 -0
  38. package/dist/languages/ocaml.d.cts +29 -0
  39. package/dist/languages/ocaml.d.ts +29 -0
  40. package/dist/languages/ocaml.js +32 -0
  41. package/dist/languages/ocaml.js.map +1 -0
  42. package/dist/languages/protobuf.cjs +34 -0
  43. package/dist/languages/protobuf.cjs.map +1 -0
  44. package/dist/languages/protobuf.d.cts +29 -0
  45. package/dist/languages/protobuf.d.ts +29 -0
  46. package/dist/languages/protobuf.js +32 -0
  47. package/dist/languages/protobuf.js.map +1 -0
  48. package/package.json +26 -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,44 @@ 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
+
1065
1141
  // src/languages/hcl.ts
1066
1142
  var hcl_exports = {};
1067
1143
  __export(hcl_exports, {
@@ -1316,6 +1392,44 @@ var init_julia = __esm({
1316
1392
  }
1317
1393
  });
1318
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
+
1319
1433
  // src/languages/kotlin.ts
1320
1434
  var kotlin_exports = {};
1321
1435
  __export(kotlin_exports, {
@@ -1764,6 +1878,44 @@ var init_objective_c = __esm({
1764
1878
  }
1765
1879
  });
1766
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
+
1767
1919
  // src/languages/pascal.ts
1768
1920
  var pascal_exports = {};
1769
1921
  __export(pascal_exports, {
@@ -1916,6 +2068,44 @@ var init_powershell = __esm({
1916
2068
  }
1917
2069
  });
1918
2070
 
2071
+ // src/languages/protobuf.ts
2072
+ var protobuf_exports = {};
2073
+ __export(protobuf_exports, {
2074
+ protobuf: () => exports.protobuf
2075
+ });
2076
+ exports.protobuf = void 0;
2077
+ var init_protobuf = __esm({
2078
+ "src/languages/protobuf.ts"() {
2079
+ exports.protobuf = {
2080
+ slug: "protobuf",
2081
+ publishedDate: "2008-07-07",
2082
+ extensions: [".proto"],
2083
+ author: "Google",
2084
+ website: "https://protobuf.dev",
2085
+ paradigms: ["interface-definition", "schema", "declarative", "data-serialization"],
2086
+ tooling: {
2087
+ runtimes: ["Protocol Buffers Runtime", "gRPC"],
2088
+ packageManagers: ["Buf", "npm", "Maven", "Go modules", "NuGet", "PyPI"],
2089
+ ecosystems: ["gRPC", "APIs", "Microservices", "Data Serialization"]
2090
+ },
2091
+ version: "34.1",
2092
+ logo: "https://cdn.simpleicons.org/google/4285F4",
2093
+ i18n: {
2094
+ en: {
2095
+ name: "Protocol Buffers",
2096
+ description: "Google's language-neutral schema format for structured data serialization and service APIs.",
2097
+ longDescription: "Protocol Buffers is a language-neutral, platform-neutral mechanism for defining structured data schemas and generating strongly typed code in many programming languages. `.proto` files describe messages, fields, enums, services, packages, imports, options, and RPC contracts.\n\nIt is widely used with gRPC, microservices, distributed systems, APIs, telemetry, configuration, event streams, and storage formats that need compact binary serialization and stable cross-language contracts."
2098
+ },
2099
+ es: {
2100
+ name: "Protocol Buffers",
2101
+ description: "El formato de schemas neutral de Google para serializacion de datos estructurados y APIs de servicios.",
2102
+ longDescription: "Protocol Buffers es un mecanismo neutral en lenguaje y plataforma para definir schemas de datos estructurados y generar codigo tipado en muchos lenguajes de programacion. Los archivos `.proto` describen mensajes, campos, enums, servicios, paquetes, imports, opciones y contratos RPC.\n\nSe usa ampliamente con gRPC, microservicios, sistemas distribuidos, APIs, telemetria, configuracion, flujos de eventos y formatos de almacenamiento que necesitan serializacion binaria compacta y contratos estables entre lenguajes."
2103
+ }
2104
+ }
2105
+ };
2106
+ }
2107
+ });
2108
+
1919
2109
  // src/languages/pug.ts
1920
2110
  var pug_exports = {};
1921
2111
  __export(pug_exports, {
@@ -2824,6 +3014,7 @@ init_css();
2824
3014
  init_cuda();
2825
3015
  init_dart();
2826
3016
  init_dockerfile();
3017
+ init_elixir();
2827
3018
  init_elm();
2828
3019
  init_erlang();
2829
3020
  init_fortran();
@@ -2834,6 +3025,7 @@ init_go();
2834
3025
  init_gradle();
2835
3026
  init_graphql();
2836
3027
  init_groovy();
3028
+ init_haskell();
2837
3029
  init_hcl();
2838
3030
  init_html();
2839
3031
  init_ini();
@@ -2841,6 +3033,7 @@ init_java();
2841
3033
  init_javascript();
2842
3034
  init_json();
2843
3035
  init_julia();
3036
+ init_jupyter_notebook();
2844
3037
  init_kotlin();
2845
3038
  init_less();
2846
3039
  init_lisp();
@@ -2853,10 +3046,12 @@ init_metal();
2853
3046
  init_nginx();
2854
3047
  init_nix();
2855
3048
  init_objective_c();
3049
+ init_ocaml();
2856
3050
  init_pascal();
2857
3051
  init_perl();
2858
3052
  init_php();
2859
3053
  init_powershell();
3054
+ init_protobuf();
2860
3055
  init_pug();
2861
3056
  init_python();
2862
3057
  init_r();
@@ -2900,6 +3095,7 @@ var languages = [
2900
3095
  exports.cuda,
2901
3096
  exports.dart,
2902
3097
  exports.dockerfile,
3098
+ exports.elixir,
2903
3099
  exports.elm,
2904
3100
  exports.erlang,
2905
3101
  exports.fortran,
@@ -2910,12 +3106,14 @@ var languages = [
2910
3106
  exports.glsl,
2911
3107
  exports.graphql,
2912
3108
  exports.groovy,
3109
+ exports.haskell,
2913
3110
  exports.hcl,
2914
3111
  exports.html,
2915
3112
  exports.ini,
2916
3113
  exports.java,
2917
3114
  exports.javascript,
2918
3115
  exports.json,
3116
+ exports.jupyterNotebook,
2919
3117
  exports.julia,
2920
3118
  exports.kotlin,
2921
3119
  exports.less,
@@ -2929,11 +3127,13 @@ var languages = [
2929
3127
  exports.svn,
2930
3128
  exports.nginx,
2931
3129
  exports.nix,
3130
+ exports.ocaml,
2932
3131
  exports.objectiveC,
2933
3132
  exports.pascal,
2934
3133
  exports.perl,
2935
3134
  exports.php,
2936
3135
  exports.powershell,
3136
+ exports.protobuf,
2937
3137
  exports.pug,
2938
3138
  exports.python,
2939
3139
  exports.r,
@@ -3034,6 +3234,7 @@ var languageIndex = [
3034
3234
  { slug: "cuda", extensions: [".cu", ".cuh"] },
3035
3235
  { slug: "dart", extensions: [".dart"] },
3036
3236
  { slug: "dockerfile", extensions: ["Dockerfile", ".dockerfile"] },
3237
+ { slug: "elixir", extensions: [".ex", ".exs", ".eex", ".leex", ".heex"] },
3037
3238
  { slug: "elm", extensions: [".elm"] },
3038
3239
  {
3039
3240
  slug: "erlang",
@@ -3053,12 +3254,14 @@ var languageIndex = [
3053
3254
  },
3054
3255
  { slug: "graphql", extensions: [".graphql", ".gql", ".graphqls"] },
3055
3256
  { slug: "groovy", extensions: [".groovy", ".gvy", ".gy", ".gsh"] },
3257
+ { slug: "haskell", extensions: [".hs", ".lhs", ".hsc", ".hs-boot", ".hsig", ".cabal"] },
3056
3258
  { slug: "hcl", extensions: [".hcl", ".tf", ".tfvars", ".pkr.hcl", ".nomad"] },
3057
3259
  { slug: "html", extensions: [".html", ".htm"] },
3058
3260
  { slug: "ini", extensions: [".ini"] },
3059
3261
  { slug: "java", extensions: [".java"] },
3060
3262
  { slug: "javascript", extensions: [".js", ".mjs", ".cjs", ".jsx"] },
3061
3263
  { slug: "json", extensions: [".json"] },
3264
+ { slug: "jupyter-notebook", extensions: [".ipynb"] },
3062
3265
  { slug: "julia", extensions: [".jl"] },
3063
3266
  { slug: "kotlin", extensions: [".kt", ".kts"] },
3064
3267
  { slug: "less", extensions: [".less"] },
@@ -3072,11 +3275,13 @@ var languageIndex = [
3072
3275
  { slug: "svn", extensions: [".svn", "svnserve.conf"] },
3073
3276
  { slug: "nginx", extensions: ["nginx.conf", ".nginx", ".conf"] },
3074
3277
  { slug: "nix", extensions: [".nix"] },
3278
+ { slug: "ocaml", extensions: [".ml", ".mli", ".mll", ".mly", ".mlt", ".eliom", ".eliomi"] },
3075
3279
  { slug: "objective-c", extensions: [".m", ".mm"] },
3076
3280
  { slug: "pascal", extensions: [".pas", ".pp", ".inc", ".lpr", ".dpr", ".dfm"] },
3077
3281
  { slug: "perl", extensions: [".pl", ".pm", ".pod", ".t", ".psgi"] },
3078
3282
  { slug: "php", extensions: [".php", ".phtml", ".php3", ".php4", ".php5", ".phps"] },
3079
3283
  { slug: "powershell", extensions: [".ps1", ".psm1", ".psd1", ".ps1xml"] },
3284
+ { slug: "protobuf", extensions: [".proto"] },
3080
3285
  { slug: "pug", extensions: [".pug", ".jade"] },
3081
3286
  { slug: "python", extensions: [".py", ".pyw"] },
3082
3287
  { slug: "r", extensions: [".r", ".R", ".rmd", ".Rmd", ".qmd", ".Rprofile"] },
@@ -3126,6 +3331,7 @@ var languageLoaders = {
3126
3331
  cuda: () => Promise.resolve().then(() => (init_cuda(), cuda_exports)).then((module) => module.cuda),
3127
3332
  dart: () => Promise.resolve().then(() => (init_dart(), dart_exports)).then((module) => module.dart),
3128
3333
  dockerfile: () => Promise.resolve().then(() => (init_dockerfile(), dockerfile_exports)).then((module) => module.dockerfile),
3334
+ elixir: () => Promise.resolve().then(() => (init_elixir(), elixir_exports)).then((module) => module.elixir),
3129
3335
  elm: () => Promise.resolve().then(() => (init_elm(), elm_exports)).then((module) => module.elm),
3130
3336
  erlang: () => Promise.resolve().then(() => (init_erlang(), erlang_exports)).then((module) => module.erlang),
3131
3337
  fortran: () => Promise.resolve().then(() => (init_fortran(), fortran_exports)).then((module) => module.fortran),
@@ -3136,12 +3342,14 @@ var languageLoaders = {
3136
3342
  glsl: () => Promise.resolve().then(() => (init_glsl(), glsl_exports)).then((module) => module.glsl),
3137
3343
  graphql: () => Promise.resolve().then(() => (init_graphql(), graphql_exports)).then((module) => module.graphql),
3138
3344
  groovy: () => Promise.resolve().then(() => (init_groovy(), groovy_exports)).then((module) => module.groovy),
3345
+ haskell: () => Promise.resolve().then(() => (init_haskell(), haskell_exports)).then((module) => module.haskell),
3139
3346
  hcl: () => Promise.resolve().then(() => (init_hcl(), hcl_exports)).then((module) => module.hcl),
3140
3347
  html: () => Promise.resolve().then(() => (init_html(), html_exports)).then((module) => module.html),
3141
3348
  ini: () => Promise.resolve().then(() => (init_ini(), ini_exports)).then((module) => module.ini),
3142
3349
  java: () => Promise.resolve().then(() => (init_java(), java_exports)).then((module) => module.java),
3143
3350
  javascript: () => Promise.resolve().then(() => (init_javascript(), javascript_exports)).then((module) => module.javascript),
3144
3351
  json: () => Promise.resolve().then(() => (init_json(), json_exports)).then((module) => module.json),
3352
+ "jupyter-notebook": () => Promise.resolve().then(() => (init_jupyter_notebook(), jupyter_notebook_exports)).then((module) => module.jupyterNotebook),
3145
3353
  julia: () => Promise.resolve().then(() => (init_julia(), julia_exports)).then((module) => module.julia),
3146
3354
  kotlin: () => Promise.resolve().then(() => (init_kotlin(), kotlin_exports)).then((module) => module.kotlin),
3147
3355
  less: () => Promise.resolve().then(() => (init_less(), less_exports)).then((module) => module.less),
@@ -3155,11 +3363,13 @@ var languageLoaders = {
3155
3363
  svn: () => Promise.resolve().then(() => (init_svn(), svn_exports)).then((module) => module.svn),
3156
3364
  nginx: () => Promise.resolve().then(() => (init_nginx(), nginx_exports)).then((module) => module.nginx),
3157
3365
  nix: () => Promise.resolve().then(() => (init_nix(), nix_exports)).then((module) => module.nix),
3366
+ ocaml: () => Promise.resolve().then(() => (init_ocaml(), ocaml_exports)).then((module) => module.ocaml),
3158
3367
  "objective-c": () => Promise.resolve().then(() => (init_objective_c(), objective_c_exports)).then((module) => module.objectiveC),
3159
3368
  pascal: () => Promise.resolve().then(() => (init_pascal(), pascal_exports)).then((module) => module.pascal),
3160
3369
  perl: () => Promise.resolve().then(() => (init_perl(), perl_exports)).then((module) => module.perl),
3161
3370
  php: () => Promise.resolve().then(() => (init_php(), php_exports)).then((module) => module.php),
3162
3371
  powershell: () => Promise.resolve().then(() => (init_powershell(), powershell_exports)).then((module) => module.powershell),
3372
+ protobuf: () => Promise.resolve().then(() => (init_protobuf(), protobuf_exports)).then((module) => module.protobuf),
3163
3373
  pug: () => Promise.resolve().then(() => (init_pug(), pug_exports)).then((module) => module.pug),
3164
3374
  python: () => Promise.resolve().then(() => (init_python(), python_exports)).then((module) => module.python),
3165
3375
  r: () => Promise.resolve().then(() => (init_r(), r_exports)).then((module) => module.r),
@@ -3298,6 +3508,7 @@ init_css();
3298
3508
  init_cuda();
3299
3509
  init_dart();
3300
3510
  init_dockerfile();
3511
+ init_elixir();
3301
3512
  init_elm();
3302
3513
  init_erlang();
3303
3514
  init_fortran();
@@ -3308,12 +3519,14 @@ init_gradle();
3308
3519
  init_glsl();
3309
3520
  init_graphql();
3310
3521
  init_groovy();
3522
+ init_haskell();
3311
3523
  init_hcl();
3312
3524
  init_html();
3313
3525
  init_ini();
3314
3526
  init_java();
3315
3527
  init_javascript();
3316
3528
  init_json();
3529
+ init_jupyter_notebook();
3317
3530
  init_julia();
3318
3531
  init_kotlin();
3319
3532
  init_less();
@@ -3326,11 +3539,13 @@ init_meson();
3326
3539
  init_metal();
3327
3540
  init_nginx();
3328
3541
  init_nix();
3542
+ init_ocaml();
3329
3543
  init_objective_c();
3330
3544
  init_pascal();
3331
3545
  init_perl();
3332
3546
  init_php();
3333
3547
  init_powershell();
3548
+ init_protobuf();
3334
3549
  init_pug();
3335
3550
  init_python();
3336
3551
  init_r();