code-languages 1.16.1 → 1.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -1
- package/dist/api.cjs +211 -1
- package/dist/api.cjs.map +1 -1
- package/dist/api.d.cts +135 -0
- package/dist/api.d.ts +135 -0
- package/dist/api.js +211 -1
- package/dist/api.js.map +1 -1
- package/dist/detect.cjs +151 -1
- package/dist/detect.cjs.map +1 -1
- package/dist/detect.js +151 -1
- package/dist/detect.js.map +1 -1
- package/dist/index.cjs +216 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +135 -0
- package/dist/index.d.ts +135 -0
- package/dist/index.js +217 -2
- package/dist/index.js.map +1 -1
- package/dist/languages/rego.cjs +34 -0
- package/dist/languages/rego.cjs.map +1 -0
- package/dist/languages/rego.d.cts +29 -0
- package/dist/languages/rego.d.ts +29 -0
- package/dist/languages/rego.js +32 -0
- package/dist/languages/rego.js.map +1 -0
- package/dist/languages/tcl.cjs +1 -1
- package/dist/languages/tcl.cjs.map +1 -1
- package/dist/languages/tcl.js +1 -1
- package/dist/languages/tcl.js.map +1 -1
- package/dist/languages/tex.cjs +34 -0
- package/dist/languages/tex.cjs.map +1 -0
- package/dist/languages/tex.d.cts +29 -0
- package/dist/languages/tex.d.ts +29 -0
- package/dist/languages/tex.js +32 -0
- package/dist/languages/tex.js.map +1 -0
- package/dist/languages/twig.cjs +34 -0
- package/dist/languages/twig.cjs.map +1 -0
- package/dist/languages/twig.d.cts +29 -0
- package/dist/languages/twig.d.ts +29 -0
- package/dist/languages/twig.js +32 -0
- package/dist/languages/twig.js.map +1 -0
- package/dist/languages/xquery.cjs +34 -0
- package/dist/languages/xquery.cjs.map +1 -0
- package/dist/languages/xquery.d.cts +29 -0
- package/dist/languages/xquery.d.ts +29 -0
- package/dist/languages/xquery.js +32 -0
- package/dist/languages/xquery.js.map +1 -0
- package/dist/languages/xslt.cjs +34 -0
- package/dist/languages/xslt.cjs.map +1 -0
- package/dist/languages/xslt.d.cts +29 -0
- package/dist/languages/xslt.d.ts +29 -0
- package/dist/languages/xslt.js +32 -0
- package/dist/languages/xslt.js.map +1 -0
- package/package.json +26 -1
package/dist/index.js
CHANGED
|
@@ -2636,6 +2636,44 @@ var init_razor = __esm({
|
|
|
2636
2636
|
}
|
|
2637
2637
|
});
|
|
2638
2638
|
|
|
2639
|
+
// src/languages/rego.ts
|
|
2640
|
+
var rego_exports = {};
|
|
2641
|
+
__export(rego_exports, {
|
|
2642
|
+
rego: () => rego
|
|
2643
|
+
});
|
|
2644
|
+
var rego;
|
|
2645
|
+
var init_rego = __esm({
|
|
2646
|
+
"src/languages/rego.ts"() {
|
|
2647
|
+
rego = {
|
|
2648
|
+
slug: "rego",
|
|
2649
|
+
publishedDate: "2016-01-01",
|
|
2650
|
+
extensions: [".rego"],
|
|
2651
|
+
author: "Open Policy Agent contributors / Styra",
|
|
2652
|
+
website: "https://www.openpolicyagent.org/docs/latest/policy-language/",
|
|
2653
|
+
paradigms: ["declarative", "logic", "policy-as-code", "query"],
|
|
2654
|
+
tooling: {
|
|
2655
|
+
runtimes: ["Open Policy Agent", "Conftest", "Gatekeeper", "Regal"],
|
|
2656
|
+
packageManagers: ["OPA bundles"],
|
|
2657
|
+
ecosystems: ["Policy as Code", "Kubernetes", "Cloud Native", "Authorization"]
|
|
2658
|
+
},
|
|
2659
|
+
version: "OPA 1.15.2",
|
|
2660
|
+
logo: "https://raw.githubusercontent.com/open-policy-agent/opa/main/logo/logo.svg",
|
|
2661
|
+
i18n: {
|
|
2662
|
+
en: {
|
|
2663
|
+
name: "Rego",
|
|
2664
|
+
description: "Open Policy Agent's declarative policy language for authorization and policy as code.",
|
|
2665
|
+
longDescription: "Rego is the declarative policy language used by Open Policy Agent to express rules, decisions, constraints, data queries, and authorization logic. It is designed around structured data such as JSON and lets policies evaluate inputs against rules, sets, objects, comprehensions, and built-in functions.\n\nIt is used for Kubernetes admission control, service authorization, infrastructure policy checks, CI validation, API gateways, compliance automation, and cloud-native systems that need policies kept separate from application code."
|
|
2666
|
+
},
|
|
2667
|
+
es: {
|
|
2668
|
+
name: "Rego",
|
|
2669
|
+
description: "El lenguaje declarativo de Open Policy Agent para autorizacion y policy as code.",
|
|
2670
|
+
longDescription: "Rego es el lenguaje declarativo de politicas usado por Open Policy Agent para expresar reglas, decisiones, restricciones, consultas de datos y logica de autorizacion. Esta disenado alrededor de datos estructurados como JSON y permite evaluar entradas contra reglas, conjuntos, objetos, comprehensions y funciones integradas.\n\nSe usa para admission control en Kubernetes, autorizacion de servicios, validaciones de politicas de infraestructura, CI, gateways de APIs, automatizacion de cumplimiento y sistemas cloud native que necesitan mantener las politicas separadas del codigo de aplicacion."
|
|
2671
|
+
}
|
|
2672
|
+
}
|
|
2673
|
+
};
|
|
2674
|
+
}
|
|
2675
|
+
});
|
|
2676
|
+
|
|
2639
2677
|
// src/languages/ruby.ts
|
|
2640
2678
|
var ruby_exports = {};
|
|
2641
2679
|
__export(ruby_exports, {
|
|
@@ -3030,7 +3068,7 @@ var init_tcl = __esm({
|
|
|
3030
3068
|
ecosystems: ["GUI Applications", "EDA", "Automation", "Embedded Scripting"]
|
|
3031
3069
|
},
|
|
3032
3070
|
version: "9.0.3",
|
|
3033
|
-
logo: "https://
|
|
3071
|
+
logo: "https://commons.wikimedia.org/wiki/Special:FilePath/Tcl.svg",
|
|
3034
3072
|
i18n: {
|
|
3035
3073
|
en: {
|
|
3036
3074
|
name: "Tcl/Tk",
|
|
@@ -3047,6 +3085,44 @@ var init_tcl = __esm({
|
|
|
3047
3085
|
}
|
|
3048
3086
|
});
|
|
3049
3087
|
|
|
3088
|
+
// src/languages/tex.ts
|
|
3089
|
+
var tex_exports = {};
|
|
3090
|
+
__export(tex_exports, {
|
|
3091
|
+
tex: () => tex
|
|
3092
|
+
});
|
|
3093
|
+
var tex;
|
|
3094
|
+
var init_tex = __esm({
|
|
3095
|
+
"src/languages/tex.ts"() {
|
|
3096
|
+
tex = {
|
|
3097
|
+
slug: "tex",
|
|
3098
|
+
publishedDate: "1978-01-01",
|
|
3099
|
+
extensions: [".tex", ".sty", ".cls", ".dtx", ".ins", ".ltx"],
|
|
3100
|
+
author: "Donald Knuth",
|
|
3101
|
+
website: "https://www.tug.org/texlive/",
|
|
3102
|
+
paradigms: ["markup", "typesetting", "macro", "declarative"],
|
|
3103
|
+
tooling: {
|
|
3104
|
+
runtimes: ["TeX Live", "MiKTeX", "pdfTeX", "XeTeX", "LuaTeX"],
|
|
3105
|
+
packageManagers: ["tlmgr", "MiKTeX Console", "CTAN"],
|
|
3106
|
+
ecosystems: ["Publishing", "Academic Writing", "Scientific Documents", "Print"]
|
|
3107
|
+
},
|
|
3108
|
+
version: "TeX Live 2026",
|
|
3109
|
+
logo: "https://cdn.simpleicons.org/latex/008080",
|
|
3110
|
+
i18n: {
|
|
3111
|
+
en: {
|
|
3112
|
+
name: "TeX",
|
|
3113
|
+
description: "Donald Knuth's macro-based typesetting system for precise technical and scientific documents.",
|
|
3114
|
+
longDescription: "TeX is a programmable typesetting system built around macros, boxes, glue, mathematical layout, and precise page composition. Plain TeX, LaTeX, ConTeXt, and related formats build on the TeX engine family to produce high-quality documents from text source files.\n\nIt is used for academic papers, books, technical manuals, mathematics, physics, computer science publications, theses, and publishing workflows where reproducible typography and long-term source stability matter."
|
|
3115
|
+
},
|
|
3116
|
+
es: {
|
|
3117
|
+
name: "TeX",
|
|
3118
|
+
description: "El sistema de composicion tipografica basado en macros de Donald Knuth para documentos tecnicos.",
|
|
3119
|
+
longDescription: "TeX es un sistema programable de composicion tipografica basado en macros, cajas, espaciado flexible, notacion matematica y composicion precisa de paginas. Plain TeX, LaTeX, ConTeXt y formatos relacionados se apoyan en la familia de motores TeX para producir documentos de alta calidad desde archivos fuente de texto.\n\nSe usa para articulos academicos, libros, manuales tecnicos, matematicas, fisica, publicaciones de computacion, tesis y flujos editoriales donde importan la tipografia reproducible y la estabilidad del codigo fuente a largo plazo."
|
|
3120
|
+
}
|
|
3121
|
+
}
|
|
3122
|
+
};
|
|
3123
|
+
}
|
|
3124
|
+
});
|
|
3125
|
+
|
|
3050
3126
|
// src/languages/toml.ts
|
|
3051
3127
|
var toml_exports = {};
|
|
3052
3128
|
__export(toml_exports, {
|
|
@@ -3080,6 +3156,44 @@ var init_toml = __esm({
|
|
|
3080
3156
|
}
|
|
3081
3157
|
});
|
|
3082
3158
|
|
|
3159
|
+
// src/languages/twig.ts
|
|
3160
|
+
var twig_exports = {};
|
|
3161
|
+
__export(twig_exports, {
|
|
3162
|
+
twig: () => twig
|
|
3163
|
+
});
|
|
3164
|
+
var twig;
|
|
3165
|
+
var init_twig = __esm({
|
|
3166
|
+
"src/languages/twig.ts"() {
|
|
3167
|
+
twig = {
|
|
3168
|
+
slug: "twig",
|
|
3169
|
+
publishedDate: "2009-10-12",
|
|
3170
|
+
extensions: [".twig"],
|
|
3171
|
+
author: "Fabien Potencier / Twig contributors",
|
|
3172
|
+
website: "https://twig.symfony.com",
|
|
3173
|
+
paradigms: ["templating", "declarative", "server-side", "scripting"],
|
|
3174
|
+
tooling: {
|
|
3175
|
+
runtimes: ["PHP", "Symfony"],
|
|
3176
|
+
packageManagers: ["Composer"],
|
|
3177
|
+
ecosystems: ["PHP", "Symfony", "Web", "CMS"]
|
|
3178
|
+
},
|
|
3179
|
+
version: "3.24.0",
|
|
3180
|
+
logo: "https://twig.symfony.com/images/logo.png",
|
|
3181
|
+
i18n: {
|
|
3182
|
+
en: {
|
|
3183
|
+
name: "Twig",
|
|
3184
|
+
description: "A flexible, secure template language for PHP applications and Symfony projects.",
|
|
3185
|
+
longDescription: "Twig is a template language for PHP that separates presentation from application logic using blocks, inheritance, includes, filters, functions, tests, macros, escaping, and sandboxing. Its syntax is designed to be readable for designers while remaining extensible for developers.\n\nIt is used in Symfony applications, PHP web projects, CMS themes, email templates, static generation workflows, and systems that need reusable server-rendered views with controlled access to application data."
|
|
3186
|
+
},
|
|
3187
|
+
es: {
|
|
3188
|
+
name: "Twig",
|
|
3189
|
+
description: "Un lenguaje de plantillas flexible y seguro para aplicaciones PHP y proyectos Symfony.",
|
|
3190
|
+
longDescription: "Twig es un lenguaje de plantillas para PHP que separa la presentacion de la logica de aplicacion usando bloques, herencia, includes, filtros, funciones, tests, macros, escapado y sandboxing. Su sintaxis esta pensada para ser legible para disenadores y extensible para desarrolladores.\n\nSe usa en aplicaciones Symfony, proyectos web PHP, temas de CMS, plantillas de email, flujos de generacion estatica y sistemas que necesitan vistas renderizadas en servidor reutilizables con acceso controlado a los datos de la aplicacion."
|
|
3191
|
+
}
|
|
3192
|
+
}
|
|
3193
|
+
};
|
|
3194
|
+
}
|
|
3195
|
+
});
|
|
3196
|
+
|
|
3083
3197
|
// src/languages/typescript.ts
|
|
3084
3198
|
var typescript_exports = {};
|
|
3085
3199
|
__export(typescript_exports, {
|
|
@@ -3302,6 +3416,82 @@ var init_xml = __esm({
|
|
|
3302
3416
|
}
|
|
3303
3417
|
});
|
|
3304
3418
|
|
|
3419
|
+
// src/languages/xquery.ts
|
|
3420
|
+
var xquery_exports = {};
|
|
3421
|
+
__export(xquery_exports, {
|
|
3422
|
+
xquery: () => xquery
|
|
3423
|
+
});
|
|
3424
|
+
var xquery;
|
|
3425
|
+
var init_xquery = __esm({
|
|
3426
|
+
"src/languages/xquery.ts"() {
|
|
3427
|
+
xquery = {
|
|
3428
|
+
slug: "xquery",
|
|
3429
|
+
publishedDate: "2007-01-23",
|
|
3430
|
+
extensions: [".xq", ".xql", ".xqm", ".xquery", ".xqy"],
|
|
3431
|
+
author: "W3C XML Query Working Group",
|
|
3432
|
+
website: "https://www.w3.org/TR/xquery/",
|
|
3433
|
+
paradigms: ["query", "functional", "declarative", "xml"],
|
|
3434
|
+
tooling: {
|
|
3435
|
+
runtimes: ["BaseX", "Saxon", "eXist-db", "MarkLogic"],
|
|
3436
|
+
packageManagers: ["EXPath Package Manager"],
|
|
3437
|
+
ecosystems: ["XML", "Databases", "Publishing", "Enterprise Data"]
|
|
3438
|
+
},
|
|
3439
|
+
version: "XQuery 3.1",
|
|
3440
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/6/68/XML.svg",
|
|
3441
|
+
i18n: {
|
|
3442
|
+
en: {
|
|
3443
|
+
name: "XQuery",
|
|
3444
|
+
description: "A W3C query and application language for XML, structured, and semi-structured data.",
|
|
3445
|
+
longDescription: "XQuery is a declarative query language for XML and related structured data. It combines XPath expressions, FLWOR queries, functions, modules, sequence processing, namespaces, and type-aware operations to extract, transform, join, and construct XML or other serialized results.\n\nIt is used in native XML databases, publishing pipelines, document repositories, enterprise integrations, digital humanities, metadata processing, and applications that query large collections of XML or semi-structured content."
|
|
3446
|
+
},
|
|
3447
|
+
es: {
|
|
3448
|
+
name: "XQuery",
|
|
3449
|
+
description: "Un lenguaje W3C de consulta y aplicaciones para XML y datos estructurados o semiestructurados.",
|
|
3450
|
+
longDescription: "XQuery es un lenguaje declarativo de consultas para XML y datos estructurados relacionados. Combina expresiones XPath, consultas FLWOR, funciones, modulos, procesamiento de secuencias, namespaces y operaciones con tipos para extraer, transformar, unir y construir XML u otros resultados serializados.\n\nSe usa en bases de datos XML nativas, pipelines de publicacion, repositorios documentales, integraciones empresariales, humanidades digitales, procesamiento de metadatos y aplicaciones que consultan grandes colecciones de XML o contenido semiestructurado."
|
|
3451
|
+
}
|
|
3452
|
+
}
|
|
3453
|
+
};
|
|
3454
|
+
}
|
|
3455
|
+
});
|
|
3456
|
+
|
|
3457
|
+
// src/languages/xslt.ts
|
|
3458
|
+
var xslt_exports = {};
|
|
3459
|
+
__export(xslt_exports, {
|
|
3460
|
+
xslt: () => xslt
|
|
3461
|
+
});
|
|
3462
|
+
var xslt;
|
|
3463
|
+
var init_xslt = __esm({
|
|
3464
|
+
"src/languages/xslt.ts"() {
|
|
3465
|
+
xslt = {
|
|
3466
|
+
slug: "xslt",
|
|
3467
|
+
publishedDate: "1999-11-16",
|
|
3468
|
+
extensions: [".xsl", ".xslt"],
|
|
3469
|
+
author: "W3C XSLT Working Group",
|
|
3470
|
+
website: "https://www.w3.org/TR/xslt-30/",
|
|
3471
|
+
paradigms: ["declarative", "functional", "markup", "transformation"],
|
|
3472
|
+
tooling: {
|
|
3473
|
+
runtimes: ["Saxon", "libxslt", "Xalan", "Browser XSLT processors"],
|
|
3474
|
+
packageManagers: ["Maven", "npm", "NuGet", "APT", "Homebrew"],
|
|
3475
|
+
ecosystems: ["XML", "Publishing", "Enterprise Integration", "Document Processing"]
|
|
3476
|
+
},
|
|
3477
|
+
version: "XSLT 3.0",
|
|
3478
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/6/68/XML.svg",
|
|
3479
|
+
i18n: {
|
|
3480
|
+
en: {
|
|
3481
|
+
name: "XSLT",
|
|
3482
|
+
description: "A W3C stylesheet language for transforming XML documents into XML, HTML, text, and more.",
|
|
3483
|
+
longDescription: "XSLT is a declarative transformation language for XML documents. Stylesheets use templates, modes, XPath expressions, variables, functions, keys, imports, and output declarations to match source trees and produce XML, HTML, text, or other structured results.\n\nIt is used in publishing systems, enterprise data exchange, document conversion, XML pipelines, standards-based integrations, browser-era XML workflows, and systems that need repeatable transformations between document formats."
|
|
3484
|
+
},
|
|
3485
|
+
es: {
|
|
3486
|
+
name: "XSLT",
|
|
3487
|
+
description: "Un lenguaje W3C de hojas de estilo para transformar XML en XML, HTML, texto y mas.",
|
|
3488
|
+
longDescription: "XSLT es un lenguaje declarativo de transformacion para documentos XML. Las hojas de estilo usan templates, modos, expresiones XPath, variables, funciones, claves, imports y declaraciones de salida para encontrar nodos en arboles fuente y producir XML, HTML, texto u otros resultados estructurados.\n\nSe usa en sistemas de publicacion, intercambio de datos empresarial, conversion de documentos, pipelines XML, integraciones basadas en estandares, flujos XML historicos del navegador y sistemas que necesitan transformaciones repetibles entre formatos documentales."
|
|
3489
|
+
}
|
|
3490
|
+
}
|
|
3491
|
+
};
|
|
3492
|
+
}
|
|
3493
|
+
});
|
|
3494
|
+
|
|
3305
3495
|
// src/languages/yaml.ts
|
|
3306
3496
|
var yaml_exports = {};
|
|
3307
3497
|
__export(yaml_exports, {
|
|
@@ -3482,6 +3672,7 @@ init_python();
|
|
|
3482
3672
|
init_r();
|
|
3483
3673
|
init_racket();
|
|
3484
3674
|
init_razor();
|
|
3675
|
+
init_rego();
|
|
3485
3676
|
init_ruby();
|
|
3486
3677
|
init_rust();
|
|
3487
3678
|
init_scala();
|
|
@@ -3493,13 +3684,17 @@ init_svg();
|
|
|
3493
3684
|
init_svn();
|
|
3494
3685
|
init_swift();
|
|
3495
3686
|
init_tcl();
|
|
3687
|
+
init_tex();
|
|
3496
3688
|
init_toml();
|
|
3689
|
+
init_twig();
|
|
3497
3690
|
init_typescript();
|
|
3498
3691
|
init_visual_basic();
|
|
3499
3692
|
init_vue();
|
|
3500
3693
|
init_webassembly();
|
|
3501
3694
|
init_xaml();
|
|
3502
3695
|
init_xml();
|
|
3696
|
+
init_xquery();
|
|
3697
|
+
init_xslt();
|
|
3503
3698
|
init_yaml();
|
|
3504
3699
|
init_zig();
|
|
3505
3700
|
init_zsh();
|
|
@@ -3575,6 +3770,7 @@ var languages = [
|
|
|
3575
3770
|
r,
|
|
3576
3771
|
racket,
|
|
3577
3772
|
razor,
|
|
3773
|
+
rego,
|
|
3578
3774
|
ruby,
|
|
3579
3775
|
rust,
|
|
3580
3776
|
scala,
|
|
@@ -3585,13 +3781,17 @@ var languages = [
|
|
|
3585
3781
|
svelte,
|
|
3586
3782
|
swift,
|
|
3587
3783
|
tcl,
|
|
3784
|
+
tex,
|
|
3588
3785
|
toml,
|
|
3786
|
+
twig,
|
|
3589
3787
|
typescript,
|
|
3590
3788
|
visualBasic,
|
|
3591
3789
|
vue,
|
|
3592
3790
|
webassembly,
|
|
3593
3791
|
xaml,
|
|
3594
3792
|
xml,
|
|
3793
|
+
xquery,
|
|
3794
|
+
xslt,
|
|
3595
3795
|
yaml,
|
|
3596
3796
|
zig,
|
|
3597
3797
|
zsh
|
|
@@ -3734,6 +3934,7 @@ var languageIndex = [
|
|
|
3734
3934
|
{ slug: "r", extensions: [".r", ".R", ".rmd", ".Rmd", ".qmd", ".Rprofile"] },
|
|
3735
3935
|
{ slug: "racket", extensions: [".rkt", ".rktd", ".rktl", ".scrbl"] },
|
|
3736
3936
|
{ slug: "razor", extensions: [".cshtml", ".razor"] },
|
|
3937
|
+
{ slug: "rego", extensions: [".rego"] },
|
|
3737
3938
|
{
|
|
3738
3939
|
slug: "ruby",
|
|
3739
3940
|
extensions: [".rb", ".rbw", ".rake", ".gemspec", "Gemfile", "Rakefile", "config.ru"]
|
|
@@ -3747,13 +3948,17 @@ var languageIndex = [
|
|
|
3747
3948
|
{ slug: "svelte", extensions: [".svelte"] },
|
|
3748
3949
|
{ slug: "swift", extensions: [".swift"] },
|
|
3749
3950
|
{ slug: "tcl", extensions: [".tcl", ".tm", ".test"] },
|
|
3951
|
+
{ slug: "tex", extensions: [".tex", ".sty", ".cls", ".dtx", ".ins", ".ltx"] },
|
|
3750
3952
|
{ slug: "toml", extensions: [".toml"] },
|
|
3953
|
+
{ slug: "twig", extensions: [".twig"] },
|
|
3751
3954
|
{ slug: "typescript", extensions: [".ts", ".tsx", ".mts", ".cts"] },
|
|
3752
3955
|
{ slug: "visual-basic", extensions: [".vb"] },
|
|
3753
3956
|
{ slug: "vue", extensions: [".vue"] },
|
|
3754
3957
|
{ slug: "webassembly", extensions: [".wasm", ".wat"] },
|
|
3755
3958
|
{ slug: "xaml", extensions: [".xaml", ".baml"] },
|
|
3756
3959
|
{ slug: "xml", extensions: [".xml", ".xsd", ".xsl", ".xslt"] },
|
|
3960
|
+
{ slug: "xquery", extensions: [".xq", ".xql", ".xqm", ".xquery", ".xqy"] },
|
|
3961
|
+
{ slug: "xslt", extensions: [".xsl", ".xslt"] },
|
|
3757
3962
|
{ slug: "yaml", extensions: [".yaml", ".yml"] },
|
|
3758
3963
|
{ slug: "zig", extensions: [".zig", ".zon"] },
|
|
3759
3964
|
{
|
|
@@ -3833,6 +4038,7 @@ var languageLoaders = {
|
|
|
3833
4038
|
r: () => Promise.resolve().then(() => (init_r(), r_exports)).then((module) => module.r),
|
|
3834
4039
|
racket: () => Promise.resolve().then(() => (init_racket(), racket_exports)).then((module) => module.racket),
|
|
3835
4040
|
razor: () => Promise.resolve().then(() => (init_razor(), razor_exports)).then((module) => module.razor),
|
|
4041
|
+
rego: () => Promise.resolve().then(() => (init_rego(), rego_exports)).then((module) => module.rego),
|
|
3836
4042
|
ruby: () => Promise.resolve().then(() => (init_ruby(), ruby_exports)).then((module) => module.ruby),
|
|
3837
4043
|
rust: () => Promise.resolve().then(() => (init_rust(), rust_exports)).then((module) => module.rust),
|
|
3838
4044
|
scala: () => Promise.resolve().then(() => (init_scala(), scala_exports)).then((module) => module.scala),
|
|
@@ -3843,13 +4049,17 @@ var languageLoaders = {
|
|
|
3843
4049
|
svg: () => Promise.resolve().then(() => (init_svg(), svg_exports)).then((module) => module.svg),
|
|
3844
4050
|
swift: () => Promise.resolve().then(() => (init_swift(), swift_exports)).then((module) => module.swift),
|
|
3845
4051
|
tcl: () => Promise.resolve().then(() => (init_tcl(), tcl_exports)).then((module) => module.tcl),
|
|
4052
|
+
tex: () => Promise.resolve().then(() => (init_tex(), tex_exports)).then((module) => module.tex),
|
|
3846
4053
|
toml: () => Promise.resolve().then(() => (init_toml(), toml_exports)).then((module) => module.toml),
|
|
4054
|
+
twig: () => Promise.resolve().then(() => (init_twig(), twig_exports)).then((module) => module.twig),
|
|
3847
4055
|
typescript: () => Promise.resolve().then(() => (init_typescript(), typescript_exports)).then((module) => module.typescript),
|
|
3848
4056
|
"visual-basic": () => Promise.resolve().then(() => (init_visual_basic(), visual_basic_exports)).then((module) => module.visualBasic),
|
|
3849
4057
|
vue: () => Promise.resolve().then(() => (init_vue(), vue_exports)).then((module) => module.vue),
|
|
3850
4058
|
webassembly: () => Promise.resolve().then(() => (init_webassembly(), webassembly_exports)).then((module) => module.webassembly),
|
|
3851
4059
|
xaml: () => Promise.resolve().then(() => (init_xaml(), xaml_exports)).then((module) => module.xaml),
|
|
3852
4060
|
xml: () => Promise.resolve().then(() => (init_xml(), xml_exports)).then((module) => module.xml),
|
|
4061
|
+
xquery: () => Promise.resolve().then(() => (init_xquery(), xquery_exports)).then((module) => module.xquery),
|
|
4062
|
+
xslt: () => Promise.resolve().then(() => (init_xslt(), xslt_exports)).then((module) => module.xslt),
|
|
3853
4063
|
yaml: () => Promise.resolve().then(() => (init_yaml(), yaml_exports)).then((module) => module.yaml),
|
|
3854
4064
|
zig: () => Promise.resolve().then(() => (init_zig(), zig_exports)).then((module) => module.zig),
|
|
3855
4065
|
zsh: () => Promise.resolve().then(() => (init_zsh(), zsh_exports)).then((module) => module.zsh)
|
|
@@ -4020,6 +4230,7 @@ init_python();
|
|
|
4020
4230
|
init_r();
|
|
4021
4231
|
init_racket();
|
|
4022
4232
|
init_razor();
|
|
4233
|
+
init_rego();
|
|
4023
4234
|
init_ruby();
|
|
4024
4235
|
init_rust();
|
|
4025
4236
|
init_scala();
|
|
@@ -4031,17 +4242,21 @@ init_svn();
|
|
|
4031
4242
|
init_svelte();
|
|
4032
4243
|
init_swift();
|
|
4033
4244
|
init_tcl();
|
|
4245
|
+
init_tex();
|
|
4034
4246
|
init_toml();
|
|
4247
|
+
init_twig();
|
|
4035
4248
|
init_typescript();
|
|
4036
4249
|
init_visual_basic();
|
|
4037
4250
|
init_vue();
|
|
4038
4251
|
init_webassembly();
|
|
4039
4252
|
init_xaml();
|
|
4040
4253
|
init_xml();
|
|
4254
|
+
init_xquery();
|
|
4255
|
+
init_xslt();
|
|
4041
4256
|
init_yaml();
|
|
4042
4257
|
init_zig();
|
|
4043
4258
|
init_zsh();
|
|
4044
4259
|
|
|
4045
|
-
export { abap, actionscript, ada, apex, api, asp, assembly, astro, awk, bash, batch, c, clojure, cmake, cobol, coffeescript, cpp, crystal, csharp, css, cuda, d, dart, detectLanguage, detectLanguages, dockerfile, elixir, elm, erlang, fennel, fortran, fsharp, git, gleam, glsl, go, gradle, graphql, groovy, haskell, haxe, hcl, html, ini, java, javascript, json, julia, jupyterNotebook, kotlin, languages, less, lisp, localizeLanguage, lua, makefile, markdown, matlab, meson, metal, nginx, nim, nix, objectiveC, ocaml, pascal, perl, php, powershell, protobuf, pug, python, r, racket, razor, ruby, rust, scala, scss, solidity, sql, svelte, svg, svn, swift, tcl, toml, typescript, visualBasic, vue, webassembly, xaml, xml, yaml, zig, zsh };
|
|
4260
|
+
export { abap, actionscript, ada, apex, api, asp, assembly, astro, awk, bash, batch, c, clojure, cmake, cobol, coffeescript, cpp, crystal, csharp, css, cuda, d, dart, detectLanguage, detectLanguages, dockerfile, elixir, elm, erlang, fennel, fortran, fsharp, git, gleam, glsl, go, gradle, graphql, groovy, haskell, haxe, hcl, html, ini, java, javascript, json, julia, jupyterNotebook, kotlin, languages, less, lisp, localizeLanguage, lua, makefile, markdown, matlab, meson, metal, nginx, nim, nix, objectiveC, ocaml, pascal, perl, php, powershell, protobuf, pug, python, r, racket, razor, rego, ruby, rust, scala, scss, solidity, sql, svelte, svg, svn, swift, tcl, tex, toml, twig, typescript, visualBasic, vue, webassembly, xaml, xml, xquery, xslt, yaml, zig, zsh };
|
|
4046
4261
|
//# sourceMappingURL=index.js.map
|
|
4047
4262
|
//# sourceMappingURL=index.js.map
|