feat: migrate to starlight

This commit is contained in:
DuroCodes
2024-05-06 17:15:30 -04:00
parent 767acedea7
commit bb190f2d81
15140 changed files with 2828326 additions and 35408 deletions

22
node_modules/shiki/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,22 @@
MIT License
Copyright (c) 2021 Pine Wu
Copyright (c) 2023 Anthony Fu <https://github.com/antfu>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

15
node_modules/shiki/README.md generated vendored Normal file
View File

@@ -0,0 +1,15 @@
<img src="https://raw.githubusercontent.com/shikijs/shiki/main/docs/public/logo.svg" width="150" alt="Shiki Logo" />
# Shiki 式
[![NPM version](https://img.shields.io/npm/v/shiki?color=32A9C3&labelColor=1B3C4A&label=npm)](https://www.npmjs.com/package/shiki)
[![NPM downloads](https://img.shields.io/npm/dm/shiki?color=32A9C3&labelColor=1B3C4A&label=downloads)](https://www.npmjs.com/package/shiki)
[![Codecov](https://img.shields.io/codecov/c/github/shikijs/shiki?token=B85J0E2I7I&style=flat&labelColor=1B3C4A&color=32A9C3&precision=1)](https://app.codecov.io/gh/shikijs/shiki)
A beautiful syntax highlighter based on TextMate grammars, accurate and powerful.
[📚 **Documentation**](https://shiki.style)
## License
[MIT](./LICENSE)

31
node_modules/shiki/dist/bundle-full.d.mts generated vendored Normal file
View File

@@ -0,0 +1,31 @@
import { R as Root } from './types/wasm-dynamic.mjs';
export { g as getWasmInlined } from './types/wasm-dynamic.mjs';
import * as _shikijs_core from '@shikijs/core';
import { HighlighterGeneric } from '@shikijs/core';
export * from '@shikijs/core';
import { BundledLanguage } from './langs.mjs';
export { bundledLanguages, bundledLanguagesAlias, bundledLanguagesBase, bundledLanguagesInfo } from './langs.mjs';
import { BundledTheme } from './themes.mjs';
export { bundledThemes, bundledThemesInfo } from './themes.mjs';
import '@shikijs/core/types';
type Highlighter = HighlighterGeneric<BundledLanguage, BundledTheme>;
/**
* Initiate a highlighter instance and load the specified languages and themes.
* Later it can be used synchronously to highlight code.
*
* Importing this function will bundle all languages and themes.
* @see https://shiki.style/guide/bundles#shiki-bundle-full
*
* For granular control over the bundle, check:
* @see https://shiki.style/guide/install#fine-grained-bundle
*/
declare const getHighlighter: _shikijs_core.GetHighlighterFactory<BundledLanguage, BundledTheme>;
declare const codeToHtml: (code: string, options: _shikijs_core.CodeToHastOptions<BundledLanguage, BundledTheme>) => Promise<string>;
declare const codeToHast: (code: string, options: _shikijs_core.CodeToHastOptions<BundledLanguage, BundledTheme>) => Promise<Root>;
declare const codeToTokens: (code: string, options: _shikijs_core.CodeToTokensOptions<BundledLanguage, BundledTheme>) => Promise<_shikijs_core.TokensResult>;
declare const codeToTokensBase: (code: string, options: _shikijs_core.RequireKeys<_shikijs_core.CodeToTokensBaseOptions<BundledLanguage, BundledTheme>, "theme" | "lang">) => Promise<_shikijs_core.ThemedToken[][]>;
declare const codeToTokensWithThemes: (code: string, options: _shikijs_core.RequireKeys<_shikijs_core.CodeToTokensWithThemesOptions<BundledLanguage, BundledTheme>, "lang" | "themes">) => Promise<_shikijs_core.ThemedTokenWithVariants[][]>;
declare const getSingletonHighlighter: () => Promise<HighlighterGeneric<BundledLanguage, BundledTheme>>;
export { BundledLanguage, BundledTheme, type Highlighter, codeToHast, codeToHtml, codeToTokens, codeToTokensBase, codeToTokensWithThemes, getHighlighter, getSingletonHighlighter };

25
node_modules/shiki/dist/bundle-full.mjs generated vendored Normal file
View File

@@ -0,0 +1,25 @@
import { bundledLanguages } from './langs.mjs';
export { bundledLanguagesAlias, bundledLanguagesBase, bundledLanguagesInfo } from './langs.mjs';
import { g as getWasmInlined } from './chunks/wasm-dynamic.mjs';
import { bundledThemes } from './themes.mjs';
export { bundledThemesInfo } from './themes.mjs';
import { createdBundledHighlighter, createSingletonShorthands } from '@shikijs/core';
export * from '@shikijs/core';
const getHighlighter = /* @__PURE__ */ createdBundledHighlighter(
bundledLanguages,
bundledThemes,
getWasmInlined
);
const {
codeToHtml,
codeToHast,
codeToTokens,
codeToTokensBase,
codeToTokensWithThemes,
getSingletonHighlighter
} = /* @__PURE__ */ createSingletonShorthands(
getHighlighter
);
export { bundledLanguages, bundledThemes, codeToHast, codeToHtml, codeToTokens, codeToTokensBase, codeToTokensWithThemes, getHighlighter, getSingletonHighlighter, getWasmInlined };

39
node_modules/shiki/dist/bundle-web.d.mts generated vendored Normal file
View File

@@ -0,0 +1,39 @@
import { R as Root } from './types/wasm-dynamic.mjs';
export { g as getWasmInlined } from './types/wasm-dynamic.mjs';
import * as _shikijs_core from '@shikijs/core';
import { BundledLanguageInfo, DynamicImportLanguageRegistration, HighlighterGeneric } from '@shikijs/core';
export * from '@shikijs/core';
import { BundledTheme } from './themes.mjs';
export { bundledThemes, bundledThemesInfo } from './themes.mjs';
import '@shikijs/core/types';
declare const bundledLanguagesInfo: BundledLanguageInfo[];
declare const bundledLanguagesBase: {
[k: string]: DynamicImportLanguageRegistration;
};
declare const bundledLanguagesAlias: {
[k: string]: DynamicImportLanguageRegistration;
};
type BundledLanguage = 'angular-html' | 'angular-ts' | 'astro' | 'bash' | 'blade' | 'c' | 'c++' | 'coffee' | 'coffeescript' | 'cpp' | 'css' | 'glsl' | 'gql' | 'graphql' | 'haml' | 'handlebars' | 'hbs' | 'html' | 'html-derivative' | 'http' | 'imba' | 'jade' | 'java' | 'javascript' | 'jinja' | 'jison' | 'jl' | 'js' | 'json' | 'json5' | 'jsonc' | 'jsonl' | 'jsx' | 'julia' | 'less' | 'lua' | 'markdown' | 'marko' | 'md' | 'mdc' | 'mdx' | 'php' | 'postcss' | 'pug' | 'py' | 'python' | 'r' | 'rb' | 'ruby' | 'sass' | 'scss' | 'sh' | 'shell' | 'shellscript' | 'sql' | 'styl' | 'stylus' | 'svelte' | 'toml' | 'ts' | 'tsx' | 'typescript' | 'vue' | 'vue-html' | 'wasm' | 'wgsl' | 'xml' | 'yaml' | 'yml' | 'zsh';
declare const bundledLanguages: Record<BundledLanguage, DynamicImportLanguageRegistration>;
type Highlighter = HighlighterGeneric<BundledLanguage, BundledTheme>;
/**
* Initiate a highlighter instance and load the specified languages and themes.
* Later it can be used synchronously to highlight code.
*
* Importing this function will bundle all languages and themes.
* @see https://shiki.style/guide/bundles#shiki-bundle-web
*
* For granular control over the bundle, check:
* @see https://shiki.style/guide/install#fine-grained-bundle
*/
declare const getHighlighter: _shikijs_core.GetHighlighterFactory<BundledLanguage, BundledTheme>;
declare const codeToHtml: (code: string, options: _shikijs_core.CodeToHastOptions<BundledLanguage, BundledTheme>) => Promise<string>;
declare const codeToHast: (code: string, options: _shikijs_core.CodeToHastOptions<BundledLanguage, BundledTheme>) => Promise<Root>;
declare const codeToTokensBase: (code: string, options: _shikijs_core.RequireKeys<_shikijs_core.CodeToTokensBaseOptions<BundledLanguage, BundledTheme>, "theme" | "lang">) => Promise<_shikijs_core.ThemedToken[][]>;
declare const codeToTokens: (code: string, options: _shikijs_core.CodeToTokensOptions<BundledLanguage, BundledTheme>) => Promise<_shikijs_core.TokensResult>;
declare const codeToTokensWithThemes: (code: string, options: _shikijs_core.RequireKeys<_shikijs_core.CodeToTokensWithThemesOptions<BundledLanguage, BundledTheme>, "lang" | "themes">) => Promise<_shikijs_core.ThemedTokenWithVariants[][]>;
declare const getSingletonHighlighter: () => Promise<HighlighterGeneric<BundledLanguage, BundledTheme>>;
export { type BundledLanguage, BundledTheme, type Highlighter, bundledLanguages, bundledLanguagesAlias, bundledLanguagesBase, bundledLanguagesInfo, codeToHast, codeToHtml, codeToTokens, codeToTokensBase, codeToTokensWithThemes, getHighlighter, getSingletonHighlighter };

342
node_modules/shiki/dist/bundle-web.mjs generated vendored Normal file
View File

@@ -0,0 +1,342 @@
import { g as getWasmInlined } from './chunks/wasm-dynamic.mjs';
import { createdBundledHighlighter, createSingletonShorthands } from '@shikijs/core';
export * from '@shikijs/core';
import { bundledThemes } from './themes.mjs';
export { bundledThemesInfo } from './themes.mjs';
const bundledLanguagesInfo = [
{
"id": "angular-html",
"name": "Angular HTML",
"import": () => import('./langs/angular-html.mjs')
},
{
"id": "angular-ts",
"name": "Angular TypeScript",
"import": () => import('./langs/angular-ts.mjs')
},
{
"id": "astro",
"name": "Astro",
"import": () => import('./langs/astro.mjs')
},
{
"id": "blade",
"name": "Blade",
"import": () => import('./langs/blade.mjs')
},
{
"id": "c",
"name": "C",
"import": () => import('./langs/c.mjs')
},
{
"id": "coffee",
"name": "CoffeeScript",
"aliases": [
"coffeescript"
],
"import": () => import('./langs/coffee.mjs')
},
{
"id": "cpp",
"name": "C++",
"aliases": [
"c++"
],
"import": () => import('./langs/cpp.mjs')
},
{
"id": "css",
"name": "CSS",
"import": () => import('./langs/css.mjs')
},
{
"id": "glsl",
"name": "GLSL",
"import": () => import('./langs/glsl.mjs')
},
{
"id": "graphql",
"name": "GraphQL",
"aliases": [
"gql"
],
"import": () => import('./langs/graphql.mjs')
},
{
"id": "haml",
"name": "Ruby Haml",
"import": () => import('./langs/haml.mjs')
},
{
"id": "handlebars",
"name": "Handlebars",
"aliases": [
"hbs"
],
"import": () => import('./langs/handlebars.mjs')
},
{
"id": "html",
"name": "HTML",
"import": () => import('./langs/html.mjs')
},
{
"id": "html-derivative",
"name": "HTML (Derivative)",
"import": () => import('./langs/html-derivative.mjs')
},
{
"id": "http",
"name": "HTTP",
"import": () => import('./langs/http.mjs')
},
{
"id": "imba",
"name": "Imba",
"import": () => import('./langs/imba.mjs')
},
{
"id": "java",
"name": "Java",
"import": () => import('./langs/java.mjs')
},
{
"id": "javascript",
"name": "JavaScript",
"aliases": [
"js"
],
"import": () => import('./langs/javascript.mjs')
},
{
"id": "jinja",
"name": "Jinja",
"import": () => import('./langs/jinja.mjs')
},
{
"id": "jison",
"name": "Jison",
"import": () => import('./langs/jison.mjs')
},
{
"id": "json",
"name": "JSON",
"import": () => import('./langs/json.mjs')
},
{
"id": "json5",
"name": "JSON5",
"import": () => import('./langs/json5.mjs')
},
{
"id": "jsonc",
"name": "JSON with Comments",
"import": () => import('./langs/jsonc.mjs')
},
{
"id": "jsonl",
"name": "JSON Lines",
"import": () => import('./langs/jsonl.mjs')
},
{
"id": "jsx",
"name": "JSX",
"import": () => import('./langs/jsx.mjs')
},
{
"id": "julia",
"name": "Julia",
"aliases": [
"jl"
],
"import": () => import('./langs/julia.mjs')
},
{
"id": "less",
"name": "Less",
"import": () => import('./langs/less.mjs')
},
{
"id": "lua",
"name": "Lua",
"import": () => import('./langs/lua.mjs')
},
{
"id": "markdown",
"name": "Markdown",
"aliases": [
"md"
],
"import": () => import('./langs/markdown.mjs')
},
{
"id": "marko",
"name": "Marko",
"import": () => import('./langs/marko.mjs')
},
{
"id": "mdc",
"name": "MDC",
"import": () => import('./langs/mdc.mjs')
},
{
"id": "mdx",
"name": "MDX",
"import": () => import('./langs/mdx.mjs')
},
{
"id": "php",
"name": "PHP",
"import": () => import('./langs/php.mjs')
},
{
"id": "postcss",
"name": "PostCSS",
"import": () => import('./langs/postcss.mjs')
},
{
"id": "pug",
"name": "Pug",
"aliases": [
"jade"
],
"import": () => import('./langs/pug.mjs')
},
{
"id": "python",
"name": "Python",
"aliases": [
"py"
],
"import": () => import('./langs/python.mjs')
},
{
"id": "r",
"name": "R",
"import": () => import('./langs/r.mjs')
},
{
"id": "ruby",
"name": "Ruby",
"aliases": [
"rb"
],
"import": () => import('./langs/ruby.mjs')
},
{
"id": "sass",
"name": "Sass",
"import": () => import('./langs/sass.mjs')
},
{
"id": "scss",
"name": "SCSS",
"import": () => import('./langs/scss.mjs')
},
{
"id": "shellscript",
"name": "Shell",
"aliases": [
"bash",
"sh",
"shell",
"zsh"
],
"import": () => import('./langs/shellscript.mjs')
},
{
"id": "sql",
"name": "SQL",
"import": () => import('./langs/sql.mjs')
},
{
"id": "stylus",
"name": "Stylus",
"aliases": [
"styl"
],
"import": () => import('./langs/stylus.mjs')
},
{
"id": "svelte",
"name": "Svelte",
"import": () => import('./langs/svelte.mjs')
},
{
"id": "toml",
"name": "TOML",
"import": () => import('./langs/toml.mjs')
},
{
"id": "tsx",
"name": "TSX",
"import": () => import('./langs/tsx.mjs')
},
{
"id": "typescript",
"name": "TypeScript",
"aliases": [
"ts"
],
"import": () => import('./langs/typescript.mjs')
},
{
"id": "vue",
"name": "Vue",
"import": () => import('./langs/vue.mjs')
},
{
"id": "vue-html",
"name": "Vue HTML",
"import": () => import('./langs/vue-html.mjs')
},
{
"id": "wasm",
"name": "WebAssembly",
"import": () => import('./langs/wasm.mjs')
},
{
"id": "wgsl",
"name": "WGSL",
"import": () => import('./langs/wgsl.mjs')
},
{
"id": "xml",
"name": "XML",
"import": () => import('./langs/xml.mjs')
},
{
"id": "yaml",
"name": "YAML",
"aliases": [
"yml"
],
"import": () => import('./langs/yaml.mjs')
}
];
const bundledLanguagesBase = Object.fromEntries(bundledLanguagesInfo.map((i) => [i.id, i.import]));
const bundledLanguagesAlias = Object.fromEntries(bundledLanguagesInfo.flatMap((i) => i.aliases?.map((a) => [a, i.import]) || []));
const bundledLanguages = {
...bundledLanguagesBase,
...bundledLanguagesAlias
};
const getHighlighter = /* @__PURE__ */ createdBundledHighlighter(
bundledLanguages,
bundledThemes,
getWasmInlined
);
const {
codeToHtml,
codeToHast,
codeToTokensBase,
codeToTokens,
codeToTokensWithThemes,
getSingletonHighlighter
} = /* @__PURE__ */ createSingletonShorthands(
getHighlighter
);
export { bundledLanguages, bundledLanguagesAlias, bundledLanguagesBase, bundledLanguagesInfo, bundledThemes, codeToHast, codeToHtml, codeToTokens, codeToTokensBase, codeToTokensWithThemes, getHighlighter, getSingletonHighlighter, getWasmInlined };

5
node_modules/shiki/dist/chunks/wasm-dynamic.mjs generated vendored Normal file
View File

@@ -0,0 +1,5 @@
const getWasmInlined = async (info) => {
return import('shiki/wasm').then((wasm) => wasm.default(info));
};
export { getWasmInlined as g };

1
node_modules/shiki/dist/core-unwasm.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
export * from '@shikijs/core';

4
node_modules/shiki/dist/core-unwasm.mjs generated vendored Normal file
View File

@@ -0,0 +1,4 @@
import { setDefaultWasmLoader } from '@shikijs/core';
export * from '@shikijs/core';
setDefaultWasmLoader(() => import('shiki/wasm'));

2
node_modules/shiki/dist/core.d.mts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
export * from '@shikijs/core';
import '@shikijs/core/wasm-inlined';

1
node_modules/shiki/dist/core.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export * from '@shikijs/core';

8
node_modules/shiki/dist/index.d.mts generated vendored Normal file
View File

@@ -0,0 +1,8 @@
export { Highlighter, codeToHast, codeToHtml, codeToTokens, codeToTokensBase, codeToTokensWithThemes, getHighlighter, getSingletonHighlighter } from './bundle-full.mjs';
export { BuiltinLanguage, BuiltinTheme } from './types.mjs';
export { CssVariablesThemeOptions, createCssVariablesTheme } from './theme-css-variables.mjs';
export * from '@shikijs/core';
export { BundledTheme, bundledThemes, bundledThemesInfo } from './themes.mjs';
export { BundledLanguage, bundledLanguages, bundledLanguagesAlias, bundledLanguagesBase, bundledLanguagesInfo } from './langs.mjs';
export { g as getWasmInlined } from './types/wasm-dynamic.mjs';
import '@shikijs/core/types';

6
node_modules/shiki/dist/index.mjs generated vendored Normal file
View File

@@ -0,0 +1,6 @@
export { codeToHast, codeToHtml, codeToTokens, codeToTokensBase, codeToTokensWithThemes, getHighlighter, getSingletonHighlighter } from './bundle-full.mjs';
export { createCssVariablesTheme } from './theme-css-variables.mjs';
export * from '@shikijs/core';
export { bundledThemes, bundledThemesInfo } from './themes.mjs';
export { bundledLanguages, bundledLanguagesAlias, bundledLanguagesBase, bundledLanguagesInfo } from './langs.mjs';
export { g as getWasmInlined } from './chunks/wasm-dynamic.mjs';

13
node_modules/shiki/dist/langs.d.mts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import { BundledLanguageInfo, DynamicImportLanguageRegistration } from '@shikijs/core';
declare const bundledLanguagesInfo: BundledLanguageInfo[];
declare const bundledLanguagesBase: {
[k: string]: DynamicImportLanguageRegistration;
};
declare const bundledLanguagesAlias: {
[k: string]: DynamicImportLanguageRegistration;
};
type BundledLanguage = 'abap' | 'actionscript-3' | 'ada' | 'angular-html' | 'angular-ts' | 'apache' | 'apex' | 'apl' | 'applescript' | 'ara' | 'asm' | 'astro' | 'awk' | 'ballerina' | 'bash' | 'bat' | 'batch' | 'be' | 'beancount' | 'berry' | 'bibtex' | 'bicep' | 'blade' | 'c' | 'c#' | 'c++' | 'cadence' | 'cdc' | 'clarity' | 'clj' | 'clojure' | 'cmake' | 'cmd' | 'cobol' | 'codeql' | 'coffee' | 'coffeescript' | 'common-lisp' | 'console' | 'cpp' | 'cql' | 'crystal' | 'cs' | 'csharp' | 'css' | 'csv' | 'cue' | 'cypher' | 'd' | 'dart' | 'dax' | 'desktop' | 'diff' | 'docker' | 'dockerfile' | 'dream-maker' | 'elixir' | 'elm' | 'erb' | 'erl' | 'erlang' | 'f' | 'f#' | 'f03' | 'f08' | 'f18' | 'f77' | 'f90' | 'f95' | 'fennel' | 'fish' | 'for' | 'fortran-fixed-form' | 'fortran-free-form' | 'fs' | 'fsharp' | 'fsl' | 'gdresource' | 'gdscript' | 'gdshader' | 'gherkin' | 'git-commit' | 'git-rebase' | 'gjs' | 'gleam' | 'glimmer-js' | 'glimmer-ts' | 'glsl' | 'gnuplot' | 'go' | 'gql' | 'graphql' | 'groovy' | 'gts' | 'hack' | 'haml' | 'handlebars' | 'haskell' | 'hbs' | 'hcl' | 'hjson' | 'hlsl' | 'hs' | 'html' | 'html-derivative' | 'http' | 'hy' | 'imba' | 'ini' | 'jade' | 'java' | 'javascript' | 'jinja' | 'jison' | 'jl' | 'js' | 'json' | 'json5' | 'jsonc' | 'jsonl' | 'jsonnet' | 'jssm' | 'jsx' | 'julia' | 'kotlin' | 'kql' | 'kt' | 'kts' | 'kusto' | 'latex' | 'less' | 'liquid' | 'lisp' | 'log' | 'logo' | 'lua' | 'make' | 'makefile' | 'markdown' | 'marko' | 'matlab' | 'md' | 'mdc' | 'mdx' | 'mermaid' | 'mojo' | 'move' | 'nar' | 'narrat' | 'nextflow' | 'nf' | 'nginx' | 'nim' | 'nix' | 'nu' | 'nushell' | 'objc' | 'objective-c' | 'objective-cpp' | 'ocaml' | 'pascal' | 'perl' | 'perl6' | 'php' | 'plsql' | 'po' | 'postcss' | 'pot' | 'potx' | 'powerquery' | 'powershell' | 'prisma' | 'prolog' | 'properties' | 'proto' | 'ps' | 'ps1' | 'pug' | 'puppet' | 'purescript' | 'py' | 'python' | 'ql' | 'r' | 'racket' | 'raku' | 'razor' | 'rb' | 'reg' | 'rel' | 'riscv' | 'rs' | 'rst' | 'ruby' | 'rust' | 'sas' | 'sass' | 'scala' | 'scheme' | 'scss' | 'sh' | 'shader' | 'shaderlab' | 'shell' | 'shellscript' | 'shellsession' | 'smalltalk' | 'solidity' | 'sparql' | 'spl' | 'splunk' | 'sql' | 'ssh-config' | 'stata' | 'styl' | 'stylus' | 'svelte' | 'swift' | 'system-verilog' | 'systemd' | 'tasl' | 'tcl' | 'terraform' | 'tex' | 'tf' | 'tfvars' | 'toml' | 'ts' | 'tsv' | 'tsx' | 'turtle' | 'twig' | 'typ' | 'typescript' | 'typst' | 'v' | 'vb' | 'verilog' | 'vhdl' | 'vim' | 'viml' | 'vimscript' | 'vue' | 'vue-html' | 'vy' | 'vyper' | 'wasm' | 'wenyan' | 'wgsl' | 'wl' | 'wolfram' | 'xml' | 'xsl' | 'yaml' | 'yml' | 'zenscript' | 'zig' | 'zsh' | '文言';
declare const bundledLanguages: Record<BundledLanguage, DynamicImportLanguageRegistration>;
export { type BundledLanguage, bundledLanguages, bundledLanguagesAlias, bundledLanguagesBase, bundledLanguagesInfo };

1135
node_modules/shiki/dist/langs.mjs generated vendored Normal file

File diff suppressed because it is too large Load Diff

1
node_modules/shiki/dist/langs/abap.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/abap.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/actionscript-3.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/actionscript-3.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/ada.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/ada.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/angular-expression.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/angular-html.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

17
node_modules/shiki/dist/langs/angular-html.mjs generated vendored Normal file
View File

@@ -0,0 +1,17 @@
import html from './html.mjs';
import angular_expression from './angular-expression.mjs';
import angular_template from './angular-template.mjs';
import angular_template_blocks from './angular-template-blocks.mjs';
import './javascript.mjs';
import './css.mjs';
const lang = Object.freeze({ "displayName": "Angular HTML", "injections": { "R:text.html - (comment.block, text.html meta.embedded, meta.tag.*.*.html, meta.tag.*.*.*.html, meta.tag.*.*.*.*.html)": { "comment": "Uses R: to ensure this matches after any other injections.", "patterns": [{ "match": "<", "name": "invalid.illegal.bad-angle-bracket.html" }] } }, "name": "angular-html", "patterns": [{ "include": "text.html.basic#core-minus-invalid" }, { "begin": "(</?)(\\w[^\\s>]*)(?<!/)", "beginCaptures": { "1": { "name": "punctuation.definition.tag.begin.html" }, "2": { "name": "entity.name.tag.html" } }, "end": "((?: ?/)?>)", "endCaptures": { "1": { "name": "punctuation.definition.tag.end.html" } }, "name": "meta.tag.other.unrecognized.html.derivative", "patterns": [{ "include": "text.html.basic#attribute" }] }], "scopeName": "text.html.derivative.ng", "embeddedLangs": ["html", "angular-expression", "angular-template", "angular-template-blocks"] });
var angular_html = [
...html,
...angular_expression,
...angular_template,
...angular_template_blocks,
lang
];
export { angular_html as default };

View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

10
node_modules/shiki/dist/langs/angular-inline-style.mjs generated vendored Normal file
View File

@@ -0,0 +1,10 @@
import scss from './scss.mjs';
import './css.mjs';
const lang = Object.freeze({ "injectTo": ["source.ts.ng"], "injectionSelector": "L:source.ts#meta.decorator.ts -comment", "name": "angular-inline-style", "patterns": [{ "include": "#inlineStyles" }], "repository": { "inlineStyles": { "begin": "(styles)\\s*(:)", "beginCaptures": { "1": { "name": "meta.object-literal.key.ts" }, "2": { "name": "meta.object-literal.key.ts punctuation.separator.key-value.ts" } }, "end": "(?=,|})", "patterns": [{ "include": "#tsParenExpression" }, { "include": "#tsBracketExpression" }, { "include": "#style" }] }, "style": { "begin": "\\s*([`|'|\"])", "beginCaptures": { "1": { "name": "string" } }, "contentName": "source.css.scss", "end": "\\1", "endCaptures": { "0": { "name": "string" } }, "patterns": [{ "include": "source.css.scss" }] }, "tsBracketExpression": { "begin": "\\G\\s*(\\[)", "beginCaptures": { "1": { "name": "meta.array.literal.ts meta.brace.square.ts" } }, "end": "\\]", "endCaptures": { "0": { "name": "meta.array.literal.ts meta.brace.square.ts" } }, "patterns": [{ "include": "#style" }] }, "tsParenExpression": { "begin": "\\G\\s*(\\()", "beginCaptures": { "1": { "name": "meta.brace.round.ts" } }, "end": "\\)", "endCaptures": { "0": { "name": "meta.brace.round.ts" } }, "patterns": [{ "include": "$self" }, { "include": "#tsBracketExpression" }, { "include": "#style" }] } }, "scopeName": "inline-styles.ng", "embeddedLangs": ["scss"] });
var angular_inline_style = [
...scss,
lang
];
export { angular_inline_style as default };

View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

View File

@@ -0,0 +1,16 @@
import angular_html from './angular-html.mjs';
import angular_template from './angular-template.mjs';
import './html.mjs';
import './javascript.mjs';
import './css.mjs';
import './angular-expression.mjs';
import './angular-template-blocks.mjs';
const lang = Object.freeze({ "injectTo": ["source.ts.ng"], "injectionSelector": "L:meta.decorator.ts -comment -text.html", "name": "angular-inline-template", "patterns": [{ "include": "#inlineTemplate" }], "repository": { "inlineTemplate": { "begin": "(template)\\s*(:)", "beginCaptures": { "1": { "name": "meta.object-literal.key.ts" }, "2": { "name": "meta.object-literal.key.ts punctuation.separator.key-value.ts" } }, "end": "(?=,|})", "patterns": [{ "include": "#tsParenExpression" }, { "include": "#ngTemplate" }] }, "ngTemplate": { "begin": "\\G\\s*([`|'|\"])", "beginCaptures": { "1": { "name": "string" } }, "contentName": "text.html", "end": "\\1", "endCaptures": { "0": { "name": "string" } }, "patterns": [{ "include": "text.html.derivative.ng" }, { "include": "template.ng" }] }, "tsParenExpression": { "begin": "\\G\\s*(\\()", "beginCaptures": { "1": { "name": "meta.brace.round.ts" } }, "end": "\\)", "endCaptures": { "0": { "name": "meta.brace.round.ts" } }, "patterns": [{ "include": "#tsParenExpression" }, { "include": "#ngTemplate" }] } }, "scopeName": "inline-template.ng", "embeddedLangs": ["angular-html", "angular-template"] });
var angular_inline_template = [
...angular_html,
...angular_template,
lang
];
export { angular_inline_template as default };

View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

View File

@@ -0,0 +1,11 @@
import angular_expression from './angular-expression.mjs';
import angular_template from './angular-template.mjs';
const lang = Object.freeze({ "injectTo": ["text.html.derivative", "text.html.derivative.ng", "source.ts.ng"], "injectionSelector": "L:text.html -comment -expression.ng -meta.tag -source.css -source.js", "name": "angular-template-blocks", "patterns": [{ "include": "#block" }], "repository": { "block": { "begin": "(@)((?:\\w+\\s*)+)(?=\\(|\\{)", "beginCaptures": { "1": { "patterns": [{ "include": "#transition" }] }, "2": { "name": "keyword.control.block.kind.ng" } }, "contentName": "control.block.ng", "end": "(?<=\\})", "patterns": [{ "include": "#blockExpression" }, { "include": "#blockBody" }] }, "blockBody": { "begin": "\\{", "beginCaptures": { "0": { "name": "punctuation.definition.block.ts" } }, "contentName": "control.block.body.ng", "end": "\\}", "endCaptures": { "0": { "name": "punctuation.definition.block.ts" } }, "patterns": [{ "include": "text.html.derivative.ng" }, { "include": "template.ng" }] }, "blockExpression": { "begin": "\\(", "beginCaptures": { "0": { "name": "meta.brace.round.ts" } }, "contentName": "control.block.expression.ng", "end": "\\)", "endCaptures": { "0": { "name": "meta.brace.round.ts" } }, "patterns": [{ "include": "expression.ng" }] }, "transition": { "match": "@", "name": "keyword.control.block.transition.ng" } }, "scopeName": "template.blocks.ng", "embeddedLangs": ["angular-expression", "angular-template"] });
var angular_template_blocks = [
...angular_expression,
...angular_template,
lang
];
export { angular_template_blocks as default };

1
node_modules/shiki/dist/langs/angular-template.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

9
node_modules/shiki/dist/langs/angular-template.mjs generated vendored Normal file
View File

@@ -0,0 +1,9 @@
import angular_expression from './angular-expression.mjs';
const lang = Object.freeze({ "injectTo": ["text.html.derivative", "text.html.derivative.ng", "source.ts.ng"], "injectionSelector": "L:text.html -comment", "name": "angular-template", "patterns": [{ "include": "#interpolation" }], "repository": { "interpolation": { "begin": "{{", "beginCaptures": { "0": { "name": "punctuation.definition.block.ts" } }, "contentName": "expression.ng", "end": "}}", "endCaptures": { "0": { "name": "punctuation.definition.block.ts" } }, "patterns": [{ "include": "expression.ng" }] } }, "scopeName": "template.ng", "embeddedLangs": ["angular-expression"] });
var angular_template = [
...angular_expression,
lang
];
export { angular_template as default };

1
node_modules/shiki/dist/langs/angular-ts.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

44
node_modules/shiki/dist/langs/angular-ts.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/apache.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/apache.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/apex.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/apex.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/apl.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

18
node_modules/shiki/dist/langs/apl.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/applescript.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/applescript.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/ara.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/ara.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/asm.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/asm.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/astro.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

27
node_modules/shiki/dist/langs/astro.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/awk.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/awk.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/ballerina.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/ballerina.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/bash.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/bash.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from './shellscript.mjs';

1
node_modules/shiki/dist/langs/bat.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/bat.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/batch.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/batch.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from './bat.mjs';

1
node_modules/shiki/dist/langs/be.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/be.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from './berry.mjs';

1
node_modules/shiki/dist/langs/beancount.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/beancount.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/berry.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/berry.mjs generated vendored Normal file
View File

@@ -0,0 +1,6 @@
const lang = Object.freeze({ "displayName": "Berry", "name": "berry", "patterns": [{ "include": "#controls" }, { "include": "#strings" }, { "include": "#comment-block" }, { "include": "#comments" }, { "include": "#keywords" }, { "include": "#function" }, { "include": "#member" }, { "include": "#identifier" }, { "include": "#number" }, { "include": "#operator" }], "repository": { "comment-block": { "begin": "\\#\\-", "end": "\\-#", "name": "comment.berry", "patterns": [{}] }, "comments": { "begin": "\\#", "end": "\\n", "name": "comment.line.berry", "patterns": [{}] }, "controls": { "patterns": [{ "match": "\\b(if|elif|else|for|while|do|end|break|continue|return|try|except|raise)\\b", "name": "keyword.control.berry" }] }, "function": { "patterns": [{ "match": "\\b([a-zA-Z_][a-zA-Z0-9_]*(?=\\s*\\())", "name": "entity.name.function.berry" }] }, "identifier": { "patterns": [{ "match": "\\b[_A-Za-z]\\w+\\b", "name": "identifier.berry" }] }, "keywords": { "patterns": [{ "match": "\\b(var|static|def|class|true|false|nil|self|super|import|as|_class)\\b", "name": "keyword.berry" }] }, "member": { "patterns": [{ "captures": { "0": { "name": "entity.other.attribute-name.berry" } }, "match": "\\.([a-zA-Z_][a-zA-Z0-9_]*)" }] }, "number": { "patterns": [{ "match": "0x[a-fA-F0-9]+|\\d+|(\\d+\\.?|\\.\\d)\\d*([eE][+-]?\\d+)?", "name": "constant.numeric.berry" }] }, "operator": { "patterns": [{ "match": "\\(|\\)|\\[|\\]|\\.|-|\\!|~|\\*|/|%|\\+|&|\\^|\\||<|>|=|:", "name": "keyword.operator.berry" }] }, "strings": { "patterns": [{ "begin": `("|')`, "end": "\\1", "name": "string.quoted.double.berry", "patterns": [{ "match": `(\\\\x[\\h]{2})|(\\\\[0-7]{3})|(\\\\\\\\)|(\\\\")|(\\\\')|(\\\\a)|(\\\\b)|(\\\\f)|(\\\\n)|(\\\\r)|(\\\\t)|(\\\\v)`, "name": "constant.character.escape.berry" }] }, { "begin": `f("|')`, "end": "\\1", "name": "string.quoted.other.berry", "patterns": [{ "match": `(\\\\x[\\h]{2})|(\\\\[0-7]{3})|(\\\\\\\\)|(\\\\")|(\\\\')|(\\\\a)|(\\\\b)|(\\\\f)|(\\\\n)|(\\\\r)|(\\\\t)|(\\\\v)`, "name": "constant.character.escape.berry" }, { "match": "\\{\\{[^\\}]*\\}\\}", "name": "string.quoted.other.berry" }, { "begin": "\\{", "end": "\\}", "name": "keyword.other.unit.berry", "patterns": [{ "include": "#keywords" }, { "include": "#numbers" }, { "include": "#identifier" }, { "include": "#operator" }, { "include": "#member" }, { "include": "#function" }] }] }] } }, "scopeName": "source.berry", "aliases": ["be"] });
var berry = [
lang
];
export { berry as default };

1
node_modules/shiki/dist/langs/bibtex.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/bibtex.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/bicep.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/bicep.mjs generated vendored Normal file
View File

@@ -0,0 +1,6 @@
const lang = Object.freeze({ "displayName": "Bicep", "fileTypes": [".bicep"], "name": "bicep", "patterns": [{ "include": "#expression" }, { "include": "#comments" }], "repository": { "array-literal": { "begin": "\\[(?!(?:[ \\t\\r\\n]|\\/\\*(?:\\*(?!\\/)|[^*])*\\*\\/)*\\bfor\\b)", "end": "]", "name": "meta.array-literal.bicep", "patterns": [{ "include": "#expression" }, { "include": "#comments" }] }, "block-comment": { "begin": "/\\*", "end": "\\*/", "name": "comment.block.bicep" }, "comments": { "patterns": [{ "include": "#line-comment" }, { "include": "#block-comment" }] }, "decorator": { "begin": "@(?:[ \\t\\r\\n]|\\/\\*(?:\\*(?!\\/)|[^*])*\\*\\/)*(?=\\b[_$[:alpha:]][_$[:alnum:]]*\\b)", "end": "", "name": "meta.decorator.bicep", "patterns": [{ "include": "#expression" }, { "include": "#comments" }] }, "directive": { "begin": "#\\b[_a-zA-Z-0-9]+\\b", "end": "$", "name": "meta.directive.bicep", "patterns": [{ "include": "#directive-variable" }, { "include": "#comments" }] }, "directive-variable": { "match": "\\b[_a-zA-Z-0-9]+\\b", "name": "keyword.control.declaration.bicep" }, "escape-character": { "match": "\\\\(u{[0-9A-Fa-f]+}|n|r|t|\\\\|'|\\${)", "name": "constant.character.escape.bicep" }, "expression": { "patterns": [{ "include": "#string-literal" }, { "include": "#string-verbatim" }, { "include": "#numeric-literal" }, { "include": "#named-literal" }, { "include": "#object-literal" }, { "include": "#array-literal" }, { "include": "#keyword" }, { "include": "#identifier" }, { "include": "#function-call" }, { "include": "#decorator" }, { "include": "#lambda-start" }, { "include": "#directive" }] }, "function-call": { "begin": "(\\b[_$[:alpha:]][_$[:alnum:]]*\\b)(?:[ \\t\\r\\n]|\\/\\*(?:\\*(?!\\/)|[^*])*\\*\\/)*\\(", "beginCaptures": { "1": { "name": "entity.name.function.bicep" } }, "end": "\\)", "name": "meta.function-call.bicep", "patterns": [{ "include": "#expression" }, { "include": "#comments" }] }, "identifier": { "match": "\\b[_$[:alpha:]][_$[:alnum:]]*\\b(?!(?:[ \\t\\r\\n]|\\/\\*(?:\\*(?!\\/)|[^*])*\\*\\/)*\\()", "name": "variable.other.readwrite.bicep" }, "keyword": { "match": "\\b(metadata|targetScope|resource|module|param|var|output|for|in|if|existing|import|as|type|with|using|func|assert|provider)\\b", "name": "keyword.control.declaration.bicep" }, "lambda-start": { "begin": "(\\((?:[ \\t\\r\\n]|\\/\\*(?:\\*(?!\\/)|[^*])*\\*\\/)*\\b[_$[:alpha:]][_$[:alnum:]]*\\b(?:[ \\t\\r\\n]|\\/\\*(?:\\*(?!\\/)|[^*])*\\*\\/)*(,(?:[ \\t\\r\\n]|\\/\\*(?:\\*(?!\\/)|[^*])*\\*\\/)*\\b[_$[:alpha:]][_$[:alnum:]]*\\b(?:[ \\t\\r\\n]|\\/\\*(?:\\*(?!\\/)|[^*])*\\*\\/)*)*\\)|\\((?:[ \\t\\r\\n]|\\/\\*(?:\\*(?!\\/)|[^*])*\\*\\/)*\\)|(?:[ \\t\\r\\n]|\\/\\*(?:\\*(?!\\/)|[^*])*\\*\\/)*\\b[_$[:alpha:]][_$[:alnum:]]*\\b(?:[ \\t\\r\\n]|\\/\\*(?:\\*(?!\\/)|[^*])*\\*\\/)*)(?=(?:[ \\t\\r\\n]|\\/\\*(?:\\*(?!\\/)|[^*])*\\*\\/)*=>)", "beginCaptures": { "1": { "name": "meta.undefined.bicep", "patterns": [{ "include": "#identifier" }, { "include": "#comments" }] } }, "end": "(?:[ \\t\\r\\n]|\\/\\*(?:\\*(?!\\/)|[^*])*\\*\\/)*=>", "name": "meta.lambda-start.bicep" }, "line-comment": { "match": "//.*(?=$)", "name": "comment.line.double-slash.bicep" }, "named-literal": { "match": "\\b(true|false|null)\\b", "name": "constant.language.bicep" }, "numeric-literal": { "match": "[0-9]+", "name": "constant.numeric.bicep" }, "object-literal": { "begin": "{", "end": "}", "name": "meta.object-literal.bicep", "patterns": [{ "include": "#object-property-key" }, { "include": "#expression" }, { "include": "#comments" }] }, "object-property-key": { "match": "\\b[_$[:alpha:]][_$[:alnum:]]*\\b(?=(?:[ \\t\\r\\n]|\\/\\*(?:\\*(?!\\/)|[^*])*\\*\\/)*:)", "name": "variable.other.property.bicep" }, "string-literal": { "begin": "'(?!'')", "end": "'", "name": "string.quoted.single.bicep", "patterns": [{ "include": "#escape-character" }, { "include": "#string-literal-subst" }] }, "string-literal-subst": { "begin": "(?<!\\\\)(\\${)", "beginCaptures": { "1": { "name": "punctuation.definition.template-expression.begin.bicep" } }, "end": "(})", "endCaptures": { "1": { "name": "punctuation.definition.template-expression.end.bicep" } }, "name": "meta.string-literal-subst.bicep", "patterns": [{ "include": "#expression" }, { "include": "#comments" }] }, "string-verbatim": { "begin": "'''", "end": "'''(?!')", "name": "string.quoted.multi.bicep", "patterns": [] } }, "scopeName": "source.bicep" });
var bicep = [
lang
];
export { bicep as default };

1
node_modules/shiki/dist/langs/blade.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

20
node_modules/shiki/dist/langs/blade.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/c.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

20
node_modules/shiki/dist/langs/c.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/cadence.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/cadence.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/cdc.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/cdc.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from './cadence.mjs';

1
node_modules/shiki/dist/langs/clarity.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/clarity.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/clj.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/clj.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from './clojure.mjs';

1
node_modules/shiki/dist/langs/clojure.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/clojure.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/cmake.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/cmake.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/cmd.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/cmd.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from './vb.mjs';

1
node_modules/shiki/dist/langs/cobol.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

15
node_modules/shiki/dist/langs/cobol.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/codeql.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/codeql.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/coffee.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

15
node_modules/shiki/dist/langs/coffee.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/coffeescript.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

2
node_modules/shiki/dist/langs/coffeescript.mjs generated vendored Normal file
View File

@@ -0,0 +1,2 @@
export { default } from './coffee.mjs';
import './javascript.mjs';

1
node_modules/shiki/dist/langs/common-lisp.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

6
node_modules/shiki/dist/langs/common-lisp.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/shiki/dist/langs/console.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

2
node_modules/shiki/dist/langs/console.mjs generated vendored Normal file
View File

@@ -0,0 +1,2 @@
export { default } from './shellsession.mjs';
import './shellscript.mjs';

1
node_modules/shiki/dist/langs/cpp-macro.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

Some files were not shown because too many files have changed in this diff Show More