From 436ab40334b23e5b71fe9360b485cd065a1b264a Mon Sep 17 00:00:00 2001 From: BoYanZh Date: Tue, 29 Nov 2022 12:42:07 +0800 Subject: [PATCH] style: setup prettier & husky (#23) --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 7 +- .husky/.gitignore | 1 + .husky/pre-commit | 4 + .prettierignore | 5 + package.json | 9 +- pnpm-lock.yaml | 1188 ++- public/streamer/mitm.html | 156 +- public/streamer/sw.js | 83 +- renovate.json | 4 +- scripts/i18n.mjs | 14 +- src/app/App.tsx | 72 +- src/app/i18n.ts | 38 +- src/app/index.css | 3 +- src/app/index.tsx | 26 +- src/app/theme.ts | 10 +- src/components/FullLoading.tsx | 36 +- src/components/Hello.tsx | 4 +- src/components/ImageWithError.tsx | 14 +- src/components/LinkWithBase.tsx | 18 +- src/components/Markdown.tsx | 20 +- src/components/ModalInput.tsx | 50 +- src/components/MonacoEditor.tsx | 68 +- src/components/Paginator.tsx | 70 +- src/components/SwitchColorMode.tsx | 16 +- src/components/Wether.tsx | 12 +- src/components/highlight.js | 9107 +++++++++++++++++--- src/components/index.ts | 24 +- src/hooks/index.ts | 16 +- src/hooks/useDownload.ts | 42 +- src/hooks/useLink.ts | 90 +- src/hooks/useT.ts | 26 +- src/hooks/useTitle.ts | 56 +- src/hooks/useUtil.ts | 40 +- src/index.d.ts | 8 +- src/lang/en/drivers.json | 2 +- src/lang/en/entry.ts | 10 +- src/lang/en/settings.json | 2 +- src/main.tsx | 10 +- src/pages/home/Body.tsx | 14 +- src/pages/home/Container.tsx | 12 +- src/pages/home/Footer.tsx | 22 +- src/pages/home/Layout.tsx | 28 +- src/pages/home/Nav.tsx | 39 +- src/pages/home/Password.tsx | 22 +- src/pages/home/file/File.tsx | 30 +- src/pages/home/file/open-with.tsx | 22 +- src/pages/home/folder/Folder.tsx | 70 +- src/pages/home/folder/Grid.tsx | 18 +- src/pages/home/folder/GridSkeleton.tsx | 10 +- src/pages/home/folder/ListSkeleton.tsx | 10 +- src/pages/home/folder/context-menu.tsx | 58 +- src/pages/home/previews/audio.tsx | 56 +- src/pages/home/previews/download.tsx | 22 +- src/pages/home/previews/html.tsx | 14 +- src/pages/home/previews/iframe.tsx | 20 +- src/pages/home/previews/image.tsx | 14 +- src/pages/home/previews/index.ts | 44 +- src/pages/home/previews/info.tsx | 14 +- src/pages/home/previews/ipa.tsx | 24 +- src/pages/home/previews/plist.tsx | 22 +- src/pages/home/toolbar/Aria2.tsx | 38 +- src/pages/home/toolbar/Center.tsx | 34 +- src/pages/home/toolbar/CopyLink.tsx | 22 +- src/pages/home/toolbar/CopyMove.tsx | 72 +- src/pages/home/toolbar/Delete.tsx | 42 +- src/pages/home/toolbar/Download.tsx | 52 +- src/pages/home/toolbar/Icon.tsx | 36 +- src/pages/home/toolbar/LocalSettings.tsx | 38 +- src/pages/home/toolbar/Mkdir.tsx | 40 +- src/pages/home/toolbar/ModalWrapper.tsx | 36 +- src/pages/home/toolbar/NewFile.tsx | 47 +- src/pages/home/toolbar/Rename.tsx | 48 +- src/pages/home/toolbar/Right.tsx | 52 +- src/pages/home/toolbar/Toolbar.tsx | 36 +- src/pages/home/toolbar/operations.ts | 26 +- src/pages/home/uploads/types.ts | 2 +- src/pages/login/CornerBottom.tsx | 14 +- src/pages/login/CornerTop.tsx | 14 +- src/pages/login/LoginBg.tsx | 14 +- src/pages/manage/About.tsx | 14 +- src/pages/manage/Dashboard.tsx | 12 +- src/pages/manage/Header.tsx | 36 +- src/pages/manage/SideMenu.tsx | 81 +- src/pages/manage/common/DeletePopover.tsx | 16 +- src/pages/manage/common/ResponsiveGrid.tsx | 8 +- src/pages/manage/index.tsx | 34 +- src/pages/manage/messenger/Show.tsx | 12 +- src/pages/manage/metas/Metas.tsx | 52 +- src/pages/manage/routes.tsx | 34 +- src/pages/manage/storages/Item.tsx | 44 +- src/pages/manage/storages/Storages.tsx | 7 +- src/pages/manage/tasks/Aria2.tsx | 14 +- src/pages/manage/tasks/Copy.tsx | 12 +- src/pages/manage/users/AddOrEdit.tsx | 8 +- src/pages/test/index.tsx | 10 +- src/store/key-event.ts | 10 +- src/store/local_settings.ts | 12 +- src/store/obj.ts | 150 +- src/types/driver_item.ts | 30 +- src/types/index.ts | 18 +- src/types/item_type.ts | 2 +- src/types/meta.ts | 21 +- src/types/obj.ts | 18 +- src/types/setting.ts | 18 +- src/types/storage.ts | 30 +- src/types/task.ts | 12 +- src/types/user.ts | 16 +- src/utils/async_pool.ts | 16 +- src/utils/bus.ts | 12 +- src/utils/compatibility.ts | 14 +- src/utils/config.ts | 22 +- src/utils/const.ts | 12 +- src/utils/convert.ts | 12 +- src/utils/index.ts | 22 +- src/utils/log.ts | 6 +- src/utils/notify.tsx | 22 +- src/utils/request.ts | 36 +- src/utils/zip-stream.js | 135 +- tsconfig.json | 6 +- vite.config.ts | 12 +- 121 files changed, 10603 insertions(+), 3066 deletions(-) create mode 100644 .husky/.gitignore create mode 100755 .husky/pre-commit create mode 100644 .prettierignore diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eca0e3d..0eb01f1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -73,4 +73,4 @@ jobs: branch: dev directory: web-dist repository: alist-org/web-dist - force: true \ No newline at end of file + force: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7aa1e04..7dc88e7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,8 +3,7 @@ name: release on: push: tags: - - '*' - + - "*" jobs: changelog: @@ -15,7 +14,7 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 - + - name: Generate changelog run: npx changelogithub # or changelogithub@0.12 if ensure the stable result env: @@ -88,4 +87,4 @@ jobs: - name: Release uses: softprops/action-gh-release@v1 with: - files: compress/* \ No newline at end of file + files: compress/* diff --git a/.husky/.gitignore b/.husky/.gitignore new file mode 100644 index 0000000..31354ec --- /dev/null +++ b/.husky/.gitignore @@ -0,0 +1 @@ +_ diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100755 index 0000000..d24fdfc --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1,4 @@ +#!/usr/bin/env sh +. "$(dirname -- "$0")/_/husky.sh" + +npx lint-staged diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..9524bb7 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,5 @@ +dist/ +solid-router/ +pnpm-lock.yaml +.husky +.prettierignore diff --git a/package.json b/package.json index ab94072..1aaee7c 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,8 @@ "start": "vite", "dev": "vite", "build": "vite build", - "serve": "vite preview" + "serve": "vite preview", + "prepare": "husky install" }, "license": "MIT", "devDependencies": { @@ -35,6 +36,9 @@ "@types/node": "^18.7.5", "@types/streamsaver": "^2.0.1", "@vitejs/plugin-legacy": "^2.0.1", + "husky": "^8.0.2", + "lint-staged": "^13.0.4", + "prettier": "2.8.0", "terser": "^5.14.2", "typescript": "^4.7.4", "vite": "^3.0.8", @@ -65,5 +69,8 @@ "solid-markdown": "^1.2.0", "solid-transition-group": "^0.0.12", "streamsaver": "^2.0.6" + }, + "lint-staged": { + "**/*": "prettier --write" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ce9abd5..c39e5a6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -18,8 +18,11 @@ specifiers: copy-to-clipboard: ^3.3.2 flv.js: ^1.6.2 hls.js: ^1.2.1 + husky: ^8.0.2 lightgallery: ^2.5.0 + lint-staged: ^13.0.4 mitt: ^3.0.0 + prettier: 2.8.0 rehype-raw: ^6.1.1 remark-gfm: ^3.0.1 solid-contextmenu: 0.0.2 @@ -64,6 +67,9 @@ devDependencies: '@types/node': 18.7.5 '@types/streamsaver': 2.0.1 '@vitejs/plugin-legacy': 2.0.1_terser@5.14.2+vite@3.0.8 + husky: registry.npmmirror.com/husky/8.0.2 + lint-staged: registry.npmmirror.com/lint-staged/13.0.4 + prettier: registry.npmmirror.com/prettier/2.8.0 terser: 5.14.2 typescript: 4.7.4 vite: 3.0.8_terser@5.14.2 @@ -375,7 +381,7 @@ packages: '@babel/helper-split-export-declaration': 7.18.6 '@babel/parser': 7.18.11 '@babel/types': 7.18.10 - debug: 4.3.4 + debug: registry.npmmirror.com/debug/4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -400,15 +406,6 @@ packages: - encoding dev: true - /@esbuild/linux-loong64/0.14.54: - resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - dev: true - optional: true - /@floating-ui/core/0.6.2: resolution: {integrity: sha512-jktYRmZwmau63adUG3GKOAVCofBXkk55S/zQ94XOorAHhwqFIOFAy1rSp2N0Wp6/tGbe9V3u/ExlGZypyY17rg==} dev: false @@ -513,7 +510,7 @@ packages: resolution: {integrity: sha512-2vUBdH9uWTlRbuErhcsMmt1jvMTTqvGmn9fHq8FleFDXBlHFs5jZzHJT9iw+4kR1h6a4SZQuCf72b9ji92qNYA==} dependencies: '@motionone/utils': 10.14.0 - tslib: 2.4.0 + tslib: registry.npmmirror.com/tslib/2.4.0 dev: false /@motionone/generators/10.14.0: @@ -649,13 +646,6 @@ packages: hasBin: true dev: true - /ansi-styles/3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} - dependencies: - color-convert: 1.9.3 - dev: true - /aplayer/1.10.1: resolution: {integrity: sha512-HAfyxgCUTLAqtYlxzzK9Fyqg6y+kZ9CqT1WfeWE8FSzwspT6oBqWOZHANPHF3RGTtC33IsyEgrfthPDzU5r9kQ==} dependencies: @@ -764,7 +754,7 @@ packages: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} dependencies: - ansi-styles: 3.2.1 + ansi-styles: registry.npmmirror.com/ansi-styles/3.2.1 escape-string-regexp: 1.0.5 supports-color: 5.5.0 dev: true @@ -782,16 +772,6 @@ packages: engines: {node: '>=6'} dev: false - /color-convert/1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} - dependencies: - color-name: 1.1.3 - dev: true - - /color-name/1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - dev: true - /combined-stream/1.0.8: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} engines: {node: '>= 0.8'} @@ -861,7 +841,8 @@ packages: supports-color: optional: true dependencies: - ms: 2.1.2 + ms: registry.npmmirror.com/ms/2.1.2 + dev: true /decode-named-character-reference/1.0.2: resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} @@ -923,213 +904,33 @@ packages: resolution: {integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==} dev: false - /esbuild-android-64/0.14.54: - resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - dev: true - optional: true - - /esbuild-android-arm64/0.14.54: - resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true - optional: true - - /esbuild-darwin-64/0.14.54: - resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /esbuild-darwin-arm64/0.14.54: - resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /esbuild-freebsd-64/0.14.54: - resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /esbuild-freebsd-arm64/0.14.54: - resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /esbuild-linux-32/0.14.54: - resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /esbuild-linux-64/0.14.54: - resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /esbuild-linux-arm/0.14.54: - resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /esbuild-linux-arm64/0.14.54: - resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /esbuild-linux-mips64le/0.14.54: - resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /esbuild-linux-ppc64le/0.14.54: - resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /esbuild-linux-riscv64/0.14.54: - resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /esbuild-linux-s390x/0.14.54: - resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /esbuild-netbsd-64/0.14.54: - resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - dev: true - optional: true - - /esbuild-openbsd-64/0.14.54: - resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - dev: true - optional: true - - /esbuild-sunos-64/0.14.54: - resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - dev: true - optional: true - - /esbuild-windows-32/0.14.54: - resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /esbuild-windows-64/0.14.54: - resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /esbuild-windows-arm64/0.14.54: - resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - /esbuild/0.14.54: resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/linux-loong64': 0.14.54 - esbuild-android-64: 0.14.54 - esbuild-android-arm64: 0.14.54 - esbuild-darwin-64: 0.14.54 - esbuild-darwin-arm64: 0.14.54 - esbuild-freebsd-64: 0.14.54 - esbuild-freebsd-arm64: 0.14.54 - esbuild-linux-32: 0.14.54 - esbuild-linux-64: 0.14.54 - esbuild-linux-arm: 0.14.54 - esbuild-linux-arm64: 0.14.54 - esbuild-linux-mips64le: 0.14.54 - esbuild-linux-ppc64le: 0.14.54 - esbuild-linux-riscv64: 0.14.54 - esbuild-linux-s390x: 0.14.54 - esbuild-netbsd-64: 0.14.54 - esbuild-openbsd-64: 0.14.54 - esbuild-sunos-64: 0.14.54 - esbuild-windows-32: 0.14.54 - esbuild-windows-64: 0.14.54 - esbuild-windows-arm64: 0.14.54 + '@esbuild/linux-loong64': registry.npmmirror.com/@esbuild/linux-loong64/0.14.54 + esbuild-android-64: registry.npmmirror.com/esbuild-android-64/0.14.54 + esbuild-android-arm64: registry.npmmirror.com/esbuild-android-arm64/0.14.54 + esbuild-darwin-64: registry.npmmirror.com/esbuild-darwin-64/0.14.54 + esbuild-darwin-arm64: registry.npmmirror.com/esbuild-darwin-arm64/0.14.54 + esbuild-freebsd-64: registry.npmmirror.com/esbuild-freebsd-64/0.14.54 + esbuild-freebsd-arm64: registry.npmmirror.com/esbuild-freebsd-arm64/0.14.54 + esbuild-linux-32: registry.npmmirror.com/esbuild-linux-32/0.14.54 + esbuild-linux-64: registry.npmmirror.com/esbuild-linux-64/0.14.54 + esbuild-linux-arm: registry.npmmirror.com/esbuild-linux-arm/0.14.54 + esbuild-linux-arm64: registry.npmmirror.com/esbuild-linux-arm64/0.14.54 + esbuild-linux-mips64le: registry.npmmirror.com/esbuild-linux-mips64le/0.14.54 + esbuild-linux-ppc64le: registry.npmmirror.com/esbuild-linux-ppc64le/0.14.54 + esbuild-linux-riscv64: registry.npmmirror.com/esbuild-linux-riscv64/0.14.54 + esbuild-linux-s390x: registry.npmmirror.com/esbuild-linux-s390x/0.14.54 + esbuild-netbsd-64: registry.npmmirror.com/esbuild-netbsd-64/0.14.54 + esbuild-openbsd-64: registry.npmmirror.com/esbuild-openbsd-64/0.14.54 + esbuild-sunos-64: registry.npmmirror.com/esbuild-sunos-64/0.14.54 + esbuild-windows-32: registry.npmmirror.com/esbuild-windows-32/0.14.54 + esbuild-windows-64: registry.npmmirror.com/esbuild-windows-64/0.14.54 + esbuild-windows-arm64: registry.npmmirror.com/esbuild-windows-arm64/0.14.54 dev: true /escalade/3.1.1: @@ -1199,14 +1000,6 @@ packages: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} dev: true - /fsevents/2.3.2: - resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - requiresBuild: true - dev: true - optional: true - /function-bind/1.1.1: resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} dev: true @@ -1787,7 +1580,7 @@ packages: resolution: {integrity: sha512-ryTDy6UUunOXy2HPjelppgJ2sNfcPz1pLlMdA6Rz9jPzhLikWXv/irpWV/I2jd68Uhmny7hHxAlAhk4+vWggpg==} dependencies: '@types/debug': 4.1.7 - debug: 4.3.4 + debug: registry.npmmirror.com/debug/4.3.4 decode-named-character-reference: 1.0.2 micromark-core-commonmark: 1.0.6 micromark-factory-space: 1.0.0 @@ -1858,9 +1651,6 @@ packages: engines: {node: '>=4'} dev: false - /ms/2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} - /nanoid/3.3.4: resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} @@ -2025,7 +1815,7 @@ packages: engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: - fsevents: 2.3.2 + fsevents: registry.npmmirror.com/fsevents/2.3.2 dev: true /sade/1.8.1: @@ -2398,7 +2188,7 @@ packages: rollup: 2.77.3 terser: 5.14.2 optionalDependencies: - fsevents: 2.3.2 + fsevents: registry.npmmirror.com/fsevents/2.3.2 dev: true /web-namespaces/2.0.1: @@ -2438,3 +2228,911 @@ packages: /zwitch/2.0.2: resolution: {integrity: sha512-JZxotl7SxAJH0j7dN4pxsTV6ZLXoLdGME+PsjkL/DaBrVryK9kTGq06GfKrwcSOqypP+fdXGoCHE36b99fWVoA==} dev: false + + registry.npmmirror.com/@esbuild/linux-loong64/0.14.54: + resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.14.54.tgz} + name: '@esbuild/linux-loong64' + version: 0.14.54 + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/aggregate-error/3.1.0: + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/aggregate-error/-/aggregate-error-3.1.0.tgz} + name: aggregate-error + version: 3.1.0 + engines: {node: '>=8'} + dependencies: + clean-stack: registry.npmmirror.com/clean-stack/2.2.0 + indent-string: registry.npmmirror.com/indent-string/4.0.0 + dev: true + + registry.npmmirror.com/ansi-escapes/4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz} + name: ansi-escapes + version: 4.3.2 + engines: {node: '>=8'} + dependencies: + type-fest: registry.npmmirror.com/type-fest/0.21.3 + dev: true + + registry.npmmirror.com/ansi-regex/5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz} + name: ansi-regex + version: 5.0.1 + engines: {node: '>=8'} + dev: true + + registry.npmmirror.com/ansi-regex/6.0.1: + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-6.0.1.tgz} + name: ansi-regex + version: 6.0.1 + engines: {node: '>=12'} + dev: true + + registry.npmmirror.com/ansi-styles/3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz} + name: ansi-styles + version: 3.2.1 + engines: {node: '>=4'} + dependencies: + color-convert: registry.npmmirror.com/color-convert/1.9.3 + dev: true + + registry.npmmirror.com/ansi-styles/4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz} + name: ansi-styles + version: 4.3.0 + engines: {node: '>=8'} + dependencies: + color-convert: registry.npmmirror.com/color-convert/2.0.1 + dev: true + + registry.npmmirror.com/ansi-styles/6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-6.2.1.tgz} + name: ansi-styles + version: 6.2.1 + engines: {node: '>=12'} + dev: true + + registry.npmmirror.com/astral-regex/2.0.0: + resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/astral-regex/-/astral-regex-2.0.0.tgz} + name: astral-regex + version: 2.0.0 + engines: {node: '>=8'} + dev: true + + registry.npmmirror.com/braces/3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz} + name: braces + version: 3.0.2 + engines: {node: '>=8'} + dependencies: + fill-range: registry.npmmirror.com/fill-range/7.0.1 + dev: true + + registry.npmmirror.com/clean-stack/2.2.0: + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/clean-stack/-/clean-stack-2.2.0.tgz} + name: clean-stack + version: 2.2.0 + engines: {node: '>=6'} + dev: true + + registry.npmmirror.com/cli-cursor/3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cli-cursor/-/cli-cursor-3.1.0.tgz} + name: cli-cursor + version: 3.1.0 + engines: {node: '>=8'} + dependencies: + restore-cursor: registry.npmmirror.com/restore-cursor/3.1.0 + dev: true + + registry.npmmirror.com/cli-truncate/2.1.0: + resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cli-truncate/-/cli-truncate-2.1.0.tgz} + name: cli-truncate + version: 2.1.0 + engines: {node: '>=8'} + dependencies: + slice-ansi: registry.npmmirror.com/slice-ansi/3.0.0 + string-width: registry.npmmirror.com/string-width/4.2.3 + dev: true + + registry.npmmirror.com/cli-truncate/3.1.0: + resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cli-truncate/-/cli-truncate-3.1.0.tgz} + name: cli-truncate + version: 3.1.0 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + slice-ansi: registry.npmmirror.com/slice-ansi/5.0.0 + string-width: registry.npmmirror.com/string-width/5.1.2 + dev: true + + registry.npmmirror.com/color-convert/1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz} + name: color-convert + version: 1.9.3 + dependencies: + color-name: registry.npmmirror.com/color-name/1.1.3 + dev: true + + registry.npmmirror.com/color-convert/2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz} + name: color-convert + version: 2.0.1 + engines: {node: '>=7.0.0'} + dependencies: + color-name: registry.npmmirror.com/color-name/1.1.4 + dev: true + + registry.npmmirror.com/color-name/1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz} + name: color-name + version: 1.1.3 + dev: true + + registry.npmmirror.com/color-name/1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz} + name: color-name + version: 1.1.4 + dev: true + + registry.npmmirror.com/colorette/2.0.19: + resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/colorette/-/colorette-2.0.19.tgz} + name: colorette + version: 2.0.19 + dev: true + + registry.npmmirror.com/commander/9.4.1: + resolution: {integrity: sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/commander/-/commander-9.4.1.tgz} + name: commander + version: 9.4.1 + engines: {node: ^12.20.0 || >=14} + dev: true + + registry.npmmirror.com/cross-spawn/7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz} + name: cross-spawn + version: 7.0.3 + engines: {node: '>= 8'} + dependencies: + path-key: registry.npmmirror.com/path-key/3.1.1 + shebang-command: registry.npmmirror.com/shebang-command/2.0.0 + which: registry.npmmirror.com/which/2.0.2 + dev: true + + registry.npmmirror.com/debug/4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz} + name: debug + version: 4.3.4 + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: registry.npmmirror.com/ms/2.1.2 + + registry.npmmirror.com/eastasianwidth/0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz} + name: eastasianwidth + version: 0.2.0 + dev: true + + registry.npmmirror.com/emoji-regex/8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz} + name: emoji-regex + version: 8.0.0 + dev: true + + registry.npmmirror.com/emoji-regex/9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/emoji-regex/-/emoji-regex-9.2.2.tgz} + name: emoji-regex + version: 9.2.2 + dev: true + + registry.npmmirror.com/esbuild-android-64/0.14.54: + resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-android-64/-/esbuild-android-64-0.14.54.tgz} + name: esbuild-android-64 + version: 0.14.54 + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-android-arm64/0.14.54: + resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-android-arm64/-/esbuild-android-arm64-0.14.54.tgz} + name: esbuild-android-arm64 + version: 0.14.54 + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-darwin-64/0.14.54: + resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz} + name: esbuild-darwin-64 + version: 0.14.54 + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-darwin-arm64/0.14.54: + resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.54.tgz} + name: esbuild-darwin-arm64 + version: 0.14.54 + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-freebsd-64/0.14.54: + resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.54.tgz} + name: esbuild-freebsd-64 + version: 0.14.54 + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-freebsd-arm64/0.14.54: + resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.54.tgz} + name: esbuild-freebsd-arm64 + version: 0.14.54 + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-linux-32/0.14.54: + resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-32/-/esbuild-linux-32-0.14.54.tgz} + name: esbuild-linux-32 + version: 0.14.54 + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-linux-64/0.14.54: + resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz} + name: esbuild-linux-64 + version: 0.14.54 + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-linux-arm/0.14.54: + resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-arm/-/esbuild-linux-arm-0.14.54.tgz} + name: esbuild-linux-arm + version: 0.14.54 + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-linux-arm64/0.14.54: + resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.54.tgz} + name: esbuild-linux-arm64 + version: 0.14.54 + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-linux-mips64le/0.14.54: + resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.54.tgz} + name: esbuild-linux-mips64le + version: 0.14.54 + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-linux-ppc64le/0.14.54: + resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.54.tgz} + name: esbuild-linux-ppc64le + version: 0.14.54 + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-linux-riscv64/0.14.54: + resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.54.tgz} + name: esbuild-linux-riscv64 + version: 0.14.54 + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-linux-s390x/0.14.54: + resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.54.tgz} + name: esbuild-linux-s390x + version: 0.14.54 + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-netbsd-64/0.14.54: + resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.54.tgz} + name: esbuild-netbsd-64 + version: 0.14.54 + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-openbsd-64/0.14.54: + resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.54.tgz} + name: esbuild-openbsd-64 + version: 0.14.54 + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-sunos-64/0.14.54: + resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-sunos-64/-/esbuild-sunos-64-0.14.54.tgz} + name: esbuild-sunos-64 + version: 0.14.54 + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-windows-32/0.14.54: + resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-32/-/esbuild-windows-32-0.14.54.tgz} + name: esbuild-windows-32 + version: 0.14.54 + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-windows-64/0.14.54: + resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-64/-/esbuild-windows-64-0.14.54.tgz} + name: esbuild-windows-64 + version: 0.14.54 + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-windows-arm64/0.14.54: + resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.54.tgz} + name: esbuild-windows-arm64 + version: 0.14.54 + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/execa/6.1.0: + resolution: {integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/execa/-/execa-6.1.0.tgz} + name: execa + version: 6.1.0 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + cross-spawn: registry.npmmirror.com/cross-spawn/7.0.3 + get-stream: registry.npmmirror.com/get-stream/6.0.1 + human-signals: registry.npmmirror.com/human-signals/3.0.1 + is-stream: registry.npmmirror.com/is-stream/3.0.0 + merge-stream: registry.npmmirror.com/merge-stream/2.0.0 + npm-run-path: registry.npmmirror.com/npm-run-path/5.1.0 + onetime: registry.npmmirror.com/onetime/6.0.0 + signal-exit: registry.npmmirror.com/signal-exit/3.0.7 + strip-final-newline: registry.npmmirror.com/strip-final-newline/3.0.0 + dev: true + + registry.npmmirror.com/fill-range/7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz} + name: fill-range + version: 7.0.1 + engines: {node: '>=8'} + dependencies: + to-regex-range: registry.npmmirror.com/to-regex-range/5.0.1 + dev: true + + registry.npmmirror.com/fsevents/2.3.2: + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fsevents/-/fsevents-2.3.2.tgz} + name: fsevents + version: 2.3.2 + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/get-stream/6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz} + name: get-stream + version: 6.0.1 + engines: {node: '>=10'} + dev: true + + registry.npmmirror.com/human-signals/3.0.1: + resolution: {integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/human-signals/-/human-signals-3.0.1.tgz} + name: human-signals + version: 3.0.1 + engines: {node: '>=12.20.0'} + dev: true + + registry.npmmirror.com/husky/8.0.2: + resolution: {integrity: sha512-Tkv80jtvbnkK3mYWxPZePGFpQ/tT3HNSs/sasF9P2YfkMezDl3ON37YN6jUUI4eTg5LcyVynlb6r4eyvOmspvg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/husky/-/husky-8.0.2.tgz} + name: husky + version: 8.0.2 + engines: {node: '>=14'} + hasBin: true + dev: true + + registry.npmmirror.com/indent-string/4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/indent-string/-/indent-string-4.0.0.tgz} + name: indent-string + version: 4.0.0 + engines: {node: '>=8'} + dev: true + + registry.npmmirror.com/is-fullwidth-code-point/3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz} + name: is-fullwidth-code-point + version: 3.0.0 + engines: {node: '>=8'} + dev: true + + registry.npmmirror.com/is-fullwidth-code-point/4.0.0: + resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz} + name: is-fullwidth-code-point + version: 4.0.0 + engines: {node: '>=12'} + dev: true + + registry.npmmirror.com/is-number/7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz} + name: is-number + version: 7.0.0 + engines: {node: '>=0.12.0'} + dev: true + + registry.npmmirror.com/is-stream/3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-stream/-/is-stream-3.0.0.tgz} + name: is-stream + version: 3.0.0 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true + + registry.npmmirror.com/isexe/2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz} + name: isexe + version: 2.0.0 + dev: true + + registry.npmmirror.com/lilconfig/2.0.6: + resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lilconfig/-/lilconfig-2.0.6.tgz} + name: lilconfig + version: 2.0.6 + engines: {node: '>=10'} + dev: true + + registry.npmmirror.com/lint-staged/13.0.4: + resolution: {integrity: sha512-HxlHCXoYRsq9QCby5wFozmZW00hMs/9e3l+/dz6Qr8Kle4UH0kJTdABAbqhzG+3pcG6QjL9kz7NgGBfph+a5dw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/lint-staged/-/lint-staged-13.0.4.tgz} + name: lint-staged + version: 13.0.4 + engines: {node: ^14.13.1 || >=16.0.0} + hasBin: true + dependencies: + cli-truncate: registry.npmmirror.com/cli-truncate/3.1.0 + colorette: registry.npmmirror.com/colorette/2.0.19 + commander: registry.npmmirror.com/commander/9.4.1 + debug: registry.npmmirror.com/debug/4.3.4 + execa: registry.npmmirror.com/execa/6.1.0 + lilconfig: registry.npmmirror.com/lilconfig/2.0.6 + listr2: registry.npmmirror.com/listr2/5.0.6 + micromatch: registry.npmmirror.com/micromatch/4.0.5 + normalize-path: registry.npmmirror.com/normalize-path/3.0.0 + object-inspect: registry.npmmirror.com/object-inspect/1.12.2 + pidtree: registry.npmmirror.com/pidtree/0.6.0 + string-argv: registry.npmmirror.com/string-argv/0.3.1 + yaml: registry.npmmirror.com/yaml/2.1.3 + transitivePeerDependencies: + - enquirer + - supports-color + dev: true + + registry.npmmirror.com/listr2/5.0.6: + resolution: {integrity: sha512-u60KxKBy1BR2uLJNTWNptzWQ1ob/gjMzIJPZffAENzpZqbMZ/5PrXXOomDcevIS/+IB7s1mmCEtSlT2qHWMqag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/listr2/-/listr2-5.0.6.tgz} + name: listr2 + version: 5.0.6 + engines: {node: ^14.13.1 || >=16.0.0} + peerDependencies: + enquirer: '>= 2.3.0 < 3' + peerDependenciesMeta: + enquirer: + optional: true + dependencies: + cli-truncate: registry.npmmirror.com/cli-truncate/2.1.0 + colorette: registry.npmmirror.com/colorette/2.0.19 + log-update: registry.npmmirror.com/log-update/4.0.0 + p-map: registry.npmmirror.com/p-map/4.0.0 + rfdc: registry.npmmirror.com/rfdc/1.3.0 + rxjs: registry.npmmirror.com/rxjs/7.5.7 + through: registry.npmmirror.com/through/2.3.8 + wrap-ansi: registry.npmmirror.com/wrap-ansi/7.0.0 + dev: true + + registry.npmmirror.com/log-update/4.0.0: + resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/log-update/-/log-update-4.0.0.tgz} + name: log-update + version: 4.0.0 + engines: {node: '>=10'} + dependencies: + ansi-escapes: registry.npmmirror.com/ansi-escapes/4.3.2 + cli-cursor: registry.npmmirror.com/cli-cursor/3.1.0 + slice-ansi: registry.npmmirror.com/slice-ansi/4.0.0 + wrap-ansi: registry.npmmirror.com/wrap-ansi/6.2.0 + dev: true + + registry.npmmirror.com/merge-stream/2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz} + name: merge-stream + version: 2.0.0 + dev: true + + registry.npmmirror.com/micromatch/4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz} + name: micromatch + version: 4.0.5 + engines: {node: '>=8.6'} + dependencies: + braces: registry.npmmirror.com/braces/3.0.2 + picomatch: registry.npmmirror.com/picomatch/2.3.1 + dev: true + + registry.npmmirror.com/mimic-fn/2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz} + name: mimic-fn + version: 2.1.0 + engines: {node: '>=6'} + dev: true + + registry.npmmirror.com/mimic-fn/4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mimic-fn/-/mimic-fn-4.0.0.tgz} + name: mimic-fn + version: 4.0.0 + engines: {node: '>=12'} + dev: true + + registry.npmmirror.com/ms/2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz} + name: ms + version: 2.1.2 + + registry.npmmirror.com/normalize-path/3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz} + name: normalize-path + version: 3.0.0 + engines: {node: '>=0.10.0'} + dev: true + + registry.npmmirror.com/npm-run-path/5.1.0: + resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/npm-run-path/-/npm-run-path-5.1.0.tgz} + name: npm-run-path + version: 5.1.0 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + path-key: registry.npmmirror.com/path-key/4.0.0 + dev: true + + registry.npmmirror.com/object-inspect/1.12.2: + resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.2.tgz} + name: object-inspect + version: 1.12.2 + dev: true + + registry.npmmirror.com/onetime/5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz} + name: onetime + version: 5.1.2 + engines: {node: '>=6'} + dependencies: + mimic-fn: registry.npmmirror.com/mimic-fn/2.1.0 + dev: true + + registry.npmmirror.com/onetime/6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/onetime/-/onetime-6.0.0.tgz} + name: onetime + version: 6.0.0 + engines: {node: '>=12'} + dependencies: + mimic-fn: registry.npmmirror.com/mimic-fn/4.0.0 + dev: true + + registry.npmmirror.com/p-map/4.0.0: + resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/p-map/-/p-map-4.0.0.tgz} + name: p-map + version: 4.0.0 + engines: {node: '>=10'} + dependencies: + aggregate-error: registry.npmmirror.com/aggregate-error/3.1.0 + dev: true + + registry.npmmirror.com/path-key/3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz} + name: path-key + version: 3.1.1 + engines: {node: '>=8'} + dev: true + + registry.npmmirror.com/path-key/4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-key/-/path-key-4.0.0.tgz} + name: path-key + version: 4.0.0 + engines: {node: '>=12'} + dev: true + + registry.npmmirror.com/picomatch/2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz} + name: picomatch + version: 2.3.1 + engines: {node: '>=8.6'} + dev: true + + registry.npmmirror.com/pidtree/0.6.0: + resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pidtree/-/pidtree-0.6.0.tgz} + name: pidtree + version: 0.6.0 + engines: {node: '>=0.10'} + hasBin: true + dev: true + + registry.npmmirror.com/prettier/2.8.0: + resolution: {integrity: sha512-9Lmg8hTFZKG0Asr/kW9Bp8tJjRVluO8EJQVfY2T7FMw9T5jy4I/Uvx0Rca/XWf50QQ1/SS48+6IJWnrb+2yemA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/prettier/-/prettier-2.8.0.tgz} + name: prettier + version: 2.8.0 + engines: {node: '>=10.13.0'} + hasBin: true + dev: true + + registry.npmmirror.com/restore-cursor/3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/restore-cursor/-/restore-cursor-3.1.0.tgz} + name: restore-cursor + version: 3.1.0 + engines: {node: '>=8'} + dependencies: + onetime: registry.npmmirror.com/onetime/5.1.2 + signal-exit: registry.npmmirror.com/signal-exit/3.0.7 + dev: true + + registry.npmmirror.com/rfdc/1.3.0: + resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rfdc/-/rfdc-1.3.0.tgz} + name: rfdc + version: 1.3.0 + dev: true + + registry.npmmirror.com/rxjs/7.5.7: + resolution: {integrity: sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rxjs/-/rxjs-7.5.7.tgz} + name: rxjs + version: 7.5.7 + dependencies: + tslib: registry.npmmirror.com/tslib/2.4.0 + dev: true + + registry.npmmirror.com/shebang-command/2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz} + name: shebang-command + version: 2.0.0 + engines: {node: '>=8'} + dependencies: + shebang-regex: registry.npmmirror.com/shebang-regex/3.0.0 + dev: true + + registry.npmmirror.com/shebang-regex/3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz} + name: shebang-regex + version: 3.0.0 + engines: {node: '>=8'} + dev: true + + registry.npmmirror.com/signal-exit/3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz} + name: signal-exit + version: 3.0.7 + dev: true + + registry.npmmirror.com/slice-ansi/3.0.0: + resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/slice-ansi/-/slice-ansi-3.0.0.tgz} + name: slice-ansi + version: 3.0.0 + engines: {node: '>=8'} + dependencies: + ansi-styles: registry.npmmirror.com/ansi-styles/4.3.0 + astral-regex: registry.npmmirror.com/astral-regex/2.0.0 + is-fullwidth-code-point: registry.npmmirror.com/is-fullwidth-code-point/3.0.0 + dev: true + + registry.npmmirror.com/slice-ansi/4.0.0: + resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/slice-ansi/-/slice-ansi-4.0.0.tgz} + name: slice-ansi + version: 4.0.0 + engines: {node: '>=10'} + dependencies: + ansi-styles: registry.npmmirror.com/ansi-styles/4.3.0 + astral-regex: registry.npmmirror.com/astral-regex/2.0.0 + is-fullwidth-code-point: registry.npmmirror.com/is-fullwidth-code-point/3.0.0 + dev: true + + registry.npmmirror.com/slice-ansi/5.0.0: + resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/slice-ansi/-/slice-ansi-5.0.0.tgz} + name: slice-ansi + version: 5.0.0 + engines: {node: '>=12'} + dependencies: + ansi-styles: registry.npmmirror.com/ansi-styles/6.2.1 + is-fullwidth-code-point: registry.npmmirror.com/is-fullwidth-code-point/4.0.0 + dev: true + + registry.npmmirror.com/string-argv/0.3.1: + resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string-argv/-/string-argv-0.3.1.tgz} + name: string-argv + version: 0.3.1 + engines: {node: '>=0.6.19'} + dev: true + + registry.npmmirror.com/string-width/4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz} + name: string-width + version: 4.2.3 + engines: {node: '>=8'} + dependencies: + emoji-regex: registry.npmmirror.com/emoji-regex/8.0.0 + is-fullwidth-code-point: registry.npmmirror.com/is-fullwidth-code-point/3.0.0 + strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1 + dev: true + + registry.npmmirror.com/string-width/5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/string-width/-/string-width-5.1.2.tgz} + name: string-width + version: 5.1.2 + engines: {node: '>=12'} + dependencies: + eastasianwidth: registry.npmmirror.com/eastasianwidth/0.2.0 + emoji-regex: registry.npmmirror.com/emoji-regex/9.2.2 + strip-ansi: registry.npmmirror.com/strip-ansi/7.0.1 + dev: true + + registry.npmmirror.com/strip-ansi/6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz} + name: strip-ansi + version: 6.0.1 + engines: {node: '>=8'} + dependencies: + ansi-regex: registry.npmmirror.com/ansi-regex/5.0.1 + dev: true + + registry.npmmirror.com/strip-ansi/7.0.1: + resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-7.0.1.tgz} + name: strip-ansi + version: 7.0.1 + engines: {node: '>=12'} + dependencies: + ansi-regex: registry.npmmirror.com/ansi-regex/6.0.1 + dev: true + + registry.npmmirror.com/strip-final-newline/3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz} + name: strip-final-newline + version: 3.0.0 + engines: {node: '>=12'} + dev: true + + registry.npmmirror.com/through/2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/through/-/through-2.3.8.tgz} + name: through + version: 2.3.8 + dev: true + + registry.npmmirror.com/to-regex-range/5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz} + name: to-regex-range + version: 5.0.1 + engines: {node: '>=8.0'} + dependencies: + is-number: registry.npmmirror.com/is-number/7.0.0 + dev: true + + registry.npmmirror.com/tslib/2.4.0: + resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tslib/-/tslib-2.4.0.tgz} + name: tslib + version: 2.4.0 + + registry.npmmirror.com/type-fest/0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/type-fest/-/type-fest-0.21.3.tgz} + name: type-fest + version: 0.21.3 + engines: {node: '>=10'} + dev: true + + registry.npmmirror.com/which/2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/which/-/which-2.0.2.tgz} + name: which + version: 2.0.2 + engines: {node: '>= 8'} + hasBin: true + dependencies: + isexe: registry.npmmirror.com/isexe/2.0.0 + dev: true + + registry.npmmirror.com/wrap-ansi/6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz} + name: wrap-ansi + version: 6.2.0 + engines: {node: '>=8'} + dependencies: + ansi-styles: registry.npmmirror.com/ansi-styles/4.3.0 + string-width: registry.npmmirror.com/string-width/4.2.3 + strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1 + dev: true + + registry.npmmirror.com/wrap-ansi/7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz} + name: wrap-ansi + version: 7.0.0 + engines: {node: '>=10'} + dependencies: + ansi-styles: registry.npmmirror.com/ansi-styles/4.3.0 + string-width: registry.npmmirror.com/string-width/4.2.3 + strip-ansi: registry.npmmirror.com/strip-ansi/6.0.1 + dev: true + + registry.npmmirror.com/yaml/2.1.3: + resolution: {integrity: sha512-AacA8nRULjKMX2DvWvOAdBZMOfQlypSFkjcOcu9FalllIDJ1kvlREzcdIZmidQUqqeMv7jorHjq2HlLv/+c2lg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yaml/-/yaml-2.1.3.tgz} + name: yaml + version: 2.1.3 + engines: {node: '>= 14'} + dev: true diff --git a/public/streamer/mitm.html b/public/streamer/mitm.html index 57d5b23..0502678 100644 --- a/public/streamer/mitm.html +++ b/public/streamer/mitm.html @@ -13,143 +13,166 @@ // This will prevent the sw from restarting let keepAlive = () => { keepAlive = () => {} - var ping = location.href.substr(0, location.href.lastIndexOf('/')) + '/ping' + var ping = location.href.substr(0, location.href.lastIndexOf("/")) + "/ping" var interval = setInterval(() => { if (sw) { - sw.postMessage('ping') + sw.postMessage("ping") } else { - fetch(ping).then(res => res.text(!res.ok && clearInterval(interval))) + fetch(ping).then((res) => res.text(!res.ok && clearInterval(interval))) } }, 10000) } - + // message event is the first thing we need to setup a listener for // don't want the opener to do a random timeout - instead they can listen for // the ready event // but since we need to wait for the Service Worker registration, we store the // message for later let messages = [] - window.onmessage = evt => messages.push(evt) - + window.onmessage = (evt) => messages.push(evt) + let sw = null - let scope = '' - + let scope = "" + function registerWorker() { - return navigator.serviceWorker.getRegistration('./').then(swReg => { - return swReg || navigator.serviceWorker.register('sw.js', { scope: './' }) - }).then(swReg => { - const swRegTmp = swReg.installing || swReg.waiting - - scope = swReg.scope - - return (sw = swReg.active) || new Promise(resolve => { - swRegTmp.addEventListener('statechange', fn = () => { - if (swRegTmp.state === 'activated') { - swRegTmp.removeEventListener('statechange', fn) - sw = swReg.active - resolve() - } - }) + return navigator.serviceWorker + .getRegistration("./") + .then((swReg) => { + return ( + swReg || navigator.serviceWorker.register("sw.js", { scope: "./" }) + ) + }) + .then((swReg) => { + const swRegTmp = swReg.installing || swReg.waiting + + scope = swReg.scope + + return ( + (sw = swReg.active) || + new Promise((resolve) => { + swRegTmp.addEventListener( + "statechange", + (fn = () => { + if (swRegTmp.state === "activated") { + swRegTmp.removeEventListener("statechange", fn) + sw = swReg.active + resolve() + } + }) + ) + }) + ) }) - }) } - + // Now that we have the Service Worker registered we can process messages - function onMessage (event) { + function onMessage(event) { let { data, ports, origin } = event - + // It's important to have a messageChannel, don't want to interfere // with other simultaneous downloads if (!ports || !ports.length) { throw new TypeError("[StreamSaver] You didn't send a messageChannel") } - - if (typeof data !== 'object') { + + if (typeof data !== "object") { throw new TypeError("[StreamSaver] You didn't send a object") } - + // the default public service worker for StreamSaver is shared among others. // so all download links needs to be prefixed to avoid any other conflict data.origin = origin - + // if we ever (in some feature version of streamsaver) would like to // redirect back to the page of who initiated a http request data.referrer = data.referrer || document.referrer || origin - + // pass along version for possible backwards compatibility in sw.js - data.streamSaverVersion = new URLSearchParams(location.search).get('version') - - if (data.streamSaverVersion === '1.2.0') { - console.warn('[StreamSaver] please update streamsaver') + data.streamSaverVersion = new URLSearchParams(location.search).get( + "version" + ) + + if (data.streamSaverVersion === "1.2.0") { + console.warn("[StreamSaver] please update streamsaver") } - + /** @since v2.0.0 */ if (!data.headers) { - console.warn("[StreamSaver] pass `data.headers` that you would like to pass along to the service worker\nit should be a 2D array or a key/val object that fetch's Headers api accepts") + console.warn( + "[StreamSaver] pass `data.headers` that you would like to pass along to the service worker\nit should be a 2D array or a key/val object that fetch's Headers api accepts" + ) } else { // test if it's correct // should thorw a typeError if not new Headers(data.headers) } - + /** @since v2.0.0 */ - if (typeof data.filename === 'string') { - console.warn("[StreamSaver] You shouldn't send `data.filename` anymore. It should be included in the Content-Disposition header option") + if (typeof data.filename === "string") { + console.warn( + "[StreamSaver] You shouldn't send `data.filename` anymore. It should be included in the Content-Disposition header option" + ) // Do what File constructor do with fileNames - data.filename = data.filename.replace(/\//g, ':') + data.filename = data.filename.replace(/\//g, ":") } - + /** @since v2.0.0 */ if (data.size) { - console.warn("[StreamSaver] You shouldn't send `data.size` anymore. It should be included in the content-length header option") + console.warn( + "[StreamSaver] You shouldn't send `data.size` anymore. It should be included in the content-length header option" + ) } - + /** @since v2.0.0 */ if (data.readableStream) { - console.warn("[StreamSaver] You should send the readableStream in the messageChannel, not through mitm") + console.warn( + "[StreamSaver] You should send the readableStream in the messageChannel, not through mitm" + ) } - + /** @since v2.0.0 */ if (!data.pathname) { - console.warn("[StreamSaver] Please send `data.pathname` (eg: /pictures/summer.jpg)") - data.pathname = Math.random().toString().slice(-6) + '/' + data.filename + console.warn( + "[StreamSaver] Please send `data.pathname` (eg: /pictures/summer.jpg)" + ) + data.pathname = Math.random().toString().slice(-6) + "/" + data.filename } - + // remove all leading slashes - data.pathname = data.pathname.replace(/^\/+/g, '') - + data.pathname = data.pathname.replace(/^\/+/g, "") + // remove protocol - let org = origin.replace(/(^\w+:|^)\/\//, '') - + let org = origin.replace(/(^\w+:|^)\/\//, "") + // set the absolute pathname to the download url. data.url = new URL(`${scope + org}/${data.pathname}`).toString() - + if (!data.url.startsWith(`${scope + org}/`)) { - throw new TypeError('[StreamSaver] bad `data.pathname`') + throw new TypeError("[StreamSaver] bad `data.pathname`") } - + // This sends the message data as well as transferring // messageChannel.port2 to the service worker. The service worker can // then use the transferred port to reply via postMessage(), which // will in turn trigger the onmessage handler on messageChannel.port1. - + const transferable = data.readableStream - ? [ ports[0], data.readableStream ] - : [ ports[0] ] - + ? [ports[0], data.readableStream] + : [ports[0]] + if (!(data.readableStream || data.transferringReadable)) { keepAlive() } - + return sw.postMessage(data, transferable) } - + if (window.opener) { // The opener can't listen to onload event, so we need to help em out! // (telling them that we are ready to accept postMessage's) - window.opener.postMessage('StreamSaver::loadedPopup', '*') + window.opener.postMessage("StreamSaver::loadedPopup", "*") } - + if (navigator.serviceWorker) { registerWorker().then(() => { window.onmessage = onMessage @@ -160,5 +183,4 @@ // shouldn't really be possible? keepAlive() } - - + diff --git a/public/streamer/sw.js b/public/streamer/sw.js index c51a119..09d192a 100644 --- a/public/streamer/sw.js +++ b/public/streamer/sw.js @@ -1,10 +1,10 @@ /* global self ReadableStream Response */ -self.addEventListener('install', () => { +self.addEventListener("install", () => { self.skipWaiting() }) -self.addEventListener('activate', event => { +self.addEventListener("activate", (event) => { event.waitUntil(self.clients.claim()) }) @@ -12,15 +12,20 @@ const map = new Map() // This should be called once per download // Each event has a dataChannel that the data will be piped through -self.onmessage = event => { +self.onmessage = (event) => { // We send a heartbeat every x second to keep the // service worker alive if a transferable stream is not sent - if (event.data === 'ping') { + if (event.data === "ping") { return } const data = event.data - const downloadUrl = data.url || self.registration.scope + Math.random() + '/' + (typeof data === 'string' ? data : data.filename) + const downloadUrl = + data.url || + self.registration.scope + + Math.random() + + "/" + + (typeof data === "string" ? data : data.filename) const port = event.ports[0] const metadata = new Array(3) // [stream, data, port] @@ -33,7 +38,7 @@ self.onmessage = event => { if (event.data.readableStream) { metadata[0] = event.data.readableStream } else if (event.data.transferringReadable) { - port.onmessage = evt => { + port.onmessage = (evt) => { port.onmessage = null metadata[0] = evt.data.readableStream } @@ -45,84 +50,92 @@ self.onmessage = event => { port.postMessage({ download: downloadUrl }) } -function createStream (port) { +function createStream(port) { // ReadableStream is only supported by chrome 52 return new ReadableStream({ - start (controller) { + start(controller) { // When we receive data on the messageChannel, we write port.onmessage = ({ data }) => { - if (data === 'end') { + if (data === "end") { return controller.close() } - if (data === 'abort') { - controller.error('Aborted the download') + if (data === "abort") { + controller.error("Aborted the download") return } controller.enqueue(data) } }, - cancel () { - console.log('user aborted') - } + cancel() { + console.log("user aborted") + }, }) } -self.onfetch = event => { +self.onfetch = (event) => { const url = event.request.url // this only works for Firefox - if (url.endsWith('/ping')) { - return event.respondWith(new Response('pong')) + if (url.endsWith("/ping")) { + return event.respondWith(new Response("pong")) } const hijacke = map.get(url) if (!hijacke) return null - const [ stream, data, port ] = hijacke + const [stream, data, port] = hijacke map.delete(url) // Not comfortable letting any user control all headers // so we only copy over the length & disposition const responseHeaders = new Headers({ - 'Content-Type': 'application/octet-stream; charset=utf-8', + "Content-Type": "application/octet-stream; charset=utf-8", // To be on the safe side, The link can be opened in a iframe. // but octet-stream should stop it. - 'Content-Security-Policy': "default-src 'none'", - 'X-Content-Security-Policy': "default-src 'none'", - 'X-WebKit-CSP': "default-src 'none'", - 'X-XSS-Protection': '1; mode=block' + "Content-Security-Policy": "default-src 'none'", + "X-Content-Security-Policy": "default-src 'none'", + "X-WebKit-CSP": "default-src 'none'", + "X-XSS-Protection": "1; mode=block", }) let headers = new Headers(data.headers || {}) - if (headers.has('Content-Length')) { - responseHeaders.set('Content-Length', headers.get('Content-Length')) + if (headers.has("Content-Length")) { + responseHeaders.set("Content-Length", headers.get("Content-Length")) } - if (headers.has('Content-Disposition')) { - responseHeaders.set('Content-Disposition', headers.get('Content-Disposition')) + if (headers.has("Content-Disposition")) { + responseHeaders.set( + "Content-Disposition", + headers.get("Content-Disposition") + ) } // data, data.filename and size should not be used anymore if (data.size) { - console.warn('Depricated') - responseHeaders.set('Content-Length', data.size) + console.warn("Depricated") + responseHeaders.set("Content-Length", data.size) } - let fileName = typeof data === 'string' ? data : data.filename + let fileName = typeof data === "string" ? data : data.filename if (fileName) { - console.warn('Depricated') + console.warn("Depricated") // Make filename RFC5987 compatible - fileName = encodeURIComponent(fileName).replace(/['()]/g, escape).replace(/\*/g, '%2A') - responseHeaders.set('Content-Disposition', "attachment; filename*=UTF-8''" + fileName) + fileName = encodeURIComponent(fileName) + .replace(/['()]/g, escape) + .replace(/\*/g, "%2A") + responseHeaders.set( + "Content-Disposition", + "attachment; filename*=UTF-8''" + fileName + ) } event.respondWith(new Response(stream, { headers: responseHeaders })) - port.postMessage({ debug: 'Download started' }) -} \ No newline at end of file + port.postMessage({ debug: "Download started" }) +} diff --git a/renovate.json b/renovate.json index 39a2b6e..4bd832f 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,4 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:base" - ] + "extends": ["config:base"] } diff --git a/scripts/i18n.mjs b/scripts/i18n.mjs index 6bb0905..37db39d 100644 --- a/scripts/i18n.mjs +++ b/scripts/i18n.mjs @@ -1,11 +1,11 @@ -import fs from "fs"; -import path from "path"; +import fs from "fs" +import path from "path" -const root = "./src/lang"; -const entry = "entry.ts"; -const langs = fs.readdirSync(root); +const root = "./src/lang" +const entry = "entry.ts" +const langs = fs.readdirSync(root) langs .filter((lang) => lang !== "en") .forEach((lang) => { - fs.copyFileSync(path.join(root, "en", entry), path.join(root, lang, entry)); - }); + fs.copyFileSync(path.join(root, "en", entry), path.join(root, lang, entry)) + }) diff --git a/src/app/App.tsx b/src/app/App.tsx index 5ddfe7f..afb90c8 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -1,5 +1,5 @@ -import { Progress, ProgressIndicator } from "@hope-ui/solid"; -import { Route, Routes, useIsRouting } from "@solidjs/router"; +import { Progress, ProgressIndicator } from "@hope-ui/solid" +import { Route, Routes, useIsRouting } from "@solidjs/router" import { Component, createSignal, @@ -7,54 +7,54 @@ import { Match, onCleanup, Switch, -} from "solid-js"; -import { Portal } from "solid-js/web"; -import { useLoading, useRouter } from "~/hooks"; -import { globalStyles } from "./theme"; -import { bus, r, handleRespWithoutAuthAndNotify, base_path } from "~/utils"; -import { setSettings } from "~/store"; -import { Error, FullScreenLoading } from "~/components"; -import { MustUser } from "./MustUser"; -import "./index.css"; -import { useI18n } from "@solid-primitives/i18n"; -import { initialLang, langMap, loadedLangs } from "./i18n"; -import { Resp } from "~/types"; +} from "solid-js" +import { Portal } from "solid-js/web" +import { useLoading, useRouter } from "~/hooks" +import { globalStyles } from "./theme" +import { bus, r, handleRespWithoutAuthAndNotify, base_path } from "~/utils" +import { setSettings } from "~/store" +import { Error, FullScreenLoading } from "~/components" +import { MustUser } from "./MustUser" +import "./index.css" +import { useI18n } from "@solid-primitives/i18n" +import { initialLang, langMap, loadedLangs } from "./i18n" +import { Resp } from "~/types" -const Home = lazy(() => import("~/pages/home/Layout")); -const Manage = lazy(() => import("~/pages/manage")); -const Login = lazy(() => import("~/pages/login")); -const Test = lazy(() => import("~/pages/test")); +const Home = lazy(() => import("~/pages/home/Layout")) +const Manage = lazy(() => import("~/pages/manage")) +const Login = lazy(() => import("~/pages/login")) +const Test = lazy(() => import("~/pages/test")) const App: Component = () => { - globalStyles(); - const [, { add }] = useI18n(); - const isRouting = useIsRouting(); - const { to } = useRouter(); + globalStyles() + const [, { add }] = useI18n() + const isRouting = useIsRouting() + const { to } = useRouter() const onTo = (path: string) => { - to(path); - }; - bus.on("to", onTo); + to(path) + } + bus.on("to", onTo) onCleanup(() => { - bus.off("to", onTo); - }); + bus.off("to", onTo) + }) - const [err, setErr] = createSignal(); + const [err, setErr] = createSignal() const [loading, data] = useLoading(() => Promise.all([ (async () => { - add(initialLang, (await langMap[initialLang]()).default); - loadedLangs.add(initialLang); + add(initialLang, (await langMap[initialLang]()).default) + loadedLangs.add(initialLang) })(), (async () => { handleRespWithoutAuthAndNotify( (await r.get("/public/settings")) as Resp>, setSettings, setErr - ); + ) })(), ]) - ); - data(); + ) + data() return ( <> @@ -103,7 +103,7 @@ const App: Component = () => { - ); -}; + ) +} -export default App; +export default App diff --git a/src/app/i18n.ts b/src/app/i18n.ts index 954f537..0b660d8 100644 --- a/src/app/i18n.ts +++ b/src/app/i18n.ts @@ -1,22 +1,22 @@ -import { createI18nContext } from "@solid-primitives/i18n"; -import { createSignal } from "solid-js"; +import { createI18nContext } from "@solid-primitives/i18n" +import { createSignal } from "solid-js" interface Language { - code: string; - lang: string; + code: string + lang: string } const langs = import.meta.glob("~/lang/*/index.json", { eager: true, import: "lang", -}); -const languages: Language[] = []; +}) +const languages: Language[] = [] for (const path in langs) { - const name = path.split("/")[3]; + const name = path.split("/")[3] languages.push({ code: name, lang: langs[path] as string, - }); + }) } const defaultLang = languages.find( @@ -27,25 +27,25 @@ const defaultLang = lang.code.toLowerCase().split("_")[0] === navigator.language.toLowerCase().split("_")[0] )?.code || - "en"; + "en" -export let initialLang = localStorage.getItem("lang") ?? ""; +export let initialLang = localStorage.getItem("lang") ?? "" if (!initialLang || !languages.find((lang) => lang.code === initialLang)) { - initialLang = defaultLang; + initialLang = defaultLang } // store lang and import -export const langMap: Record = {}; -const imports = import.meta.glob("~/lang/*/entry.ts"); +export const langMap: Record = {} +const imports = import.meta.glob("~/lang/*/entry.ts") for (const path in imports) { - const name = path.split("/")[3]; - langMap[name] = imports[path]; + const name = path.split("/")[3] + langMap[name] = imports[path] } -export const loadedLangs = new Set(); +export const loadedLangs = new Set() -const i18n = createI18nContext({}, initialLang); +const i18n = createI18nContext({}, initialLang) -const [currentLang, setLang] = createSignal(initialLang); +const [currentLang, setLang] = createSignal(initialLang) -export { languages, i18n, currentLang, setLang }; +export { languages, i18n, currentLang, setLang } diff --git a/src/app/index.css b/src/app/index.css index 0016a9f..1b8b351 100644 --- a/src/app/index.css +++ b/src/app/index.css @@ -26,7 +26,6 @@ background-color: rgba(0, 0, 0, 0.38); } - /* dark */ .hope-ui-dark ::-webkit-scrollbar-corner, @@ -44,4 +43,4 @@ .hope-ui-dark ::-webkit-scrollbar-thumb:vertical:active { background-color: rgb(58, 58, 58); -} \ No newline at end of file +} diff --git a/src/app/index.tsx b/src/app/index.tsx index fca315c..6b3b5bb 100644 --- a/src/app/index.tsx +++ b/src/app/index.tsx @@ -1,19 +1,19 @@ -import { HopeProvider, NotificationsProvider } from "@hope-ui/solid"; -import { I18nContext } from "@solid-primitives/i18n"; -import { ErrorBoundary, Suspense } from "solid-js"; -import { Error, FullScreenLoading } from "~/components"; -import App from "./App"; -import { i18n } from "./i18n"; -import { globalStyles, theme } from "./theme"; +import { HopeProvider, NotificationsProvider } from "@hope-ui/solid" +import { I18nContext } from "@solid-primitives/i18n" +import { ErrorBoundary, Suspense } from "solid-js" +import { Error, FullScreenLoading } from "~/components" +import App from "./App" +import { i18n } from "./i18n" +import { globalStyles, theme } from "./theme" const Index = () => { - globalStyles(); + globalStyles() return ( { - console.error("error", err); - return ; + console.error("error", err) + return }} > @@ -25,7 +25,7 @@ const Index = () => { - ); -}; + ) +} -export { Index }; +export { Index } diff --git a/src/app/theme.ts b/src/app/theme.ts index fb14371..32c7b8c 100644 --- a/src/app/theme.ts +++ b/src/app/theme.ts @@ -1,5 +1,5 @@ -import { globalCss, HopeThemeConfig } from "@hope-ui/solid"; -import { hoverColor } from "~/utils"; +import { globalCss, HopeThemeConfig } from "@hope-ui/solid" +import { hoverColor } from "~/utils" const theme: HopeThemeConfig = { initialColorMode: "system", @@ -157,7 +157,7 @@ const theme: HopeThemeConfig = { }, }, }, -}; +} export const globalStyles = globalCss({ "*": { @@ -176,6 +176,6 @@ export const globalStyles = globalCss({ flexWrap: "wrap", rowGap: "0 !important", }, -}); +}) -export { theme }; +export { theme } diff --git a/src/components/FullLoading.tsx b/src/components/FullLoading.tsx index dc3c831..9539fd5 100644 --- a/src/components/FullLoading.tsx +++ b/src/components/FullLoading.tsx @@ -1,6 +1,6 @@ -import { Center, ElementType, Spinner, SpinnerProps } from "@hope-ui/solid"; -import { JSXElement, mergeProps, Show } from "solid-js"; -import { getMainColor } from "~/store"; +import { Center, ElementType, Spinner, SpinnerProps } from "@hope-ui/solid" +import { JSXElement, mergeProps, Show } from "solid-js" +import { getMainColor } from "~/store" export const FullScreenLoading = () => { return (
@@ -12,14 +12,14 @@ export const FullScreenLoading = () => { size="xl" />
- ); -}; + ) +} export const FullLoading = (props: { - py?: string; - size?: string; - thickness?: number; - ref?: any; + py?: string + size?: string + thickness?: number + ref?: any }) => { const merged = mergeProps( { @@ -28,7 +28,7 @@ export const FullLoading = (props: { thickness: 4, }, props - ); + ) return (
- ); -}; + ) +} export const MaybeLoading = (props: { - children?: JSXElement; - loading: boolean; + children?: JSXElement + loading: boolean }) => { return ( }> {props.children} - ); -}; + ) +} export const CenterLoading = ( props: SpinnerProps @@ -60,5 +60,5 @@ export const CenterLoading = (
- ); -}; + ) +} diff --git a/src/components/Hello.tsx b/src/components/Hello.tsx index bb38c5f..adbd720 100644 --- a/src/components/Hello.tsx +++ b/src/components/Hello.tsx @@ -1,4 +1,4 @@ -const Hello = ()=>{ +const Hello = () => { return

Hello, Solidjs

} -export default Hello; \ No newline at end of file +export default Hello diff --git a/src/components/ImageWithError.tsx b/src/components/ImageWithError.tsx index 64a03ed..7d7dd85 100644 --- a/src/components/ImageWithError.tsx +++ b/src/components/ImageWithError.tsx @@ -1,20 +1,20 @@ -import { ElementType, Image, ImageProps } from "@hope-ui/solid"; -import { createSignal, JSXElement, Show } from "solid-js"; +import { ElementType, Image, ImageProps } from "@hope-ui/solid" +import { createSignal, JSXElement, Show } from "solid-js" export const ImageWithError = ( props: ImageProps & { - fallbackErr?: JSXElement; + fallbackErr?: JSXElement } ) => { - const [err, setErr] = createSignal(false); + const [err, setErr] = createSignal(false) return ( { - setErr(true); + setErr(true) }} /> - ); -}; + ) +} diff --git a/src/components/LinkWithBase.tsx b/src/components/LinkWithBase.tsx index a6fdd68..f3b20eb 100644 --- a/src/components/LinkWithBase.tsx +++ b/src/components/LinkWithBase.tsx @@ -1,15 +1,15 @@ -import { Link, LinkProps } from "@solidjs/router"; -import { Anchor, AnchorProps, ElementType } from "@hope-ui/solid"; -import { joinBase } from "~/utils"; -import { useRouter } from "~/hooks"; +import { Link, LinkProps } from "@solidjs/router" +import { Anchor, AnchorProps, ElementType } from "@hope-ui/solid" +import { joinBase } from "~/utils" +import { useRouter } from "~/hooks" export const LinkWithBase = (props: LinkProps) => ( -); +) export const AnchorWithBase = ( props: AnchorProps -) => ; +) => export const LinkWithPush = (props: LinkProps) => { - const { pushHref } = useRouter(); - return ; -}; + const { pushHref } = useRouter() + return +} diff --git a/src/components/Markdown.tsx b/src/components/Markdown.tsx index 74ae2a6..ef81b22 100644 --- a/src/components/Markdown.tsx +++ b/src/components/Markdown.tsx @@ -1,15 +1,15 @@ // @ts-ignore -import { hljs } from "./highlight.js"; -import SolidMarkdown from "solid-markdown"; -import remarkGfm from "remark-gfm"; -import rehypeRaw from "rehype-raw"; -import "./markdown.css"; -import { onMount } from "solid-js"; +import { hljs } from "./highlight.js" +import SolidMarkdown from "solid-markdown" +import remarkGfm from "remark-gfm" +import rehypeRaw from "rehype-raw" +import "./markdown.css" +import { onMount } from "solid-js" export const Markdown = (props: { children?: string }) => { onMount(() => { - hljs.highlightAll(); - }); + hljs.highlightAll() + }) return ( { rehypePlugins={[rehypeRaw]} children={props.children} /> - ); -}; + ) +} diff --git a/src/components/ModalInput.tsx b/src/components/ModalInput.tsx index 27327df..427bdca 100644 --- a/src/components/ModalInput.tsx +++ b/src/components/ModalInput.tsx @@ -9,31 +9,31 @@ import { Input, Textarea, FormHelperText, -} from "@hope-ui/solid"; -import { createSignal, Show } from "solid-js"; -import { useT } from "~/hooks"; -import { notify } from "~/utils"; +} from "@hope-ui/solid" +import { createSignal, Show } from "solid-js" +import { useT } from "~/hooks" +import { notify } from "~/utils" export type ModalInputProps = { - opened: boolean; - onClose: () => void; - title: string; - onSubmit?: (text: string) => void; - type?: string; - defaultValue?: string; - loading?: boolean; - tips?: string; -}; + opened: boolean + onClose: () => void + title: string + onSubmit?: (text: string) => void + type?: string + defaultValue?: string + loading?: boolean + tips?: string +} export const ModalInput = (props: ModalInputProps) => { - const [value, setValue] = createSignal(props.defaultValue ?? ""); - const t = useT(); + const [value, setValue] = createSignal(props.defaultValue ?? "") + const t = useT() const submit = () => { if (!value()) { - notify.warning(t("global.empty_input")); - return; + notify.warning(t("global.empty_input")) + return } - props.onSubmit?.(value()); - setValue(""); - }; + props.onSubmit?.(value()) + setValue("") + } return ( { type={props.type} value={value()} onInput={(e) => { - setValue(e.currentTarget.value); + setValue(e.currentTarget.value) }} onKeyDown={(e) => { if (e.key === "Enter") { - submit(); + submit() } }} /> @@ -68,7 +68,7 @@ export const ModalInput = (props: ModalInputProps) => { id="modal-input" value={value()} onInput={(e) => { - setValue(e.currentTarget.value); + setValue(e.currentTarget.value) }} /> @@ -86,5 +86,5 @@ export const ModalInput = (props: ModalInputProps) => { - ); -}; + ) +} diff --git a/src/components/MonacoEditor.tsx b/src/components/MonacoEditor.tsx index 0d79c56..3514077 100644 --- a/src/components/MonacoEditor.tsx +++ b/src/components/MonacoEditor.tsx @@ -1,62 +1,62 @@ -import { Box } from "@hope-ui/solid"; -import { createEffect, createSignal, onCleanup, onMount } from "solid-js"; -import { MaybeLoading } from "./FullLoading"; -import loader from "@monaco-editor/loader"; -import { monaco_cdn } from "~/utils"; +import { Box } from "@hope-ui/solid" +import { createEffect, createSignal, onCleanup, onMount } from "solid-js" +import { MaybeLoading } from "./FullLoading" +import loader from "@monaco-editor/loader" +import { monaco_cdn } from "~/utils" loader.config({ paths: { vs: monaco_cdn, }, -}); +}) export interface MonacoEditorProps { - value: string; - onChange?: (value: string) => void; - theme: "vs" | "vs-dark"; - path?: string; - language?: string; + value: string + onChange?: (value: string) => void + theme: "vs" | "vs-dark" + path?: string + language?: string } -let monaco: any; +let monaco: any export const MonacoEditorLoader = (props: MonacoEditorProps) => { - const [loading, setLoading] = createSignal(true); + const [loading, setLoading] = createSignal(true) loader.init().then((m) => { - monaco = m; - setLoading(false); - }); + monaco = m + setLoading(false) + }) return ( - ); -}; + ) +} export const MonacoEditor = (props: MonacoEditorProps) => { - let monacoEditorDiv: HTMLDivElement; - let monacoEditor: any /*monaco.editor.IStandaloneCodeEditor*/; - let model: any /*monaco.editor.ITextModel*/; + let monacoEditorDiv: HTMLDivElement + let monacoEditor: any /*monaco.editor.IStandaloneCodeEditor*/ + let model: any /*monaco.editor.ITextModel*/ onMount(() => { monacoEditor = monaco.editor.create(monacoEditorDiv!, { value: props.value, theme: props.theme, - }); + }) model = monaco.editor.createModel( props.value, props.language, props.path ? monaco.Uri.parse(props.path) : undefined - ); - monacoEditor.setModel(model); + ) + monacoEditor.setModel(model) monacoEditor.onDidChangeModelContent(() => { - props.onChange?.(monacoEditor.getValue()); - }); - }); + props.onChange?.(monacoEditor.getValue()) + }) + }) createEffect(() => { - monaco.editor.setTheme(props.theme); - }); + monaco.editor.setTheme(props.theme) + }) onCleanup(() => { - model && model.dispose(); - monacoEditor && monacoEditor.dispose(); - }); - return ; -}; + model && model.dispose() + monacoEditor && monacoEditor.dispose() + }) + return +} diff --git a/src/components/Paginator.tsx b/src/components/Paginator.tsx index f7ccb1c..d650f47 100644 --- a/src/components/Paginator.tsx +++ b/src/components/Paginator.tsx @@ -1,7 +1,7 @@ -import { Button, HStack, IconButton } from "@hope-ui/solid"; -import { createMemo, For, mergeProps, Show } from "solid-js"; -import { createStore } from "solid-js/store"; -import { FaSolidAngleLeft, FaSolidAngleRight } from "solid-icons/fa"; +import { Button, HStack, IconButton } from "@hope-ui/solid" +import { createMemo, For, mergeProps, Show } from "solid-js" +import { createStore } from "solid-js/store" +import { FaSolidAngleLeft, FaSolidAngleRight } from "solid-icons/fa" export interface PaginatorProps { colorScheme?: @@ -11,14 +11,14 @@ export interface PaginatorProps { | "success" | "info" | "warning" - | "danger"; + | "danger" // size?: "xs" | "sm" | "lg" | "xl" | "md"; - defaultCurrent?: number; - onChange?: (current: number) => void; - hideOnSinglePage?: boolean; - total: number; - defaultPageSize?: number; - maxShowPage?: number; + defaultCurrent?: number + onChange?: (current: number) => void + hideOnSinglePage?: boolean + total: number + defaultPageSize?: number + maxShowPage?: number } export const Paginator = (props: PaginatorProps) => { const merged = mergeProps( @@ -29,35 +29,35 @@ export const Paginator = (props: PaginatorProps) => { hideOnSinglePage: true, }, props - ); + ) const [store, setStore] = createStore({ pageSize: merged.defaultPageSize, current: merged.defaultCurrent, - }); + }) const pages = createMemo(() => { - return Math.ceil(merged.total / store.pageSize); - }); + return Math.ceil(merged.total / store.pageSize) + }) const leftPages = createMemo(() => { - const current = store.current; - const min = Math.max(2, current - Math.floor(merged.maxShowPage / 2)); - return Array.from({ length: current - min }, (_, i) => min + i); - }); + const current = store.current + const min = Math.max(2, current - Math.floor(merged.maxShowPage / 2)) + return Array.from({ length: current - min }, (_, i) => min + i) + }) const rightPages = createMemo(() => { - const current = store.current; + const current = store.current const max = Math.min( pages() - 1, current + Math.floor(merged.maxShowPage / 2) - ); - return Array.from({ length: max - current }, (_, i) => current + 1 + i); - }); + ) + return Array.from({ length: max - current }, (_, i) => current + 1 + i) + }) const size = { "@initial": "sm", "@md": "md", - } as const; + } as const const onPageChange = (page: number) => { - setStore("current", page); - merged.onChange?.(page); - }; + setStore("current", page) + merged.onChange?.(page) + } return ( 1}> @@ -66,7 +66,7 @@ export const Paginator = (props: PaginatorProps) => { size={size} colorScheme={merged.colorScheme} onClick={() => { - onPageChange(1); + onPageChange(1) }} px="$3" > @@ -78,7 +78,7 @@ export const Paginator = (props: PaginatorProps) => { aria-label="Previous" colorScheme={merged.colorScheme} onClick={() => { - onPageChange(store.current - 1); + onPageChange(store.current - 1) }} w="2rem !important" /> @@ -89,7 +89,7 @@ export const Paginator = (props: PaginatorProps) => { size={size} colorScheme={merged.colorScheme} onClick={() => { - onPageChange(page); + onPageChange(page) }} px={page > 10 ? "$2_5" : "$3"} > @@ -111,7 +111,7 @@ export const Paginator = (props: PaginatorProps) => { size={size} colorScheme={merged.colorScheme} onClick={() => { - onPageChange(page); + onPageChange(page) }} px={page > 10 ? "$2_5" : "$3"} > @@ -126,7 +126,7 @@ export const Paginator = (props: PaginatorProps) => { aria-label="Next" colorScheme={merged.colorScheme} onClick={() => { - onPageChange(store.current + 1); + onPageChange(store.current + 1) }} w="2rem !important" /> @@ -134,7 +134,7 @@ export const Paginator = (props: PaginatorProps) => { size={size} colorScheme={merged.colorScheme} onClick={() => { - onPageChange(pages()); + onPageChange(pages()) }} px={pages() > 10 ? "$2_5" : "$3"} > @@ -143,5 +143,5 @@ export const Paginator = (props: PaginatorProps) => { - ); -}; + ) +} diff --git a/src/components/SwitchColorMode.tsx b/src/components/SwitchColorMode.tsx index 0f7097c..0e869eb 100644 --- a/src/components/SwitchColorMode.tsx +++ b/src/components/SwitchColorMode.tsx @@ -1,10 +1,10 @@ -import { Icon, useColorMode, useColorModeValue } from "@hope-ui/solid"; +import { Icon, useColorMode, useColorModeValue } from "@hope-ui/solid" // import { IoMoonOutline as Moon } from "solid-icons/io"; -import { FiSun as Sun } from "solid-icons/fi"; -import { FiMoon as Moon } from "solid-icons/fi"; +import { FiSun as Sun } from "solid-icons/fi" +import { FiMoon as Moon } from "solid-icons/fi" const SwitchColorMode = () => { - const { toggleColorMode } = useColorMode(); + const { toggleColorMode } = useColorMode() const icon = useColorModeValue( { size: "$8", @@ -16,7 +16,7 @@ const SwitchColorMode = () => { component: Sun, p: "$0_5", } - ); + ) return ( { onClick={toggleColorMode} p={icon().p} /> - ); -}; -export { SwitchColorMode }; + ) +} +export { SwitchColorMode } diff --git a/src/components/Wether.tsx b/src/components/Wether.tsx index 1126931..8fd7f78 100644 --- a/src/components/Wether.tsx +++ b/src/components/Wether.tsx @@ -1,15 +1,15 @@ -import { Badge } from "@hope-ui/solid"; -import { useT } from "~/hooks"; +import { Badge } from "@hope-ui/solid" +import { useT } from "~/hooks" export interface WetherProps { - yes?: boolean; + yes?: boolean } export const Wether = (props: WetherProps) => { - const t = useT(); + const t = useT() return ( {t(`global.${props.yes ? "yes" : "no"}`)} - ); -}; + ) +} diff --git a/src/components/highlight.js b/src/components/highlight.js index be77004..b35db16 100644 --- a/src/components/highlight.js +++ b/src/components/highlight.js @@ -3,1162 +3,7955 @@ (c) 2006-2022 Ivan Sagalaev and other contributors License: BSD-3-Clause */ - var hljs=function(){"use strict";var e={exports:{}};function n(e){ - return e instanceof Map?e.clear=e.delete=e.set=()=>{ - throw Error("map is read-only")}:e instanceof Set&&(e.add=e.clear=e.delete=()=>{ - throw Error("set is read-only") - }),Object.freeze(e),Object.getOwnPropertyNames(e).forEach((t=>{var a=e[t] - ;"object"!=typeof a||Object.isFrozen(a)||n(a)})),e} - e.exports=n,e.exports.default=n;var t=e.exports;class a{constructor(e){ - void 0===e.data&&(e.data={}),this.data=e.data,this.isMatchIgnored=!1} - ignoreMatch(){this.isMatchIgnored=!0}}function i(e){ - return e.replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'") - }function r(e,...n){const t=Object.create(null);for(const n in e)t[n]=e[n] - ;return n.forEach((e=>{for(const n in e)t[n]=e[n]})),t}const s=e=>!!e.kind - ;class o{constructor(e,n){ - this.buffer="",this.classPrefix=n.classPrefix,e.walk(this)}addText(e){ - this.buffer+=i(e)}openNode(e){if(!s(e))return;let n=e.kind - ;n=e.sublanguage?"language-"+n:((e,{prefix:n})=>{if(e.includes(".")){ - const t=e.split(".") - ;return[`${n}${t.shift()}`,...t.map(((e,n)=>`${e}${"_".repeat(n+1)}`))].join(" ") - }return`${n}${e}`})(n,{prefix:this.classPrefix}),this.span(n)}closeNode(e){ - s(e)&&(this.buffer+="")}value(){return this.buffer}span(e){ - this.buffer+=``}}class l{constructor(){this.rootNode={ - children:[]},this.stack=[this.rootNode]}get top(){ - return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){ - this.top.children.push(e)}openNode(e){const n={kind:e,children:[]} - ;this.add(n),this.stack.push(n)}closeNode(){ - if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){ - for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)} - walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,n){ - return"string"==typeof n?e.addText(n):n.children&&(e.openNode(n), - n.children.forEach((n=>this._walk(e,n))),e.closeNode(n)),e}static _collapse(e){ - "string"!=typeof e&&e.children&&(e.children.every((e=>"string"==typeof e))?e.children=[e.children.join("")]:e.children.forEach((e=>{ - l._collapse(e)})))}}class c extends l{constructor(e){super(),this.options=e} - addKeyword(e,n){""!==e&&(this.openNode(n),this.addText(e),this.closeNode())} - addText(e){""!==e&&this.add(e)}addSublanguage(e,n){const t=e.root - ;t.kind=n,t.sublanguage=!0,this.add(t)}toHTML(){ - return new o(this,this.options).value()}finalize(){return!0}}function d(e){ - return e?"string"==typeof e?e:e.source:null}function g(e){return m("(?=",e,")")} - function u(e){return m("(?:",e,")*")}function b(e){return m("(?:",e,")?")} - function m(...e){return e.map((e=>d(e))).join("")}function p(...e){const n=(e=>{ - const n=e[e.length-1] - ;return"object"==typeof n&&n.constructor===Object?(e.splice(e.length-1,1),n):{} - })(e);return"("+(n.capture?"":"?:")+e.map((e=>d(e))).join("|")+")"} - function _(e){return RegExp(e.toString()+"|").exec("").length-1} - const h=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./ - ;function f(e,{joinWith:n}){let t=0;return e.map((e=>{t+=1;const n=t - ;let a=d(e),i="";for(;a.length>0;){const e=h.exec(a);if(!e){i+=a;break} - i+=a.substring(0,e.index), - a=a.substring(e.index+e[0].length),"\\"===e[0][0]&&e[1]?i+="\\"+(Number(e[1])+n):(i+=e[0], - "("===e[0]&&t++)}return i})).map((e=>`(${e})`)).join(n)} - const E="[a-zA-Z]\\w*",y="[a-zA-Z_]\\w*",N="\\b\\d+(\\.\\d+)?",w="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",v="\\b(0b[01]+)",O={ - begin:"\\\\[\\s\\S]",relevance:0},x={scope:"string",begin:"'",end:"'", - illegal:"\\n",contains:[O]},M={scope:"string",begin:'"',end:'"',illegal:"\\n", - contains:[O]},k=(e,n,t={})=>{const a=r({scope:"comment",begin:e,end:n, - contains:[]},t);a.contains.push({scope:"doctag", - begin:"[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)", - end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0}) - ;const i=p("I","a","is","so","us","to","at","if","in","it","on",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/) - ;return a.contains.push({begin:m(/[ ]+/,"(",i,/[.]?[:]?([.][ ]|[ ])/,"){3}")}),a - },S=k("//","$"),A=k("/\\*","\\*/"),C=k("#","$");var T=Object.freeze({ - __proto__:null,MATCH_NOTHING_RE:/\b\B/,IDENT_RE:E,UNDERSCORE_IDENT_RE:y, - NUMBER_RE:N,C_NUMBER_RE:w,BINARY_NUMBER_RE:v, - RE_STARTERS_RE:"!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~", - SHEBANG:(e={})=>{const n=/^#![ ]*\// - ;return e.binary&&(e.begin=m(n,/.*\b/,e.binary,/\b.*/)),r({scope:"meta",begin:n, - end:/$/,relevance:0,"on:begin":(e,n)=>{0!==e.index&&n.ignoreMatch()}},e)}, - BACKSLASH_ESCAPE:O,APOS_STRING_MODE:x,QUOTE_STRING_MODE:M,PHRASAL_WORDS_MODE:{ - begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/ - },COMMENT:k,C_LINE_COMMENT_MODE:S,C_BLOCK_COMMENT_MODE:A,HASH_COMMENT_MODE:C, - NUMBER_MODE:{scope:"number",begin:N,relevance:0},C_NUMBER_MODE:{scope:"number", - begin:w,relevance:0},BINARY_NUMBER_MODE:{scope:"number",begin:v,relevance:0}, - REGEXP_MODE:{begin:/(?=\/[^/\n]*\/)/,contains:[{scope:"regexp",begin:/\//, - end:/\/[gimuy]*/,illegal:/\n/,contains:[O,{begin:/\[/,end:/\]/,relevance:0, - contains:[O]}]}]},TITLE_MODE:{scope:"title",begin:E,relevance:0}, - UNDERSCORE_TITLE_MODE:{scope:"title",begin:y,relevance:0},METHOD_GUARD:{ - begin:"\\.\\s*[a-zA-Z_]\\w*",relevance:0},END_SAME_AS_BEGIN:e=>Object.assign(e,{ - "on:begin":(e,n)=>{n.data._beginMatch=e[1]},"on:end":(e,n)=>{ - n.data._beginMatch!==e[1]&&n.ignoreMatch()}})});function R(e,n){ - "."===e.input[e.index-1]&&n.ignoreMatch()}function D(e,n){ - void 0!==e.className&&(e.scope=e.className,delete e.className)}function I(e,n){ - n&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)", - e.__beforeBegin=R,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords, - void 0===e.relevance&&(e.relevance=0))}function L(e,n){ - Array.isArray(e.illegal)&&(e.illegal=p(...e.illegal))}function B(e,n){ - if(e.match){ - if(e.begin||e.end)throw Error("begin & end are not supported with match") - ;e.begin=e.match,delete e.match}}function $(e,n){ - void 0===e.relevance&&(e.relevance=1)}const F=(e,n)=>{if(!e.beforeMatch)return - ;if(e.starts)throw Error("beforeMatch cannot be used with starts") - ;const t=Object.assign({},e);Object.keys(e).forEach((n=>{delete e[n] - })),e.keywords=t.keywords,e.begin=m(t.beforeMatch,g(t.begin)),e.starts={ - relevance:0,contains:[Object.assign(t,{endsParent:!0})] - },e.relevance=0,delete t.beforeMatch - },z=["of","and","for","in","not","or","if","then","parent","list","value"] - ;function U(e,n,t="keyword"){const a=Object.create(null) - ;return"string"==typeof e?i(t,e.split(" ")):Array.isArray(e)?i(t,e):Object.keys(e).forEach((t=>{ - Object.assign(a,U(e[t],n,t))})),a;function i(e,t){ - n&&(t=t.map((e=>e.toLowerCase()))),t.forEach((n=>{const t=n.split("|") - ;a[t[0]]=[e,j(t[0],t[1])]}))}}function j(e,n){ - return n?Number(n):(e=>z.includes(e.toLowerCase()))(e)?0:1}const P={},K=e=>{ - console.error(e)},q=(e,...n)=>{console.log("WARN: "+e,...n)},H=(e,n)=>{ - P[`${e}/${n}`]||(console.log(`Deprecated as of ${e}. ${n}`),P[`${e}/${n}`]=!0) - },Z=Error();function G(e,n,{key:t}){let a=0;const i=e[t],r={},s={} - ;for(let e=1;e<=n.length;e++)s[e+a]=i[e],r[e+a]=!0,a+=_(n[e-1]) - ;e[t]=s,e[t]._emit=r,e[t]._multi=!0}function W(e){(e=>{ - e.scope&&"object"==typeof e.scope&&null!==e.scope&&(e.beginScope=e.scope, - delete e.scope)})(e),"string"==typeof e.beginScope&&(e.beginScope={ - _wrap:e.beginScope}),"string"==typeof e.endScope&&(e.endScope={_wrap:e.endScope - }),(e=>{if(Array.isArray(e.begin)){ - if(e.skip||e.excludeBegin||e.returnBegin)throw K("skip, excludeBegin, returnBegin not compatible with beginScope: {}"), - Z - ;if("object"!=typeof e.beginScope||null===e.beginScope)throw K("beginScope must be object"), - Z;G(e,e.begin,{key:"beginScope"}),e.begin=f(e.begin,{joinWith:""})}})(e),(e=>{ - if(Array.isArray(e.end)){ - if(e.skip||e.excludeEnd||e.returnEnd)throw K("skip, excludeEnd, returnEnd not compatible with endScope: {}"), - Z - ;if("object"!=typeof e.endScope||null===e.endScope)throw K("endScope must be object"), - Z;G(e,e.end,{key:"endScope"}),e.end=f(e.end,{joinWith:""})}})(e)}function Q(e){ - function n(n,t){ - return RegExp(d(n),"m"+(e.case_insensitive?"i":"")+(e.unicodeRegex?"u":"")+(t?"g":"")) - }class t{constructor(){ - this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0} - addRule(e,n){ - n.position=this.position++,this.matchIndexes[this.matchAt]=n,this.regexes.push([n,e]), - this.matchAt+=_(e)+1}compile(){0===this.regexes.length&&(this.exec=()=>null) - ;const e=this.regexes.map((e=>e[1]));this.matcherRe=n(f(e,{joinWith:"|" - }),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex - ;const n=this.matcherRe.exec(e);if(!n)return null - ;const t=n.findIndex(((e,n)=>n>0&&void 0!==e)),a=this.matchIndexes[t] - ;return n.splice(0,t),Object.assign(n,a)}}class a{constructor(){ - this.rules=[],this.multiRegexes=[], - this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){ - if(this.multiRegexes[e])return this.multiRegexes[e];const n=new t - ;return this.rules.slice(e).forEach((([e,t])=>n.addRule(e,t))), - n.compile(),this.multiRegexes[e]=n,n}resumingScanAtSamePosition(){ - return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,n){ - this.rules.push([e,n]),"begin"===n.type&&this.count++}exec(e){ - const n=this.getMatcher(this.regexIndex);n.lastIndex=this.lastIndex - ;let t=n.exec(e) - ;if(this.resumingScanAtSamePosition())if(t&&t.index===this.lastIndex);else{ - const n=this.getMatcher(0);n.lastIndex=this.lastIndex+1,t=n.exec(e)} - return t&&(this.regexIndex+=t.position+1, - this.regexIndex===this.count&&this.considerAll()),t}} - if(e.compilerExtensions||(e.compilerExtensions=[]), - e.contains&&e.contains.includes("self"))throw Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.") - ;return e.classNameAliases=r(e.classNameAliases||{}),function t(i,s){const o=i - ;if(i.isCompiled)return o - ;[D,B,W,F].forEach((e=>e(i,s))),e.compilerExtensions.forEach((e=>e(i,s))), - i.__beforeBegin=null,[I,L,$].forEach((e=>e(i,s))),i.isCompiled=!0;let l=null - ;return"object"==typeof i.keywords&&i.keywords.$pattern&&(i.keywords=Object.assign({},i.keywords), - l=i.keywords.$pattern, - delete i.keywords.$pattern),l=l||/\w+/,i.keywords&&(i.keywords=U(i.keywords,e.case_insensitive)), - o.keywordPatternRe=n(l,!0), - s&&(i.begin||(i.begin=/\B|\b/),o.beginRe=n(o.begin),i.end||i.endsWithParent||(i.end=/\B|\b/), - i.end&&(o.endRe=n(o.end)), - o.terminatorEnd=d(o.end)||"",i.endsWithParent&&s.terminatorEnd&&(o.terminatorEnd+=(i.end?"|":"")+s.terminatorEnd)), - i.illegal&&(o.illegalRe=n(i.illegal)), - i.contains||(i.contains=[]),i.contains=[].concat(...i.contains.map((e=>(e=>(e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((n=>r(e,{ - variants:null},n)))),e.cachedVariants?e.cachedVariants:X(e)?r(e,{ - starts:e.starts?r(e.starts):null - }):Object.isFrozen(e)?r(e):e))("self"===e?i:e)))),i.contains.forEach((e=>{t(e,o) - })),i.starts&&t(i.starts,s),o.matcher=(e=>{const n=new a - ;return e.contains.forEach((e=>n.addRule(e.begin,{rule:e,type:"begin" - }))),e.terminatorEnd&&n.addRule(e.terminatorEnd,{type:"end" - }),e.illegal&&n.addRule(e.illegal,{type:"illegal"}),n})(o),o}(e)}function X(e){ - return!!e&&(e.endsWithParent||X(e.starts))}class V extends Error{ - constructor(e,n){super(e),this.name="HTMLInjectionError",this.html=n}} - const J=i,Y=r,ee=Symbol("nomatch");var ne=(e=>{ - const n=Object.create(null),i=Object.create(null),r=[];let s=!0 - ;const o="Could not find the language '{}', did you forget to load/include a language module?",l={ - disableAutodetect:!0,name:"Plain text",contains:[]};let d={ - ignoreUnescapedHTML:!1,throwUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i, - languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-", - cssSelector:"pre code",languages:null,__emitter:c};function _(e){ - return d.noHighlightRe.test(e)}function h(e,n,t){let a="",i="" - ;"object"==typeof n?(a=e, - t=n.ignoreIllegals,i=n.language):(H("10.7.0","highlight(lang, code, ...args) has been deprecated."), - H("10.7.0","Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277"), - i=e,a=n),void 0===t&&(t=!0);const r={code:a,language:i};M("before:highlight",r) - ;const s=r.result?r.result:f(r.language,r.code,t) - ;return s.code=r.code,M("after:highlight",s),s}function f(e,t,i,r){ - const l=Object.create(null);function c(){if(!x.keywords)return void k.addText(S) - ;let e=0;x.keywordPatternRe.lastIndex=0;let n=x.keywordPatternRe.exec(S),t="" - ;for(;n;){t+=S.substring(e,n.index) - ;const i=N.case_insensitive?n[0].toLowerCase():n[0],r=(a=i,x.keywords[a]);if(r){ - const[e,a]=r - ;if(k.addText(t),t="",l[i]=(l[i]||0)+1,l[i]<=7&&(A+=a),e.startsWith("_"))t+=n[0];else{ - const t=N.classNameAliases[e]||e;k.addKeyword(n[0],t)}}else t+=n[0] - ;e=x.keywordPatternRe.lastIndex,n=x.keywordPatternRe.exec(S)}var a - ;t+=S.substr(e),k.addText(t)}function g(){null!=x.subLanguage?(()=>{ - if(""===S)return;let e=null;if("string"==typeof x.subLanguage){ - if(!n[x.subLanguage])return void k.addText(S) - ;e=f(x.subLanguage,S,!0,M[x.subLanguage]),M[x.subLanguage]=e._top - }else e=E(S,x.subLanguage.length?x.subLanguage:null) - ;x.relevance>0&&(A+=e.relevance),k.addSublanguage(e._emitter,e.language) - })():c(),S=""}function u(e,n){let t=1;for(;void 0!==n[t];){if(!e._emit[t]){t++ - ;continue}const a=N.classNameAliases[e[t]]||e[t],i=n[t] - ;a?k.addKeyword(i,a):(S=i,c(),S=""),t++}}function b(e,n){ - return e.scope&&"string"==typeof e.scope&&k.openNode(N.classNameAliases[e.scope]||e.scope), - e.beginScope&&(e.beginScope._wrap?(k.addKeyword(S,N.classNameAliases[e.beginScope._wrap]||e.beginScope._wrap), - S=""):e.beginScope._multi&&(u(e.beginScope,n),S="")),x=Object.create(e,{parent:{ - value:x}}),x}function m(e,n,t){let i=((e,n)=>{const t=e&&e.exec(n) - ;return t&&0===t.index})(e.endRe,t);if(i){if(e["on:end"]){const t=new a(e) - ;e["on:end"](n,t),t.isMatchIgnored&&(i=!1)}if(i){ - for(;e.endsParent&&e.parent;)e=e.parent;return e}} - if(e.endsWithParent)return m(e.parent,n,t)}function p(e){ - return 0===x.matcher.regexIndex?(S+=e[0],1):(R=!0,0)}function _(e){ - const n=e[0],a=t.substr(e.index),i=m(x,e,a);if(!i)return ee;const r=x - ;x.endScope&&x.endScope._wrap?(g(), - k.addKeyword(n,x.endScope._wrap)):x.endScope&&x.endScope._multi?(g(), - u(x.endScope,e)):r.skip?S+=n:(r.returnEnd||r.excludeEnd||(S+=n), - g(),r.excludeEnd&&(S=n));do{ - x.scope&&k.closeNode(),x.skip||x.subLanguage||(A+=x.relevance),x=x.parent - }while(x!==i.parent);return i.starts&&b(i.starts,e),r.returnEnd?0:n.length} - let h={};function y(n,r){const o=r&&r[0];if(S+=n,null==o)return g(),0 - ;if("begin"===h.type&&"end"===r.type&&h.index===r.index&&""===o){ - if(S+=t.slice(r.index,r.index+1),!s){const n=Error(`0 width match regex (${e})`) - ;throw n.languageName=e,n.badRule=h.rule,n}return 1} - if(h=r,"begin"===r.type)return(e=>{ - const n=e[0],t=e.rule,i=new a(t),r=[t.__beforeBegin,t["on:begin"]] - ;for(const t of r)if(t&&(t(e,i),i.isMatchIgnored))return p(n) - ;return t.skip?S+=n:(t.excludeBegin&&(S+=n), - g(),t.returnBegin||t.excludeBegin||(S=n)),b(t,e),t.returnBegin?0:n.length})(r) - ;if("illegal"===r.type&&!i){ - const e=Error('Illegal lexeme "'+o+'" for mode "'+(x.scope||"")+'"') - ;throw e.mode=x,e}if("end"===r.type){const e=_(r);if(e!==ee)return e} - if("illegal"===r.type&&""===o)return 1 - ;if(T>1e5&&T>3*r.index)throw Error("potential infinite loop, way more iterations than matches") - ;return S+=o,o.length}const N=v(e) - ;if(!N)throw K(o.replace("{}",e)),Error('Unknown language: "'+e+'"') - ;const w=Q(N);let O="",x=r||w;const M={},k=new d.__emitter(d);(()=>{const e=[] - ;for(let n=x;n!==N;n=n.parent)n.scope&&e.unshift(n.scope) - ;e.forEach((e=>k.openNode(e)))})();let S="",A=0,C=0,T=0,R=!1;try{ - for(x.matcher.considerAll();;){ - T++,R?R=!1:x.matcher.considerAll(),x.matcher.lastIndex=C - ;const e=x.matcher.exec(t);if(!e)break;const n=y(t.substring(C,e.index),e) - ;C=e.index+n}return y(t.substr(C)),k.closeAllNodes(),k.finalize(),O=k.toHTML(),{ - language:e,value:O,relevance:A,illegal:!1,_emitter:k,_top:x}}catch(n){ - if(n.message&&n.message.includes("Illegal"))return{language:e,value:J(t), - illegal:!0,relevance:0,_illegalBy:{message:n.message,index:C, - context:t.slice(C-100,C+100),mode:n.mode,resultSoFar:O},_emitter:k};if(s)return{ - language:e,value:J(t),illegal:!1,relevance:0,errorRaised:n,_emitter:k,_top:x} - ;throw n}}function E(e,t){t=t||d.languages||Object.keys(n);const a=(e=>{ - const n={value:J(e),illegal:!1,relevance:0,_top:l,_emitter:new d.__emitter(d)} - ;return n._emitter.addText(e),n})(e),i=t.filter(v).filter(x).map((n=>f(n,e,!1))) - ;i.unshift(a);const r=i.sort(((e,n)=>{ - if(e.relevance!==n.relevance)return n.relevance-e.relevance - ;if(e.language&&n.language){if(v(e.language).supersetOf===n.language)return 1 - ;if(v(n.language).supersetOf===e.language)return-1}return 0})),[s,o]=r,c=s - ;return c.secondBest=o,c}function y(e){let n=null;const t=(e=>{ - let n=e.className+" ";n+=e.parentNode?e.parentNode.className:"" - ;const t=d.languageDetectRe.exec(n);if(t){const n=v(t[1]) - ;return n||(q(o.replace("{}",t[1])), - q("Falling back to no-highlight mode for this block.",e)),n?t[1]:"no-highlight"} - return n.split(/\s+/).find((e=>_(e)||v(e)))})(e);if(_(t))return - ;if(M("before:highlightElement",{el:e,language:t - }),e.children.length>0&&(d.ignoreUnescapedHTML||(console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk."), - console.warn("https://github.com/highlightjs/highlight.js/wiki/security"), - console.warn("The element with unescaped HTML:"), - console.warn(e)),d.throwUnescapedHTML))throw new V("One of your code blocks includes unescaped HTML.",e.innerHTML) - ;n=e;const a=n.textContent,r=t?h(a,{language:t,ignoreIllegals:!0}):E(a) - ;e.innerHTML=r.value,((e,n,t)=>{const a=n&&i[n]||t - ;e.classList.add("hljs"),e.classList.add("language-"+a) - })(e,t,r.language),e.result={language:r.language,re:r.relevance, - relevance:r.relevance},r.secondBest&&(e.secondBest={ - language:r.secondBest.language,relevance:r.secondBest.relevance - }),M("after:highlightElement",{el:e,result:r,text:a})}let N=!1;function w(){ - "loading"!==document.readyState?document.querySelectorAll(d.cssSelector).forEach(y):N=!0 - }function v(e){return e=(e||"").toLowerCase(),n[e]||n[i[e]]} - function O(e,{languageName:n}){"string"==typeof e&&(e=[e]),e.forEach((e=>{ - i[e.toLowerCase()]=n}))}function x(e){const n=v(e) - ;return n&&!n.disableAutodetect}function M(e,n){const t=e;r.forEach((e=>{ - e[t]&&e[t](n)}))} - "undefined"!=typeof window&&window.addEventListener&&window.addEventListener("DOMContentLoaded",(()=>{ - N&&w()}),!1),Object.assign(e,{highlight:h,highlightAuto:E,highlightAll:w, - highlightElement:y, - highlightBlock:e=>(H("10.7.0","highlightBlock will be removed entirely in v12.0"), - H("10.7.0","Please use highlightElement now."),y(e)),configure:e=>{d=Y(d,e)}, - initHighlighting:()=>{ - w(),H("10.6.0","initHighlighting() deprecated. Use highlightAll() now.")}, - initHighlightingOnLoad:()=>{ - w(),H("10.6.0","initHighlightingOnLoad() deprecated. Use highlightAll() now.") - },registerLanguage:(t,a)=>{let i=null;try{i=a(e)}catch(e){ - if(K("Language definition for '{}' could not be registered.".replace("{}",t)), - !s)throw e;K(e),i=l} - i.name||(i.name=t),n[t]=i,i.rawDefinition=a.bind(null,e),i.aliases&&O(i.aliases,{ - languageName:t})},unregisterLanguage:e=>{delete n[e] - ;for(const n of Object.keys(i))i[n]===e&&delete i[n]}, - listLanguages:()=>Object.keys(n),getLanguage:v,registerAliases:O, - autoDetection:x,inherit:Y,addPlugin:e=>{(e=>{ - e["before:highlightBlock"]&&!e["before:highlightElement"]&&(e["before:highlightElement"]=n=>{ - e["before:highlightBlock"](Object.assign({block:n.el},n)) - }),e["after:highlightBlock"]&&!e["after:highlightElement"]&&(e["after:highlightElement"]=n=>{ - e["after:highlightBlock"](Object.assign({block:n.el},n))})})(e),r.push(e)} - }),e.debugMode=()=>{s=!1},e.safeMode=()=>{s=!0 - },e.versionString="11.4.0",e.regex={concat:m,lookahead:g,either:p,optional:b, - anyNumberOfTimes:u};for(const e in T)"object"==typeof T[e]&&t(T[e]) - ;return Object.assign(e,T),e})({});const te=e=>({IMPORTANT:{scope:"meta", - begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{ - scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/}, - FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/}, - ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$", - contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{ - scope:"number", - begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?", - relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z][A-Za-z0-9_-]*/} - }),ae=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],ie=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],re=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],se=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],oe=["align-content","align-items","align-self","all","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","content","content-visibility","counter-increment","counter-reset","cue","cue-after","cue-before","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-synthesis","font-variant","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","gap","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","isolation","justify-content","left","letter-spacing","line-break","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","max-height","max-width","min-height","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","pause","pause-after","pause-before","perspective","perspective-origin","pointer-events","position","quotes","resize","rest","rest-after","rest-before","right","row-gap","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","shape-image-threshold","shape-margin","shape-outside","speak","speak-as","src","tab-size","table-layout","text-align","text-align-all","text-align-last","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-box","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","z-index"].reverse(),le=re.concat(se) - ;var ce="\\.([0-9](_*[0-9])*)",de="[0-9a-fA-F](_*[0-9a-fA-F])*",ge={ - className:"number",variants:[{ - begin:`(\\b([0-9](_*[0-9])*)((${ce})|\\.)?|(${ce}))[eE][+-]?([0-9](_*[0-9])*)[fFdD]?\\b` - },{begin:`\\b([0-9](_*[0-9])*)((${ce})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{ - begin:`(${ce})[fFdD]?\\b`},{begin:"\\b([0-9](_*[0-9])*)[fFdD]\\b"},{ - begin:`\\b0[xX]((${de})\\.?|(${de})?\\.(${de}))[pP][+-]?([0-9](_*[0-9])*)[fFdD]?\\b` - },{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${de})[lL]?\\b`},{ - begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}], - relevance:0};function ue(e,n,t){return-1===t?"":e.replace(n,(a=>ue(e,n,t-1)))} - const be="[A-Za-z$_][0-9A-Za-z$_]*",me=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],pe=["true","false","null","undefined","NaN","Infinity"],_e=["Object","Function","Boolean","Symbol","Math","Date","Number","BigInt","String","RegExp","Array","Float32Array","Float64Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Int32Array","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array","Set","Map","WeakSet","WeakMap","ArrayBuffer","SharedArrayBuffer","Atomics","DataView","JSON","Promise","Generator","GeneratorFunction","AsyncFunction","Reflect","Proxy","Intl","WebAssembly"],he=["Error","EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],fe=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],Ee=["arguments","this","super","console","window","document","localStorage","module","global"],ye=[].concat(fe,_e,he) - ;function Ne(e){const n=e.regex,t=be,a={begin:/<[A-Za-z0-9\\._:-]+/, - end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(e,n)=>{ - const t=e[0].length+e.index,a=e.input[t] - ;if("<"===a||","===a)return void n.ignoreMatch();let i - ;">"===a&&(((e,{after:n})=>{const t="",x={ - match:[/const|var|let/,/\s+/,t,/\s*/,/=\s*/,/(async\s*)?/,n.lookahead(O)], - keywords:"async",className:{1:"keyword",3:"title.function"},contains:[_]} - ;return{name:"Javascript",aliases:["js","jsx","mjs","cjs"],keywords:i,exports:{ - PARAMS_CONTAINS:p,CLASS_REFERENCE:f},illegal:/#(?![$_A-z])/, - contains:[e.SHEBANG({label:"shebang",binary:"node",relevance:5}),{ - label:"use_strict",className:"meta",relevance:10, - begin:/^\s*['"]use (strict|asm)['"]/ - },e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,c,d,g,u,o,f,{className:"attr", - begin:t+n.lookahead(":"),relevance:0},x,{ - begin:"("+e.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*", - keywords:"return throw case",relevance:0,contains:[u,e.REGEXP_MODE,{ - className:"function",begin:O,returnBegin:!0,end:"\\s*=>",contains:[{ - className:"params",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{ - className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0, - excludeEnd:!0,keywords:i,contains:p}]}]},{begin:/,/,relevance:0},{match:/\s+/, - relevance:0},{variants:[{begin:"<>",end:""},{ - match:/<[A-Za-z0-9\\._:-]+\s*\/>/},{begin:a.begin, - "on:begin":a.isTrulyOpeningTag,end:a.end}],subLanguage:"xml",contains:[{ - begin:a.begin,end:a.end,skip:!0,contains:["self"]}]}]},E,{ - beginKeywords:"while if switch catch for"},{ - begin:"\\b(?!function)"+e.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{", - returnBegin:!0,label:"func.def",contains:[_,e.inherit(e.TITLE_MODE,{begin:t, - className:"title.function"})]},{match:/\.\.\./,relevance:0},w,{match:"\\$"+t, - relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"}, - contains:[_]},y,{relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/, - className:"variable.constant"},h,v,{match:/\$[(.]/}]}} - const we=e=>m(/\b/,e,/\w$/.test(e)?/\b/:/\B/),ve=["Protocol","Type"].map(we),Oe=["init","self"].map(we),xe=["Any","Self"],Me=["actor","associatedtype","async","await",/as\?/,/as!/,"as","break","case","catch","class","continue","convenience","default","defer","deinit","didSet","do","dynamic","else","enum","extension","fallthrough",/fileprivate\(set\)/,"fileprivate","final","for","func","get","guard","if","import","indirect","infix",/init\?/,/init!/,"inout",/internal\(set\)/,"internal","in","is","isolated","nonisolated","lazy","let","mutating","nonmutating",/open\(set\)/,"open","operator","optional","override","postfix","precedencegroup","prefix",/private\(set\)/,"private","protocol",/public\(set\)/,"public","repeat","required","rethrows","return","set","some","static","struct","subscript","super","switch","throws","throw",/try\?/,/try!/,"try","typealias",/unowned\(safe\)/,/unowned\(unsafe\)/,"unowned","var","weak","where","while","willSet"],ke=["false","nil","true"],Se=["assignment","associativity","higherThan","left","lowerThan","none","right"],Ae=["#colorLiteral","#column","#dsohandle","#else","#elseif","#endif","#error","#file","#fileID","#fileLiteral","#filePath","#function","#if","#imageLiteral","#keyPath","#line","#selector","#sourceLocation","#warn_unqualified_access","#warning"],Ce=["abs","all","any","assert","assertionFailure","debugPrint","dump","fatalError","getVaList","isKnownUniquelyReferenced","max","min","numericCast","pointwiseMax","pointwiseMin","precondition","preconditionFailure","print","readLine","repeatElement","sequence","stride","swap","swift_unboxFromSwiftValueWithType","transcode","type","unsafeBitCast","unsafeDowncast","withExtendedLifetime","withUnsafeMutablePointer","withUnsafePointer","withVaList","withoutActuallyEscaping","zip"],Te=p(/[/=\-+!*%<>&|^~?]/,/[\u00A1-\u00A7]/,/[\u00A9\u00AB]/,/[\u00AC\u00AE]/,/[\u00B0\u00B1]/,/[\u00B6\u00BB\u00BF\u00D7\u00F7]/,/[\u2016-\u2017]/,/[\u2020-\u2027]/,/[\u2030-\u203E]/,/[\u2041-\u2053]/,/[\u2055-\u205E]/,/[\u2190-\u23FF]/,/[\u2500-\u2775]/,/[\u2794-\u2BFF]/,/[\u2E00-\u2E7F]/,/[\u3001-\u3003]/,/[\u3008-\u3020]/,/[\u3030]/),Re=p(Te,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),De=m(Te,Re,"*"),Ie=p(/[a-zA-Z_]/,/[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/,/[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/,/[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/,/[\u1E00-\u1FFF]/,/[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/,/[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/,/[\u2C00-\u2DFF\u2E80-\u2FFF]/,/[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/,/[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/,/[\uFE47-\uFEFE\uFF00-\uFFFD]/),Le=p(Ie,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),Be=m(Ie,Le,"*"),$e=m(/[A-Z]/,Le,"*"),Fe=["autoclosure",m(/convention\(/,p("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",m(/objc\(/,Be,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","resultBuilder","testable","UIApplicationMain","unknown","usableFromInline"],ze=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"] - ;var Ue=Object.freeze({__proto__:null,grmr_bash:e=>{const n=e.regex,t={},a={ - begin:/\$\{/,end:/\}/,contains:["self",{begin:/:-/,contains:[t]}]} - ;Object.assign(t,{className:"variable",variants:[{ - begin:n.concat(/\$[\w\d#@][\w\d_]*/,"(?![\\w\\d])(?![$])")},a]});const i={ - className:"subst",begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]},r={ - begin:/<<-?\s*(?=\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/, - end:/(\w+)/,className:"string"})]}},s={className:"string",begin:/"/,end:/"/, - contains:[e.BACKSLASH_ESCAPE,t,i]};i.contains.push(s);const o={begin:/\$\(\(/, - end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},e.NUMBER_MODE,t] - },l=e.SHEBANG({binary:"(fish|bash|zsh|sh|csh|ksh|tcsh|dash|scsh)",relevance:10 - }),c={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0, - contains:[e.inherit(e.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0};return{ - name:"Bash",aliases:["sh"],keywords:{$pattern:/\b[a-z._-]+\b/, - keyword:["if","then","else","elif","fi","for","while","in","do","done","case","esac","function"], - literal:["true","false"], - built_in:["break","cd","continue","eval","exec","exit","export","getopts","hash","pwd","readonly","return","shift","test","times","trap","umask","unset","alias","bind","builtin","caller","command","declare","echo","enable","help","let","local","logout","mapfile","printf","read","readarray","source","type","typeset","ulimit","unalias","set","shopt","autoload","bg","bindkey","bye","cap","chdir","clone","comparguments","compcall","compctl","compdescribe","compfiles","compgroups","compquote","comptags","comptry","compvalues","dirs","disable","disown","echotc","echoti","emulate","fc","fg","float","functions","getcap","getln","history","integer","jobs","kill","limit","log","noglob","popd","print","pushd","pushln","rehash","sched","setcap","setopt","stat","suspend","ttyctl","unfunction","unhash","unlimit","unsetopt","vared","wait","whence","where","which","zcompile","zformat","zftp","zle","zmodload","zparseopts","zprof","zpty","zregexparse","zsocket","zstyle","ztcp","chcon","chgrp","chown","chmod","cp","dd","df","dir","dircolors","ln","ls","mkdir","mkfifo","mknod","mktemp","mv","realpath","rm","rmdir","shred","sync","touch","truncate","vdir","b2sum","base32","base64","cat","cksum","comm","csplit","cut","expand","fmt","fold","head","join","md5sum","nl","numfmt","od","paste","ptx","pr","sha1sum","sha224sum","sha256sum","sha384sum","sha512sum","shuf","sort","split","sum","tac","tail","tr","tsort","unexpand","uniq","wc","arch","basename","chroot","date","dirname","du","echo","env","expr","factor","groups","hostid","id","link","logname","nice","nohup","nproc","pathchk","pinky","printenv","printf","pwd","readlink","runcon","seq","sleep","stat","stdbuf","stty","tee","test","timeout","tty","uname","unlink","uptime","users","who","whoami","yes"] - },contains:[l,e.SHEBANG(),c,o,e.HASH_COMMENT_MODE,r,{match:/(\/[a-z._-]+)+/},s,{ - className:"",begin:/\\"/},{className:"string",begin:/'/,end:/'/},t]}}, - grmr_c:e=>{const n=e.regex,t=e.COMMENT("//","$",{contains:[{begin:/\\\n/}] - }),a="[a-zA-Z_]\\w*::",i="(decltype\\(auto\\)|"+n.optional(a)+"[a-zA-Z_]\\w*"+n.optional("<[^<>]+>")+")",r={ - className:"type",variants:[{begin:"\\b[a-z\\d_]*_t\\b"},{ - match:/\batomic_[a-z]{3,6}\b/}]},s={className:"string",variants:[{ - begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{ - begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)", - end:"'",illegal:"."},e.END_SAME_AS_BEGIN({ - begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},o={ - className:"number",variants:[{begin:"\\b(0b[01']+)"},{ - begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)" - },{ - begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)" - }],relevance:0},l={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{ - keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include" - },contains:[{begin:/\\\n/,relevance:0},e.inherit(s,{className:"string"}),{ - className:"string",begin:/<.*?>/},t,e.C_BLOCK_COMMENT_MODE]},c={ - className:"title",begin:n.optional(a)+e.IDENT_RE,relevance:0 - },d=n.optional(a)+e.IDENT_RE+"\\s*\\(",g={ - keyword:["asm","auto","break","case","continue","default","do","else","enum","extern","for","fortran","goto","if","inline","register","restrict","return","sizeof","struct","switch","typedef","union","volatile","while","_Alignas","_Alignof","_Atomic","_Generic","_Noreturn","_Static_assert","_Thread_local","alignas","alignof","noreturn","static_assert","thread_local","_Pragma"], - type:["float","double","signed","unsigned","int","short","long","char","void","_Bool","_Complex","_Imaginary","_Decimal32","_Decimal64","_Decimal128","const","static","complex","bool","imaginary"], - literal:"true false NULL", - built_in:"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr" - },u=[l,r,t,e.C_BLOCK_COMMENT_MODE,o,s],b={variants:[{begin:/=/,end:/;/},{ - begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}], - keywords:g,contains:u.concat([{begin:/\(/,end:/\)/,keywords:g, - contains:u.concat(["self"]),relevance:0}]),relevance:0},m={ - begin:"("+i+"[\\*&\\s]+)+"+d,returnBegin:!0,end:/[{;=]/,excludeEnd:!0, - keywords:g,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:"decltype\\(auto\\)", - keywords:g,relevance:0},{begin:d,returnBegin:!0,contains:[e.inherit(c,{ - className:"title.function"})],relevance:0},{relevance:0,match:/,/},{ - className:"params",begin:/\(/,end:/\)/,keywords:g,relevance:0, - contains:[t,e.C_BLOCK_COMMENT_MODE,s,o,r,{begin:/\(/,end:/\)/,keywords:g, - relevance:0,contains:["self",t,e.C_BLOCK_COMMENT_MODE,s,o,r]}] - },r,t,e.C_BLOCK_COMMENT_MODE,l]};return{name:"C",aliases:["h"],keywords:g, - disableAutodetect:!0,illegal:"=]/,contains:[{ - beginKeywords:"final class struct"},e.TITLE_MODE]}]),exports:{preprocessor:l, - strings:s,keywords:g}}},grmr_cpp:e=>{const n=e.regex,t=e.COMMENT("//","$",{ - contains:[{begin:/\\\n/}] - }),a="[a-zA-Z_]\\w*::",i="(?!struct)(decltype\\(auto\\)|"+n.optional(a)+"[a-zA-Z_]\\w*"+n.optional("<[^<>]+>")+")",r={ - className:"type",begin:"\\b[a-z\\d_]*_t\\b"},s={className:"string",variants:[{ - begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{ - begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)", - end:"'",illegal:"."},e.END_SAME_AS_BEGIN({ - begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},o={ - className:"number",variants:[{begin:"\\b(0b[01']+)"},{ - begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)" - },{ - begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)" - }],relevance:0},l={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{ - keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include" - },contains:[{begin:/\\\n/,relevance:0},e.inherit(s,{className:"string"}),{ - className:"string",begin:/<.*?>/},t,e.C_BLOCK_COMMENT_MODE]},c={ - className:"title",begin:n.optional(a)+e.IDENT_RE,relevance:0 - },d=n.optional(a)+e.IDENT_RE+"\\s*\\(",g={ - type:["bool","char","char16_t","char32_t","char8_t","double","float","int","long","short","void","wchar_t","unsigned","signed","const","static"], - keyword:["alignas","alignof","and","and_eq","asm","atomic_cancel","atomic_commit","atomic_noexcept","auto","bitand","bitor","break","case","catch","class","co_await","co_return","co_yield","compl","concept","const_cast|10","consteval","constexpr","constinit","continue","decltype","default","delete","do","dynamic_cast|10","else","enum","explicit","export","extern","false","final","for","friend","goto","if","import","inline","module","mutable","namespace","new","noexcept","not","not_eq","nullptr","operator","or","or_eq","override","private","protected","public","reflexpr","register","reinterpret_cast|10","requires","return","sizeof","static_assert","static_cast|10","struct","switch","synchronized","template","this","thread_local","throw","transaction_safe","transaction_safe_dynamic","true","try","typedef","typeid","typename","union","using","virtual","volatile","while","xor","xor_eq"], - literal:["NULL","false","nullopt","nullptr","true"],built_in:["_Pragma"], - _type_hints:["any","auto_ptr","barrier","binary_semaphore","bitset","complex","condition_variable","condition_variable_any","counting_semaphore","deque","false_type","future","imaginary","initializer_list","istringstream","jthread","latch","lock_guard","multimap","multiset","mutex","optional","ostringstream","packaged_task","pair","promise","priority_queue","queue","recursive_mutex","recursive_timed_mutex","scoped_lock","set","shared_future","shared_lock","shared_mutex","shared_timed_mutex","shared_ptr","stack","string_view","stringstream","timed_mutex","thread","true_type","tuple","unique_lock","unique_ptr","unordered_map","unordered_multimap","unordered_multiset","unordered_set","variant","vector","weak_ptr","wstring","wstring_view"] - },u={className:"function.dispatch",relevance:0,keywords:{ - _hint:["abort","abs","acos","apply","as_const","asin","atan","atan2","calloc","ceil","cerr","cin","clog","cos","cosh","cout","declval","endl","exchange","exit","exp","fabs","floor","fmod","forward","fprintf","fputs","free","frexp","fscanf","future","invoke","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","labs","launder","ldexp","log","log10","make_pair","make_shared","make_shared_for_overwrite","make_tuple","make_unique","malloc","memchr","memcmp","memcpy","memset","modf","move","pow","printf","putchar","puts","realloc","scanf","sin","sinh","snprintf","sprintf","sqrt","sscanf","std","stderr","stdin","stdout","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","swap","tan","tanh","terminate","to_underlying","tolower","toupper","vfprintf","visit","vprintf","vsprintf"] +var hljs = (function () { + "use strict" + var e = { exports: {} } + function n(e) { + return ( + e instanceof Map + ? (e.clear = + e.delete = + e.set = + () => { + throw Error("map is read-only") + }) + : e instanceof Set && + (e.add = + e.clear = + e.delete = + () => { + throw Error("set is read-only") + }), + Object.freeze(e), + Object.getOwnPropertyNames(e).forEach((t) => { + var a = e[t] + "object" != typeof a || Object.isFrozen(a) || n(a) + }), + e + ) + } + ;(e.exports = n), (e.exports.default = n) + var t = e.exports + class a { + constructor(e) { + void 0 === e.data && (e.data = {}), + (this.data = e.data), + (this.isMatchIgnored = !1) + } + ignoreMatch() { + this.isMatchIgnored = !0 + } + } + function i(e) { + return e + .replace(/&/g, "&") + .replace(//g, ">") + .replace(/"/g, """) + .replace(/'/g, "'") + } + function r(e, ...n) { + const t = Object.create(null) + for (const n in e) t[n] = e[n] + return ( + n.forEach((e) => { + for (const n in e) t[n] = e[n] + }), + t + ) + } + const s = (e) => !!e.kind + class o { + constructor(e, n) { + ;(this.buffer = ""), (this.classPrefix = n.classPrefix), e.walk(this) + } + addText(e) { + this.buffer += i(e) + } + openNode(e) { + if (!s(e)) return + let n = e.kind + ;(n = e.sublanguage + ? "language-" + n + : ((e, { prefix: n }) => { + if (e.includes(".")) { + const t = e.split(".") + return [ + `${n}${t.shift()}`, + ...t.map((e, n) => `${e}${"_".repeat(n + 1)}`), + ].join(" ") + } + return `${n}${e}` + })(n, { prefix: this.classPrefix })), + this.span(n) + } + closeNode(e) { + s(e) && (this.buffer += "") + } + value() { + return this.buffer + } + span(e) { + this.buffer += `` + } + } + class l { + constructor() { + ;(this.rootNode = { + children: [], + }), + (this.stack = [this.rootNode]) + } + get top() { + return this.stack[this.stack.length - 1] + } + get root() { + return this.rootNode + } + add(e) { + this.top.children.push(e) + } + openNode(e) { + const n = { kind: e, children: [] } + this.add(n), this.stack.push(n) + } + closeNode() { + if (this.stack.length > 1) return this.stack.pop() + } + closeAllNodes() { + for (; this.closeNode(); ); + } + toJSON() { + return JSON.stringify(this.rootNode, null, 4) + } + walk(e) { + return this.constructor._walk(e, this.rootNode) + } + static _walk(e, n) { + return ( + "string" == typeof n + ? e.addText(n) + : n.children && + (e.openNode(n), + n.children.forEach((n) => this._walk(e, n)), + e.closeNode(n)), + e + ) + } + static _collapse(e) { + "string" != typeof e && + e.children && + (e.children.every((e) => "string" == typeof e) + ? (e.children = [e.children.join("")]) + : e.children.forEach((e) => { + l._collapse(e) + })) + } + } + class c extends l { + constructor(e) { + super(), (this.options = e) + } + addKeyword(e, n) { + "" !== e && (this.openNode(n), this.addText(e), this.closeNode()) + } + addText(e) { + "" !== e && this.add(e) + } + addSublanguage(e, n) { + const t = e.root + ;(t.kind = n), (t.sublanguage = !0), this.add(t) + } + toHTML() { + return new o(this, this.options).value() + } + finalize() { + return !0 + } + } + function d(e) { + return e ? ("string" == typeof e ? e : e.source) : null + } + function g(e) { + return m("(?=", e, ")") + } + function u(e) { + return m("(?:", e, ")*") + } + function b(e) { + return m("(?:", e, ")?") + } + function m(...e) { + return e.map((e) => d(e)).join("") + } + function p(...e) { + const n = ((e) => { + const n = e[e.length - 1] + return "object" == typeof n && n.constructor === Object + ? (e.splice(e.length - 1, 1), n) + : {} + })(e) + return "(" + (n.capture ? "" : "?:") + e.map((e) => d(e)).join("|") + ")" + } + function _(e) { + return RegExp(e.toString() + "|").exec("").length - 1 + } + const h = /\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./ + function f(e, { joinWith: n }) { + let t = 0 + return e + .map((e) => { + t += 1 + const n = t + let a = d(e), + i = "" + for (; a.length > 0; ) { + const e = h.exec(a) + if (!e) { + i += a + break + } + ;(i += a.substring(0, e.index)), + (a = a.substring(e.index + e[0].length)), + "\\" === e[0][0] && e[1] + ? (i += "\\" + (Number(e[1]) + n)) + : ((i += e[0]), "(" === e[0] && t++) + } + return i + }) + .map((e) => `(${e})`) + .join(n) + } + const E = "[a-zA-Z]\\w*", + y = "[a-zA-Z_]\\w*", + N = "\\b\\d+(\\.\\d+)?", + w = + "(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)", + v = "\\b(0b[01]+)", + O = { + begin: "\\\\[\\s\\S]", + relevance: 0, }, - begin:n.concat(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!switch)/,/(?!while)/,e.IDENT_RE,n.lookahead(/(<[^<>]+>|)\s*\(/)) - },b=[u,l,r,t,e.C_BLOCK_COMMENT_MODE,o,s],m={variants:[{begin:/=/,end:/;/},{ - begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}], - keywords:g,contains:b.concat([{begin:/\(/,end:/\)/,keywords:g, - contains:b.concat(["self"]),relevance:0}]),relevance:0},p={className:"function", - begin:"("+i+"[\\*&\\s]+)+"+d,returnBegin:!0,end:/[{;=]/,excludeEnd:!0, - keywords:g,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:"decltype\\(auto\\)", - keywords:g,relevance:0},{begin:d,returnBegin:!0,contains:[c],relevance:0},{ - begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[s,o]},{ - relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:g, - relevance:0,contains:[t,e.C_BLOCK_COMMENT_MODE,s,o,r,{begin:/\(/,end:/\)/, - keywords:g,relevance:0,contains:["self",t,e.C_BLOCK_COMMENT_MODE,s,o,r]}] - },r,t,e.C_BLOCK_COMMENT_MODE,l]};return{name:"C++", - aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:g,illegal:"",keywords:g,contains:["self",r]},{begin:e.IDENT_RE+"::",keywords:g},{ - match:[/\b(?:enum(?:\s+(?:class|struct))?|class|struct|union)/,/\s+/,/\w+/], - className:{1:"keyword",3:"title.class"}}])}},grmr_csharp:e=>{const n={ - keyword:["abstract","as","base","break","case","catch","class","const","continue","do","else","event","explicit","extern","finally","fixed","for","foreach","goto","if","implicit","in","interface","internal","is","lock","namespace","new","operator","out","override","params","private","protected","public","readonly","record","ref","return","sealed","sizeof","stackalloc","static","struct","switch","this","throw","try","typeof","unchecked","unsafe","using","virtual","void","volatile","while"].concat(["add","alias","and","ascending","async","await","by","descending","equals","from","get","global","group","init","into","join","let","nameof","not","notnull","on","or","orderby","partial","remove","select","set","unmanaged","value|0","var","when","where","with","yield"]), - built_in:["bool","byte","char","decimal","delegate","double","dynamic","enum","float","int","long","nint","nuint","object","sbyte","short","string","ulong","uint","ushort"], - literal:["default","false","null","true"]},t=e.inherit(e.TITLE_MODE,{ - begin:"[a-zA-Z](\\.?\\w)*"}),a={className:"number",variants:[{ - begin:"\\b(0b[01']+)"},{ - begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{ - begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)" - }],relevance:0},i={className:"string",begin:'@"',end:'"',contains:[{begin:'""'}] - },r=e.inherit(i,{illegal:/\n/}),s={className:"subst",begin:/\{/,end:/\}/, - keywords:n},o=e.inherit(s,{illegal:/\n/}),l={className:"string",begin:/\$"/, - end:'"',illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/ - },e.BACKSLASH_ESCAPE,o]},c={className:"string",begin:/\$@"/,end:'"',contains:[{ - begin:/\{\{/},{begin:/\}\}/},{begin:'""'},s]},d=e.inherit(c,{illegal:/\n/, - contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},o]}) - ;s.contains=[c,l,i,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,a,e.C_BLOCK_COMMENT_MODE], - o.contains=[d,l,r,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,a,e.inherit(e.C_BLOCK_COMMENT_MODE,{ - illegal:/\n/})];const g={variants:[c,l,i,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE] - },u={begin:"<",end:">",contains:[{beginKeywords:"in out"},t] - },b=e.IDENT_RE+"(<"+e.IDENT_RE+"(\\s*,\\s*"+e.IDENT_RE+")*>)?(\\[\\])?",m={ - begin:"@"+e.IDENT_RE,relevance:0};return{name:"C#",aliases:["cs","c#"], - keywords:n,illegal:/::/,contains:[e.COMMENT("///","$",{returnBegin:!0, - contains:[{className:"doctag",variants:[{begin:"///",relevance:0},{ - begin:"\x3c!--|--\x3e"},{begin:""}]}] - }),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"meta",begin:"#", - end:"$",keywords:{ - keyword:"if else elif endif define undef warning error line region endregion pragma checksum" - }},g,a,{beginKeywords:"class interface",relevance:0,end:/[{;=]/, - illegal:/[^\s:,]/,contains:[{beginKeywords:"where class" - },t,u,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace", - relevance:0,end:/[{;=]/,illegal:/[^\s:]/, - contains:[t,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{ - beginKeywords:"record",relevance:0,end:/[{;=]/,illegal:/[^\s:]/, - contains:[t,u,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"meta", - begin:"^\\s*\\[(?=[\\w])",excludeBegin:!0,end:"\\]",excludeEnd:!0,contains:[{ - className:"string",begin:/"/,end:/"/}]},{ - beginKeywords:"new return throw await else",relevance:0},{className:"function", - begin:"("+b+"\\s+)+"+e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0, - end:/\s*[{;=]/,excludeEnd:!0,keywords:n,contains:[{ - beginKeywords:"public private protected static internal protected abstract async extern override unsafe virtual new sealed partial", - relevance:0},{begin:e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0, - contains:[e.TITLE_MODE,u],relevance:0},{match:/\(\)/},{className:"params", - begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:n,relevance:0, - contains:[g,a,e.C_BLOCK_COMMENT_MODE] - },e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},m]}},grmr_css:e=>{ - const n=e.regex,t=te(e),a=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE];return{ - name:"CSS",case_insensitive:!0,illegal:/[=|'\$]/,keywords:{ - keyframePosition:"from to"},classNameAliases:{keyframePosition:"selector-tag"}, - contains:[t.BLOCK_COMMENT,{begin:/-(webkit|moz|ms|o)-(?=[a-z])/ - },t.CSS_NUMBER_MODE,{className:"selector-id",begin:/#[A-Za-z0-9_-]+/,relevance:0 - },{className:"selector-class",begin:"\\.[a-zA-Z-][a-zA-Z0-9_-]*",relevance:0 - },t.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",variants:[{ - begin:":("+re.join("|")+")"},{begin:":(:)?("+se.join("|")+")"}] - },t.CSS_VARIABLE,{className:"attribute",begin:"\\b("+oe.join("|")+")\\b"},{ - begin:/:/,end:/[;}{]/, - contains:[t.BLOCK_COMMENT,t.HEXCOLOR,t.IMPORTANT,t.CSS_NUMBER_MODE,...a,{ - begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:"url data-uri" - },contains:[{className:"string",begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}] - },t.FUNCTION_DISPATCH]},{begin:n.lookahead(/@/),end:"[{;]",relevance:0, - illegal:/:/,contains:[{className:"keyword",begin:/@-?\w[\w]*(-\w+)*/},{ - begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{ - $pattern:/[a-z-]+/,keyword:"and or not only",attribute:ie.join(" ")},contains:[{ - begin:/[a-z-]+(?=:)/,className:"attribute"},...a,t.CSS_NUMBER_MODE]}]},{ - className:"selector-tag",begin:"\\b("+ae.join("|")+")\\b"}]}},grmr_diff:e=>{ - const n=e.regex;return{name:"Diff",aliases:["patch"],contains:[{ - className:"meta",relevance:10, - match:n.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/) - },{className:"comment",variants:[{ - begin:n.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/), - end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{ - className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/, - end:/$/}]}},grmr_go:e=>{const n={ - keyword:["break","case","chan","const","continue","default","defer","else","fallthrough","for","func","go","goto","if","import","interface","map","package","range","return","select","struct","switch","type","var"], - type:["bool","byte","complex64","complex128","error","float32","float64","int8","int16","int32","int64","string","uint8","uint16","uint32","uint64","int","uint","uintptr","rune"], - literal:["true","false","iota","nil"], - built_in:["append","cap","close","complex","copy","imag","len","make","new","panic","print","println","real","recover","delete"] - };return{name:"Go",aliases:["golang"],keywords:n,illegal:"{ - const n=e.regex,t={className:"number",relevance:0,variants:[{ - begin:/([+-]+)?[\d]+_[\d_]+/},{begin:e.NUMBER_RE}]},a=e.COMMENT();a.variants=[{ - begin:/;/,end:/$/},{begin:/#/,end:/$/}];const i={className:"variable", - variants:[{begin:/\$[\w\d"][\w\d_]*/},{begin:/\$\{(.*?)\}/}]},r={ - className:"literal",begin:/\bon|off|true|false|yes|no\b/},s={className:"string", - contains:[e.BACKSLASH_ESCAPE],variants:[{begin:"'''",end:"'''",relevance:10},{ - begin:'"""',end:'"""',relevance:10},{begin:'"',end:'"'},{begin:"'",end:"'"}] - },o={begin:/\[/,end:/\]/,contains:[a,r,i,s,t,"self"],relevance:0 - },l=n.either(/[A-Za-z0-9_-]+/,/"(\\"|[^"])*"/,/'[^']*'/);return{ - name:"TOML, also INI",aliases:["toml"],case_insensitive:!0,illegal:/\S/, - contains:[a,{className:"section",begin:/\[+/,end:/\]+/},{ - begin:n.concat(l,"(\\s*\\.\\s*",l,")*",n.lookahead(/\s*=\s*[^#\s]/)), - className:"attr",starts:{end:/$/,contains:[a,o,r,i,s,t]}}]}},grmr_java:e=>{ - e.regex - ;const n="[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*",t=n+ue("(?:<"+n+"~~~(?:\\s*,\\s*"+n+"~~~)*>)?",/~~~/g,2),a={ - keyword:["synchronized","abstract","private","var","static","if","const ","for","while","strictfp","finally","protected","import","native","final","void","enum","else","break","transient","catch","instanceof","volatile","case","assert","package","default","public","try","switch","continue","throws","protected","public","private","module","requires","exports","do","sealed"], - literal:["false","true","null"], - type:["char","boolean","long","float","int","byte","short","double"], - built_in:["super","this"]},i={className:"meta",begin:"@"+n,contains:[{ - begin:/\(/,end:/\)/,contains:["self"]}]},r={className:"params",begin:/\(/, - end:/\)/,keywords:a,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE],endsParent:!0} - ;return{name:"Java",aliases:["jsp"],keywords:a,illegal:/<\/|#/, - contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/, - relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),{ - begin:/import java\.[a-z]+\./,keywords:"import",relevance:2 - },e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{begin:/"""/,end:/"""/, - className:"string",contains:[e.BACKSLASH_ESCAPE] - },e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{ - match:[/\b(?:class|interface|enum|extends|implements|new)/,/\s+/,n],className:{ - 1:"keyword",3:"title.class"}},{match:/non-sealed/,scope:"keyword"},{ - begin:[n,/\s+/,n,/\s+/,/=/],className:{1:"type",3:"variable",5:"operator"}},{ - begin:[/record/,/\s+/,n],className:{1:"keyword",3:"title.class"}, - contains:[r,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{ - beginKeywords:"new throw return else",relevance:0},{ - begin:["(?:"+t+"\\s+)",e.UNDERSCORE_IDENT_RE,/\s*(?=\()/],className:{ - 2:"title.function"},keywords:a,contains:[{className:"params",begin:/\(/, - end:/\)/,keywords:a,relevance:0, - contains:[i,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,ge,e.C_BLOCK_COMMENT_MODE] - },e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},ge,i]}},grmr_javascript:Ne, - grmr_json:e=>({name:"JSON",contains:[{className:"attr", - begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},{match:/[{}[\],:]/, - className:"punctuation",relevance:0},e.QUOTE_STRING_MODE,{ - beginKeywords:"true false null" - },e.C_NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],illegal:"\\S"}), - grmr_kotlin:e=>{const n={ - keyword:"abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual", - built_in:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing", - literal:"true false null"},t={className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"@" - },a={className:"subst",begin:/\$\{/,end:/\}/,contains:[e.C_NUMBER_MODE]},i={ - className:"variable",begin:"\\$"+e.UNDERSCORE_IDENT_RE},r={className:"string", - variants:[{begin:'"""',end:'"""(?=[^"])',contains:[i,a]},{begin:"'",end:"'", - illegal:/\n/,contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"',illegal:/\n/, - contains:[e.BACKSLASH_ESCAPE,i,a]}]};a.contains.push(r);const s={ - className:"meta", - begin:"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*"+e.UNDERSCORE_IDENT_RE+")?" - },o={className:"meta",begin:"@"+e.UNDERSCORE_IDENT_RE,contains:[{begin:/\(/, - end:/\)/,contains:[e.inherit(r,{className:"string"})]}] - },l=ge,c=e.COMMENT("/\\*","\\*/",{contains:[e.C_BLOCK_COMMENT_MODE]}),d={ - variants:[{className:"type",begin:e.UNDERSCORE_IDENT_RE},{begin:/\(/,end:/\)/, - contains:[]}]},g=d;return g.variants[1].contains=[d],d.variants[1].contains=[g], - {name:"Kotlin",aliases:["kt","kts"],keywords:n, - contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{className:"doctag", - begin:"@[A-Za-z]+"}]}),e.C_LINE_COMMENT_MODE,c,{className:"keyword", - begin:/\b(break|continue|return|this)\b/,starts:{contains:[{className:"symbol", - begin:/@\w+/}]}},t,s,o,{className:"function",beginKeywords:"fun",end:"[(]|$", - returnBegin:!0,excludeEnd:!0,keywords:n,relevance:5,contains:[{ - begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0, - contains:[e.UNDERSCORE_TITLE_MODE]},{className:"type",begin://, - keywords:"reified",relevance:0},{className:"params",begin:/\(/,end:/\)/, - endsParent:!0,keywords:n,relevance:0,contains:[{begin:/:/,end:/[=,\/]/, - endsWithParent:!0,contains:[d,e.C_LINE_COMMENT_MODE,c],relevance:0 - },e.C_LINE_COMMENT_MODE,c,s,o,r,e.C_NUMBER_MODE]},c]},{className:"class", - beginKeywords:"class interface trait",end:/[:\{(]|$/,excludeEnd:!0, - illegal:"extends implements",contains:[{ - beginKeywords:"public protected internal private constructor" - },e.UNDERSCORE_TITLE_MODE,{className:"type",begin://,excludeBegin:!0, - excludeEnd:!0,relevance:0},{className:"type",begin:/[,:]\s*/,end:/[<\(,]|$/, - excludeBegin:!0,returnEnd:!0},s,o]},r,{className:"meta",begin:"^#!/usr/bin/env", - end:"$",illegal:"\n"},l]}},grmr_less:e=>{ - const n=te(e),t=le,a="([\\w-]+|@\\{[\\w-]+\\})",i=[],r=[],s=e=>({ - className:"string",begin:"~?"+e+".*?"+e}),o=(e,n,t)=>({className:e,begin:n, - relevance:t}),l={$pattern:/[a-z-]+/,keyword:"and or not only", - attribute:ie.join(" ")},c={begin:"\\(",end:"\\)",contains:r,keywords:l, - relevance:0} - ;r.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,s("'"),s('"'),n.CSS_NUMBER_MODE,{ - begin:"(url|data-uri)\\(",starts:{className:"string",end:"[\\)\\n]", - excludeEnd:!0} - },n.HEXCOLOR,c,o("variable","@@?[\\w-]+",10),o("variable","@\\{[\\w-]+\\}"),o("built_in","~?`[^`]*?`"),{ - className:"attribute",begin:"[\\w-]+\\s*:",end:":",returnBegin:!0,excludeEnd:!0 - },n.IMPORTANT);const d=r.concat({begin:/\{/,end:/\}/,contains:i}),g={ - beginKeywords:"when",endsWithParent:!0,contains:[{beginKeywords:"and not" - }].concat(r)},u={begin:a+"\\s*:",returnBegin:!0,end:/[;}]/,relevance:0, - contains:[{begin:/-(webkit|moz|ms|o)-/},n.CSS_VARIABLE,{className:"attribute", - begin:"\\b("+oe.join("|")+")\\b",end:/(?=:)/,starts:{endsWithParent:!0, - illegal:"[<=$]",relevance:0,contains:r}}]},b={className:"keyword", - begin:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b", - starts:{end:"[;{}]",keywords:l,returnEnd:!0,contains:r,relevance:0}},m={ - className:"variable",variants:[{begin:"@[\\w-]+\\s*:",relevance:15},{ - begin:"@[\\w-]+"}],starts:{end:"[;}]",returnEnd:!0,contains:d}},p={variants:[{ - begin:"[\\.#:&\\[>]",end:"[;{}]"},{begin:a,end:/\{/}],returnBegin:!0, - returnEnd:!0,illegal:"[<='$\"]",relevance:0, - contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,g,o("keyword","all\\b"),o("variable","@\\{[\\w-]+\\}"),{ - begin:"\\b("+ae.join("|")+")\\b",className:"selector-tag" - },n.CSS_NUMBER_MODE,o("selector-tag",a,0),o("selector-id","#"+a),o("selector-class","\\."+a,0),o("selector-tag","&",0),n.ATTRIBUTE_SELECTOR_MODE,{ - className:"selector-pseudo",begin:":("+re.join("|")+")"},{ - className:"selector-pseudo",begin:":(:)?("+se.join("|")+")"},{begin:/\(/, - end:/\)/,relevance:0,contains:d},{begin:"!important"},n.FUNCTION_DISPATCH]},_={ - begin:`[\\w-]+:(:)?(${t.join("|")})`,returnBegin:!0,contains:[p]} - ;return i.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,b,m,_,u,p),{ - name:"Less",case_insensitive:!0,illegal:"[=>'/<($\"]",contains:i}},grmr_lua:e=>{ - const n="\\[=*\\[",t="\\]=*\\]",a={begin:n,end:t,contains:["self"] - },i=[e.COMMENT("--(?!\\[=*\\[)","$"),e.COMMENT("--\\[=*\\[",t,{contains:[a], - relevance:10})];return{name:"Lua",keywords:{$pattern:e.UNDERSCORE_IDENT_RE, - literal:"true false nil", - keyword:"and break do else elseif end for goto if in local not or repeat return then until while", - built_in:"_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove" - },contains:i.concat([{className:"function",beginKeywords:"function",end:"\\)", - contains:[e.inherit(e.TITLE_MODE,{ - begin:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{className:"params", - begin:"\\(",endsWithParent:!0,contains:i}].concat(i) - },e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:"string", - begin:n,end:t,contains:[a],relevance:5}])}},grmr_makefile:e=>{const n={ - className:"variable",variants:[{begin:"\\$\\("+e.UNDERSCORE_IDENT_RE+"\\)", - contains:[e.BACKSLASH_ESCAPE]},{begin:/\$[@%{ - const n=e.regex,t=n.concat(/[A-Z_]/,n.optional(/[A-Z0-9_.-]*:/),/[A-Z0-9_.-]*/),a={ - className:"symbol",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},i={begin:/\s/, - contains:[{className:"keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}] - },r=e.inherit(i,{begin:/\(/,end:/\)/}),s=e.inherit(e.APOS_STRING_MODE,{ - className:"string"}),o=e.inherit(e.QUOTE_STRING_MODE,{className:"string"}),l={ - endsWithParent:!0,illegal:/`]+/}]}]}]};return{ - name:"HTML, XML", - aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"], - case_insensitive:!0,contains:[{className:"meta",begin://, - relevance:10,contains:[i,o,s,r,{begin:/\[/,end:/\]/,contains:[{className:"meta", - begin://,contains:[i,r,o,s]}]}]},e.COMMENT(//,{ - relevance:10}),{begin://,relevance:10},a,{ - className:"meta",begin:/<\?xml/,end:/\?>/,relevance:10},{className:"tag", - begin:/)/,end:/>/,keywords:{name:"style"},contains:[l],starts:{ - end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag", - begin:/)/,end:/>/,keywords:{name:"script"},contains:[l],starts:{ - end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{ - className:"tag",begin:/<>|<\/>/},{className:"tag", - begin:n.concat(//,/>/,/\s/)))), - end:/\/?>/,contains:[{className:"name",begin:t,relevance:0,starts:l}]},{ - className:"tag",begin:n.concat(/<\//,n.lookahead(n.concat(t,/>/))),contains:[{ - className:"name",begin:t,relevance:0},{begin:/>/,relevance:0,endsParent:!0}]}]} - },grmr_markdown:e=>{const n={begin:/<\/?[A-Za-z_]/,end:">",subLanguage:"xml", - relevance:0},t={variants:[{begin:/\[.+?\]\[.*?\]/,relevance:0},{ - begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/, - relevance:2},{ - begin:e.regex.concat(/\[.+?\]\(/,/[A-Za-z][A-Za-z0-9+.-]*/,/:\/\/.*?\)/), - relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{ - begin:/\[.*?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{match:/\[(?=\])/ - },{className:"string",relevance:0,begin:"\\[",end:"\\]",excludeBegin:!0, - returnEnd:!0},{className:"link",relevance:0,begin:"\\]\\(",end:"\\)", - excludeBegin:!0,excludeEnd:!0},{className:"symbol",relevance:0,begin:"\\]\\[", - end:"\\]",excludeBegin:!0,excludeEnd:!0}]},a={className:"strong",contains:[], - variants:[{begin:/_{2}/,end:/_{2}/},{begin:/\*{2}/,end:/\*{2}/}]},i={ - className:"emphasis",contains:[],variants:[{begin:/\*(?!\*)/,end:/\*/},{ - begin:/_(?!_)/,end:/_/,relevance:0}]};a.contains.push(i),i.contains.push(a) - ;let r=[n,t] - ;return a.contains=a.contains.concat(r),i.contains=i.contains.concat(r), - r=r.concat(a,i),{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[{ - className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:r},{ - begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n", - contains:r}]}]},n,{className:"bullet",begin:"^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)", - end:"\\s+",excludeEnd:!0},a,i,{className:"quote",begin:"^>\\s+",contains:r, - end:"$"},{className:"code",variants:[{begin:"(`{3,})[^`](.|\\n)*?\\1`*[ ]*"},{ - begin:"(~{3,})[^~](.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{ - begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))", - contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},{ - begin:"^[-\\*]{3,}",end:"$"},t,{begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{ - className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{ - className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]}]}},grmr_objectivec:e=>{ - const n=/[a-zA-Z@][a-zA-Z0-9_]*/,t={$pattern:n, - keyword:["@interface","@class","@protocol","@implementation"]};return{ - name:"Objective-C",aliases:["mm","objc","obj-c","obj-c++","objective-c++"], - keywords:{$pattern:n, - keyword:["int","float","while","char","export","sizeof","typedef","const","struct","for","union","unsigned","long","volatile","static","bool","mutable","if","do","return","goto","void","enum","else","break","extern","asm","case","short","default","double","register","explicit","signed","typename","this","switch","continue","wchar_t","inline","readonly","assign","readwrite","self","@synchronized","id","typeof","nonatomic","super","unichar","IBOutlet","IBAction","strong","weak","copy","in","out","inout","bycopy","byref","oneway","__strong","__weak","__block","__autoreleasing","@private","@protected","@public","@try","@property","@end","@throw","@catch","@finally","@autoreleasepool","@synthesize","@dynamic","@selector","@optional","@required","@encode","@package","@import","@defs","@compatibility_alias","__bridge","__bridge_transfer","__bridge_retained","__bridge_retain","__covariant","__contravariant","__kindof","_Nonnull","_Nullable","_Null_unspecified","__FUNCTION__","__PRETTY_FUNCTION__","__attribute__","getter","setter","retain","unsafe_unretained","nonnull","nullable","null_unspecified","null_resettable","class","instancetype","NS_DESIGNATED_INITIALIZER","NS_UNAVAILABLE","NS_REQUIRES_SUPER","NS_RETURNS_INNER_POINTER","NS_INLINE","NS_AVAILABLE","NS_DEPRECATED","NS_ENUM","NS_OPTIONS","NS_SWIFT_UNAVAILABLE","NS_ASSUME_NONNULL_BEGIN","NS_ASSUME_NONNULL_END","NS_REFINED_FOR_SWIFT","NS_SWIFT_NAME","NS_SWIFT_NOTHROW","NS_DURING","NS_HANDLER","NS_ENDHANDLER","NS_VALUERETURN","NS_VOIDRETURN"], - literal:["false","true","FALSE","TRUE","nil","YES","NO","NULL"], - built_in:["BOOL","dispatch_once_t","dispatch_queue_t","dispatch_sync","dispatch_async","dispatch_once"] - },illegal:"/,end:/$/,illegal:"\\n" - },e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"class", - begin:"("+t.keyword.join("|")+")\\b",end:/(\{|$)/,excludeEnd:!0,keywords:t, - contains:[e.UNDERSCORE_TITLE_MODE]},{begin:"\\."+e.UNDERSCORE_IDENT_RE, - relevance:0}]}},grmr_perl:e=>{const n=e.regex,t=/[dualxmsipngr]{0,12}/,a={ - $pattern:/[\w.]+/, - keyword:"abs accept alarm and atan2 bind binmode bless break caller chdir chmod chomp chop chown chr chroot close closedir connect continue cos crypt dbmclose dbmopen defined delete die do dump each else elsif endgrent endhostent endnetent endprotoent endpwent endservent eof eval exec exists exit exp fcntl fileno flock for foreach fork format formline getc getgrent getgrgid getgrnam gethostbyaddr gethostbyname gethostent getlogin getnetbyaddr getnetbyname getnetent getpeername getpgrp getpriority getprotobyname getprotobynumber getprotoent getpwent getpwnam getpwuid getservbyname getservbyport getservent getsockname getsockopt given glob gmtime goto grep gt hex if index int ioctl join keys kill last lc lcfirst length link listen local localtime log lstat lt ma map mkdir msgctl msgget msgrcv msgsnd my ne next no not oct open opendir or ord our pack package pipe pop pos print printf prototype push q|0 qq quotemeta qw qx rand read readdir readline readlink readpipe recv redo ref rename require reset return reverse rewinddir rindex rmdir say scalar seek seekdir select semctl semget semop send setgrent sethostent setnetent setpgrp setpriority setprotoent setpwent setservent setsockopt shift shmctl shmget shmread shmwrite shutdown sin sleep socket socketpair sort splice split sprintf sqrt srand stat state study sub substr symlink syscall sysopen sysread sysseek system syswrite tell telldir tie tied time times tr truncate uc ucfirst umask undef unless unlink unpack unshift untie until use utime values vec wait waitpid wantarray warn when while write x|0 xor y|0" - },i={className:"subst",begin:"[$@]\\{",end:"\\}",keywords:a},r={begin:/->\{/, - end:/\}/},s={variants:[{begin:/\$\d/},{ - begin:n.concat(/[$%@](\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/,"(?![A-Za-z])(?![@$%])") - },{begin:/[$%@][^\s\w{]/,relevance:0}] - },o=[e.BACKSLASH_ESCAPE,i,s],l=[/!/,/\//,/\|/,/\?/,/'/,/"/,/#/],c=(e,a,i="\\1")=>{ - const r="\\1"===i?i:n.concat(i,a) - ;return n.concat(n.concat("(?:",e,")"),a,/(?:\\.|[^\\\/])*?/,r,/(?:\\.|[^\\\/])*?/,i,t) - },d=(e,a,i)=>n.concat(n.concat("(?:",e,")"),a,/(?:\\.|[^\\\/])*?/,i,t),g=[s,e.HASH_COMMENT_MODE,e.COMMENT(/^=\w/,/=cut/,{ - endsWithParent:!0}),r,{className:"string",contains:o,variants:[{ - begin:"q[qwxr]?\\s*\\(",end:"\\)",relevance:5},{begin:"q[qwxr]?\\s*\\[", - end:"\\]",relevance:5},{begin:"q[qwxr]?\\s*\\{",end:"\\}",relevance:5},{ - begin:"q[qwxr]?\\s*\\|",end:"\\|",relevance:5},{begin:"q[qwxr]?\\s*<",end:">", - relevance:5},{begin:"qw\\s+q",end:"q",relevance:5},{begin:"'",end:"'", - contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"'},{begin:"`",end:"`", - contains:[e.BACKSLASH_ESCAPE]},{begin:/\{\w+\}/,relevance:0},{ - begin:"-?\\w+\\s*=>",relevance:0}]},{className:"number", - begin:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b", - relevance:0},{ - begin:"(\\/\\/|"+e.RE_STARTERS_RE+"|\\b(split|return|print|reverse|grep)\\b)\\s*", - keywords:"split return print reverse grep",relevance:0, - contains:[e.HASH_COMMENT_MODE,{className:"regexp",variants:[{ - begin:c("s|tr|y",n.either(...l,{capture:!0}))},{begin:c("s|tr|y","\\(","\\)")},{ - begin:c("s|tr|y","\\[","\\]")},{begin:c("s|tr|y","\\{","\\}")}],relevance:2},{ - className:"regexp",variants:[{begin:/(m|qr)\/\//,relevance:0},{ - begin:d("(?:m|qr)?",/\//,/\//)},{begin:d("m|qr",n.either(...l,{capture:!0 - }),/\1/)},{begin:d("m|qr",/\(/,/\)/)},{begin:d("m|qr",/\[/,/\]/)},{ - begin:d("m|qr",/\{/,/\}/)}]}]},{className:"function",beginKeywords:"sub", - end:"(\\s*\\(.*?\\))?[;{]",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE]},{ - begin:"-\\w\\b",relevance:0},{begin:"^__DATA__$",end:"^__END__$", - subLanguage:"mojolicious",contains:[{begin:"^@@.*",end:"$",className:"comment"}] - }];return i.contains=g,r.contains=g,{name:"Perl",aliases:["pl","pm"],keywords:a, - contains:g}},grmr_php:e=>{ - const n=e.regex,t="[a-zA-Z0-9_\x7f-\xff]*(?![A-Za-z0-9])(?![$]))",a=n.concat("([a-zA-Z_\\x7f-\\xff]",t),i=n.concat("([A-Z]",t),r={ - scope:"variable",match:"\\$+"+a},s={scope:"subst",variants:[{begin:/\$\w+/},{ - begin:/\{\$/,end:/\}/}]},o=e.inherit(e.APOS_STRING_MODE,{illegal:null - }),l="[ \t\n]",c={scope:"string",variants:[e.inherit(e.QUOTE_STRING_MODE,{ - illegal:null,contains:e.QUOTE_STRING_MODE.contains.concat(s) - }),o,e.END_SAME_AS_BEGIN({begin:/<<<[ \t]*(\w+)\n/,end:/[ \t]*(\w+)\b/, - contains:e.QUOTE_STRING_MODE.contains.concat(s)})]},d={scope:"number", - variants:[{begin:"\\b0[bB][01]+(?:_[01]+)*\\b"},{ - begin:"\\b0[oO][0-7]+(?:_[0-7]+)*\\b"},{ - begin:"\\b0[xX][\\da-fA-F]+(?:_[\\da-fA-F]+)*\\b"},{ - begin:"(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:[eE][+-]?\\d+)?" - }],relevance:0 - },g=["__CLASS__","__DIR__","__FILE__","__FUNCTION__","__COMPILER_HALT_OFFSET__","__LINE__","__METHOD__","__NAMESPACE__","__TRAIT__","die","echo","exit","include","include_once","print","require","require_once","array","abstract","and","as","binary","bool","boolean","break","callable","case","catch","class","clone","const","continue","declare","default","do","double","else","elseif","empty","enddeclare","endfor","endforeach","endif","endswitch","endwhile","enum","eval","extends","final","finally","float","for","foreach","from","global","goto","if","implements","instanceof","insteadof","int","integer","interface","isset","iterable","list","match|0","mixed","new","never","object","or","private","protected","public","readonly","real","return","string","switch","throw","trait","try","unset","use","var","void","while","xor","yield"],u=["Error|0","AppendIterator","ArgumentCountError","ArithmeticError","ArrayIterator","ArrayObject","AssertionError","BadFunctionCallException","BadMethodCallException","CachingIterator","CallbackFilterIterator","CompileError","Countable","DirectoryIterator","DivisionByZeroError","DomainException","EmptyIterator","ErrorException","Exception","FilesystemIterator","FilterIterator","GlobIterator","InfiniteIterator","InvalidArgumentException","IteratorIterator","LengthException","LimitIterator","LogicException","MultipleIterator","NoRewindIterator","OutOfBoundsException","OutOfRangeException","OuterIterator","OverflowException","ParentIterator","ParseError","RangeException","RecursiveArrayIterator","RecursiveCachingIterator","RecursiveCallbackFilterIterator","RecursiveDirectoryIterator","RecursiveFilterIterator","RecursiveIterator","RecursiveIteratorIterator","RecursiveRegexIterator","RecursiveTreeIterator","RegexIterator","RuntimeException","SeekableIterator","SplDoublyLinkedList","SplFileInfo","SplFileObject","SplFixedArray","SplHeap","SplMaxHeap","SplMinHeap","SplObjectStorage","SplObserver","SplPriorityQueue","SplQueue","SplStack","SplSubject","SplTempFileObject","TypeError","UnderflowException","UnexpectedValueException","UnhandledMatchError","ArrayAccess","BackedEnum","Closure","Fiber","Generator","Iterator","IteratorAggregate","Serializable","Stringable","Throwable","Traversable","UnitEnum","WeakReference","WeakMap","Directory","__PHP_Incomplete_Class","parent","php_user_filter","self","static","stdClass"],b={ - keyword:g,literal:(e=>{const n=[];return["false","null","true"].forEach((e=>{ - n.push(e),e.toLowerCase()===e?n.push(e.toUpperCase()):n.push(e.toLowerCase()) - })),n})(),built_in:u},m=e=>e.map((e=>e.replace(/\|\d+$/,""))),p={variants:[{ - match:[/new/,n.concat(l,"+"),n.concat("(?!",m(u).join("\\b|"),"\\b)"),n.concat(/\\?/,a),n.concat(l,"*",/\(/)], - scope:{1:"keyword",4:"title.class"}}]},_={relevance:0, - match:[/\b/,n.concat("(?!fn\\b|function\\b|",m(g).join("\\b|"),"|",m(u).join("\\b|"),"\\b)"),a,n.concat(l,"*"),n.lookahead(/(?=\()/)], - scope:{3:"title.function.invoke"}},h=n.concat(a,"\\b(?!\\()"),f={variants:[{ - match:[n.concat(/::/,n.lookahead(/(?!class\b)/)),h],scope:{2:"variable.constant" - }},{match:[/::/,/class/],scope:{2:"variable.language"}},{ - match:[i,n.concat("::",n.lookahead(/(?!class\b)/))],scope:{1:"title.class"}},{ - match:[i,/::/,/class/],scope:{1:"title.class",3:"variable.language"}}]};return{ - case_insensitive:!1,keywords:b, - contains:[e.HASH_COMMENT_MODE,e.COMMENT("//","$"),e.COMMENT("/\\*","\\*/",{ - contains:[{scope:"doctag",match:"@[A-Za-z]+"}]}),{match:/__halt_compiler\(\);/, - keywords:"__halt_compiler",starts:{scope:"comment",end:e.MATCH_NOTHING_RE, - contains:[{match:/\?>/,scope:"meta",endsParent:!0}]}},{scope:"meta",variants:[{ - begin:/<\?php/,relevance:10},{begin:/<\?[=]?/},{begin:/\?>/}]},{ - scope:"variable.language",match:/\$this\b/},r,_,f,{ - match:[/const/,/\s/,a,/\s*=/],scope:{1:"keyword",3:"variable.constant"}},p,{ - scope:"function",relevance:0,beginKeywords:"fn function",end:/[;{]/, - excludeEnd:!0,illegal:"[$%\\[]",contains:[{beginKeywords:"use" - },e.UNDERSCORE_TITLE_MODE,{begin:"=>",endsParent:!0},{scope:"params", - begin:"\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0,keywords:b, - contains:["self",r,f,e.C_BLOCK_COMMENT_MODE,c,d]}]},{scope:"class",variants:[{ - beginKeywords:"enum",illegal:/[($"]/},{beginKeywords:"class interface trait", - illegal:/[:($"]/}],relevance:0,end:/\{/,excludeEnd:!0,contains:[{ - beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{ - beginKeywords:"namespace",relevance:0,end:";",illegal:/[.']/, - contains:[e.inherit(e.UNDERSCORE_TITLE_MODE,{scope:"title.class"})]},{ - beginKeywords:"use",relevance:0,end:";",contains:[{ - match:/\b(as|const|function)\b/,scope:"keyword"},e.UNDERSCORE_TITLE_MODE]},c,d]} - },grmr_php_template:e=>({name:"PHP template",subLanguage:"xml",contains:[{ - begin:/<\?(php|=)?/,end:/\?>/,subLanguage:"php",contains:[{begin:"/\\*", - end:"\\*/",skip:!0},{begin:'b"',end:'"',skip:!0},{begin:"b'",end:"'",skip:!0 - },e.inherit(e.APOS_STRING_MODE,{illegal:null,className:null,contains:null, - skip:!0}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null,className:null, - contains:null,skip:!0})]}]}),grmr_plaintext:e=>({name:"Plain text", - aliases:["text","txt"],disableAutodetect:!0}),grmr_python:e=>{ - const n=e.regex,t=/[\p{XID_Start}_]\p{XID_Continue}*/u,a=["and","as","assert","async","await","break","class","continue","def","del","elif","else","except","finally","for","from","global","if","import","in","is","lambda","nonlocal|10","not","or","pass","raise","return","try","while","with","yield"],i={ - $pattern:/[A-Za-z]\w+|__\w+__/,keyword:a, - built_in:["__import__","abs","all","any","ascii","bin","bool","breakpoint","bytearray","bytes","callable","chr","classmethod","compile","complex","delattr","dict","dir","divmod","enumerate","eval","exec","filter","float","format","frozenset","getattr","globals","hasattr","hash","help","hex","id","input","int","isinstance","issubclass","iter","len","list","locals","map","max","memoryview","min","next","object","oct","open","ord","pow","print","property","range","repr","reversed","round","set","setattr","slice","sorted","staticmethod","str","sum","super","tuple","type","vars","zip"], - literal:["__debug__","Ellipsis","False","None","NotImplemented","True"], - type:["Any","Callable","Coroutine","Dict","List","Literal","Generic","Optional","Sequence","Set","Tuple","Type","Union"] - },r={className:"meta",begin:/^(>>>|\.\.\.) /},s={className:"subst",begin:/\{/, - end:/\}/,keywords:i,illegal:/#/},o={begin:/\{\{/,relevance:0},l={ - className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{ - begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/, - contains:[e.BACKSLASH_ESCAPE,r],relevance:10},{ - begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/,end:/"""/, - contains:[e.BACKSLASH_ESCAPE,r],relevance:10},{ - begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/, - contains:[e.BACKSLASH_ESCAPE,r,o,s]},{begin:/([fF][rR]|[rR][fF]|[fF])"""/, - end:/"""/,contains:[e.BACKSLASH_ESCAPE,r,o,s]},{begin:/([uU]|[rR])'/,end:/'/, - relevance:10},{begin:/([uU]|[rR])"/,end:/"/,relevance:10},{ - begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])"/, - end:/"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/, - contains:[e.BACKSLASH_ESCAPE,o,s]},{begin:/([fF][rR]|[rR][fF]|[fF])"/,end:/"/, - contains:[e.BACKSLASH_ESCAPE,o,s]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE] - },c="[0-9](_?[0-9])*",d=`(\\b(${c}))?\\.(${c})|\\b(${c})\\.`,g="\\b|"+a.join("|"),u={ - className:"number",relevance:0,variants:[{ - begin:`(\\b(${c})|(${d}))[eE][+-]?(${c})[jJ]?(?=${g})`},{begin:`(${d})[jJ]?`},{ - begin:`\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?(?=${g})`},{ - begin:`\\b0[bB](_?[01])+[lL]?(?=${g})`},{begin:`\\b0[oO](_?[0-7])+[lL]?(?=${g})` - },{begin:`\\b0[xX](_?[0-9a-fA-F])+[lL]?(?=${g})`},{begin:`\\b(${c})[jJ](?=${g})` - }]},b={className:"comment",begin:n.lookahead(/# type:/),end:/$/,keywords:i, - contains:[{begin:/# type:/},{begin:/#/,end:/\b\B/,endsWithParent:!0}]},m={ - className:"params",variants:[{className:"",begin:/\(\s*\)/,skip:!0},{begin:/\(/, - end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i, - contains:["self",r,u,l,e.HASH_COMMENT_MODE]}]};return s.contains=[l,u,r],{ - name:"Python",aliases:["py","gyp","ipython"],unicodeRegex:!0,keywords:i, - illegal:/(<\/|->|\?)|=>/,contains:[r,u,{begin:/\bself\b/},{beginKeywords:"if", - relevance:0},l,b,e.HASH_COMMENT_MODE,{match:[/\bdef/,/\s+/,t],scope:{ - 1:"keyword",3:"title.function"},contains:[m]},{variants:[{ - match:[/\bclass/,/\s+/,t,/\s*/,/\(\s*/,t,/\s*\)/]},{match:[/\bclass/,/\s+/,t]}], - scope:{1:"keyword",3:"title.class",6:"title.class.inherited"}},{ - className:"meta",begin:/^[\t ]*@/,end:/(?=#)|$/,contains:[u,m,l]}]}}, - grmr_python_repl:e=>({aliases:["pycon"],contains:[{className:"meta",starts:{ - end:/ |$/,starts:{end:"$",subLanguage:"python"}},variants:[{ - begin:/^>>>(?=[ ]|$)/},{begin:/^\.\.\.(?=[ ]|$)/}]}]}),grmr_r:e=>{ - const n=e.regex,t=/(?:(?:[a-zA-Z]|\.[._a-zA-Z])[._a-zA-Z0-9]*)|\.(?!\d)/,a=n.either(/0[xX][0-9a-fA-F]+\.[0-9a-fA-F]*[pP][+-]?\d+i?/,/0[xX][0-9a-fA-F]+(?:[pP][+-]?\d+)?[Li]?/,/(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?[Li]?/),i=/[=!<>:]=|\|\||&&|:::?|<-|<<-|->>|->|\|>|[-+*\/?!$&|:<=>@^~]|\*\*/,r=n.either(/[()]/,/[{}]/,/\[\[/,/[[\]]/,/\\/,/,/) - ;return{name:"R",keywords:{$pattern:t, - keyword:"function if in break next repeat else for while", - literal:"NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10", - built_in:"LETTERS letters month.abb month.name pi T F abs acos acosh all any anyNA Arg as.call as.character as.complex as.double as.environment as.integer as.logical as.null.default as.numeric as.raw asin asinh atan atanh attr attributes baseenv browser c call ceiling class Conj cos cosh cospi cummax cummin cumprod cumsum digamma dim dimnames emptyenv exp expression floor forceAndCall gamma gc.time globalenv Im interactive invisible is.array is.atomic is.call is.character is.complex is.double is.environment is.expression is.finite is.function is.infinite is.integer is.language is.list is.logical is.matrix is.na is.name is.nan is.null is.numeric is.object is.pairlist is.raw is.recursive is.single is.symbol lazyLoadDBfetch length lgamma list log max min missing Mod names nargs nzchar oldClass on.exit pos.to.env proc.time prod quote range Re rep retracemem return round seq_along seq_len seq.int sign signif sin sinh sinpi sqrt standardGeneric substitute sum switch tan tanh tanpi tracemem trigamma trunc unclass untracemem UseMethod xtfrm" - },contains:[e.COMMENT(/#'/,/$/,{contains:[{scope:"doctag",match:/@examples/, - starts:{end:n.lookahead(n.either(/\n^#'\s*(?=@[a-zA-Z]+)/,/\n^(?!#')/)), - endsParent:!0}},{scope:"doctag",begin:"@param",end:/$/,contains:[{ - scope:"variable",variants:[{match:t},{match:/`(?:\\.|[^`\\])+`/}],endsParent:!0 - }]},{scope:"doctag",match:/@[a-zA-Z]+/},{scope:"keyword",match:/\\[a-zA-Z]+/}] - }),e.HASH_COMMENT_MODE,{scope:"string",contains:[e.BACKSLASH_ESCAPE], - variants:[e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\(/,end:/\)(-*)"/ - }),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\{/,end:/\}(-*)"/ - }),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\[/,end:/\](-*)"/ - }),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\(/,end:/\)(-*)'/ - }),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\{/,end:/\}(-*)'/ - }),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\[/,end:/\](-*)'/}),{begin:'"',end:'"', - relevance:0},{begin:"'",end:"'",relevance:0}]},{relevance:0,variants:[{scope:{ - 1:"operator",2:"number"},match:[i,a]},{scope:{1:"operator",2:"number"}, - match:[/%[^%]*%/,a]},{scope:{1:"punctuation",2:"number"},match:[r,a]},{scope:{ - 2:"number"},match:[/[^a-zA-Z0-9._]|^/,a]}]},{scope:{3:"operator"}, - match:[t,/\s+/,/<-/,/\s+/]},{scope:"operator",relevance:0,variants:[{match:i},{ - match:/%[^%]*%/}]},{scope:"punctuation",relevance:0,match:r},{begin:"`",end:"`", - contains:[{begin:/\\./}]}]}},grmr_ruby:e=>{ - const n=e.regex,t="([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)",a={ - keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor __FILE__", - built_in:"proc lambda",literal:"true false nil"},i={className:"doctag", - begin:"@[A-Za-z]+"},r={begin:"#<",end:">"},s=[e.COMMENT("#","$",{contains:[i] - }),e.COMMENT("^=begin","^=end",{contains:[i],relevance:10 - }),e.COMMENT("^__END__","\\n$")],o={className:"subst",begin:/#\{/,end:/\}/, - keywords:a},l={className:"string",contains:[e.BACKSLASH_ESCAPE,o],variants:[{ - begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{begin:/%[qQwWx]?\(/, - end:/\)/},{begin:/%[qQwWx]?\[/,end:/\]/},{begin:/%[qQwWx]?\{/,end:/\}/},{ - begin:/%[qQwWx]?/},{begin:/%[qQwWx]?\//,end:/\//},{begin:/%[qQwWx]?%/, - end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{begin:/%[qQwWx]?\|/,end:/\|/},{ - begin:/\B\?(\\\d{1,3})/},{begin:/\B\?(\\x[A-Fa-f0-9]{1,2})/},{ - begin:/\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/},{ - begin:/\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/},{ - begin:/\B\?\\(c|C-)[\x20-\x7e]/},{begin:/\B\?\\?\S/},{ - begin:n.concat(/<<[-~]?'?/,n.lookahead(/(\w+)(?=\W)[^\n]*\n(?:[^\n]*\n)*?\s*\1\b/)), - contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/, - contains:[e.BACKSLASH_ESCAPE,o]})]}]},c="[0-9](_?[0-9])*",d={className:"number", - relevance:0,variants:[{ - begin:`\\b([1-9](_?[0-9])*|0)(\\.(${c}))?([eE][+-]?(${c})|r)?i?\\b`},{ - begin:"\\b0[dD][0-9](_?[0-9])*r?i?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*r?i?\\b" - },{begin:"\\b0[oO][0-7](_?[0-7])*r?i?\\b"},{ - begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b"},{ - begin:"\\b0(_?[0-7])+r?i?\\b"}]},g={className:"params",begin:"\\(",end:"\\)", - endsParent:!0,keywords:a},u=[l,{className:"class",beginKeywords:"class module", - end:"$|;",illegal:/=/,contains:[e.inherit(e.TITLE_MODE,{ - begin:"[A-Za-z_]\\w*(::\\w+)*(\\?|!)?"}),{begin:"<\\s*",contains:[{ - begin:"("+e.IDENT_RE+"::)?"+e.IDENT_RE,relevance:0}]}].concat(s)},{ - className:"function",begin:n.concat(/def\s+/,n.lookahead(t+"\\s*(\\(|;|$)")), - relevance:0,keywords:"def",end:"$|;",contains:[e.inherit(e.TITLE_MODE,{begin:t - }),g].concat(s)},{begin:e.IDENT_RE+"::"},{className:"symbol", - begin:e.UNDERSCORE_IDENT_RE+"(!|\\?)?:",relevance:0},{className:"symbol", - begin:":(?!\\s)",contains:[l,{begin:t}],relevance:0},d,{className:"variable", - begin:"(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])"},{ - className:"params",begin:/\|/,end:/\|/,relevance:0,keywords:a},{ - begin:"("+e.RE_STARTERS_RE+"|unless)\\s*",keywords:"unless",contains:[{ - className:"regexp",contains:[e.BACKSLASH_ESCAPE,o],illegal:/\n/,variants:[{ - begin:"/",end:"/[a-z]*"},{begin:/%r\{/,end:/\}[a-z]*/},{begin:"%r\\(", - end:"\\)[a-z]*"},{begin:"%r!",end:"![a-z]*"},{begin:"%r\\[",end:"\\][a-z]*"}] - }].concat(r,s),relevance:0}].concat(r,s);o.contains=u,g.contains=u;const b=[{ - begin:/^\s*=>/,starts:{end:"$",contains:u}},{className:"meta", - begin:"^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+>|(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>)(?=[ ])", - starts:{end:"$",contains:u}}];return s.unshift(r),{name:"Ruby", - aliases:["rb","gemspec","podspec","thor","irb"],keywords:a,illegal:/\/\*/, - contains:[e.SHEBANG({binary:"ruby"})].concat(b).concat(s).concat(u)}}, - grmr_rust:e=>{const n=e.regex,t={className:"title.function.invoke",relevance:0, - begin:n.concat(/\b/,/(?!let\b)/,e.IDENT_RE,n.lookahead(/\s*\(/)) - },a="([ui](8|16|32|64|128|size)|f(32|64))?",i=["drop ","Copy","Send","Sized","Sync","Drop","Fn","FnMut","FnOnce","ToOwned","Clone","Debug","PartialEq","PartialOrd","Eq","Ord","AsRef","AsMut","Into","From","Default","Iterator","Extend","IntoIterator","DoubleEndedIterator","ExactSizeIterator","SliceConcatExt","ToString","assert!","assert_eq!","bitflags!","bytes!","cfg!","col!","concat!","concat_idents!","debug_assert!","debug_assert_eq!","env!","panic!","file!","format!","format_args!","include_bin!","include_str!","line!","local_data_key!","module_path!","option_env!","print!","println!","select!","stringify!","try!","unimplemented!","unreachable!","vec!","write!","writeln!","macro_rules!","assert_ne!","debug_assert_ne!"] - ;return{name:"Rust",aliases:["rs"],keywords:{$pattern:e.IDENT_RE+"!?", - type:["i8","i16","i32","i64","i128","isize","u8","u16","u32","u64","u128","usize","f32","f64","str","char","bool","Box","Option","Result","String","Vec"], - keyword:["abstract","as","async","await","become","box","break","const","continue","crate","do","dyn","else","enum","extern","false","final","fn","for","if","impl","in","let","loop","macro","match","mod","move","mut","override","priv","pub","ref","return","self","Self","static","struct","super","trait","true","try","type","typeof","unsafe","unsized","use","virtual","where","while","yield"], - literal:["true","false","Some","None","Ok","Err"],built_in:i},illegal:""},t]}}, - grmr_scss:e=>{const n=te(e),t=se,a=re,i="@[a-z-]+",r={className:"variable", - begin:"(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b"};return{name:"SCSS",case_insensitive:!0, - illegal:"[=/|']", - contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,n.CSS_NUMBER_MODE,{ - className:"selector-id",begin:"#[A-Za-z0-9_-]+",relevance:0},{ - className:"selector-class",begin:"\\.[A-Za-z0-9_-]+",relevance:0 - },n.ATTRIBUTE_SELECTOR_MODE,{className:"selector-tag", - begin:"\\b("+ae.join("|")+")\\b",relevance:0},{className:"selector-pseudo", - begin:":("+a.join("|")+")"},{className:"selector-pseudo", - begin:":(:)?("+t.join("|")+")"},r,{begin:/\(/,end:/\)/, - contains:[n.CSS_NUMBER_MODE]},n.CSS_VARIABLE,{className:"attribute", - begin:"\\b("+oe.join("|")+")\\b"},{ - begin:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b" - },{begin:/:/,end:/[;}{]/, - contains:[n.BLOCK_COMMENT,r,n.HEXCOLOR,n.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,n.IMPORTANT] - },{begin:"@(page|font-face)",keywords:{$pattern:i,keyword:"@page @font-face"}},{ - begin:"@",end:"[{;]",returnBegin:!0,keywords:{$pattern:/[a-z-]+/, - keyword:"and or not only",attribute:ie.join(" ")},contains:[{begin:i, - className:"keyword"},{begin:/[a-z-]+(?=:)/,className:"attribute" - },r,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,n.HEXCOLOR,n.CSS_NUMBER_MODE] - },n.FUNCTION_DISPATCH]}},grmr_shell:e=>({name:"Shell Session", - aliases:["console","shellsession"],contains:[{className:"meta", - begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/, - subLanguage:"bash"}}]}),grmr_sql:e=>{ - const n=e.regex,t=e.COMMENT("--","$"),a=["true","false","unknown"],i=["bigint","binary","blob","boolean","char","character","clob","date","dec","decfloat","decimal","float","int","integer","interval","nchar","nclob","national","numeric","real","row","smallint","time","timestamp","varchar","varying","varbinary"],r=["abs","acos","array_agg","asin","atan","avg","cast","ceil","ceiling","coalesce","corr","cos","cosh","count","covar_pop","covar_samp","cume_dist","dense_rank","deref","element","exp","extract","first_value","floor","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","last_value","lead","listagg","ln","log","log10","lower","max","min","mod","nth_value","ntile","nullif","percent_rank","percentile_cont","percentile_disc","position","position_regex","power","rank","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","row_number","sin","sinh","sqrt","stddev_pop","stddev_samp","substring","substring_regex","sum","tan","tanh","translate","translate_regex","treat","trim","trim_array","unnest","upper","value_of","var_pop","var_samp","width_bucket"],s=["create table","insert into","primary key","foreign key","not null","alter table","add constraint","grouping sets","on overflow","character set","respect nulls","ignore nulls","nulls first","nulls last","depth first","breadth first"],o=r,l=["abs","acos","all","allocate","alter","and","any","are","array","array_agg","array_max_cardinality","as","asensitive","asin","asymmetric","at","atan","atomic","authorization","avg","begin","begin_frame","begin_partition","between","bigint","binary","blob","boolean","both","by","call","called","cardinality","cascaded","case","cast","ceil","ceiling","char","char_length","character","character_length","check","classifier","clob","close","coalesce","collate","collect","column","commit","condition","connect","constraint","contains","convert","copy","corr","corresponding","cos","cosh","count","covar_pop","covar_samp","create","cross","cube","cume_dist","current","current_catalog","current_date","current_default_transform_group","current_path","current_role","current_row","current_schema","current_time","current_timestamp","current_path","current_role","current_transform_group_for_type","current_user","cursor","cycle","date","day","deallocate","dec","decimal","decfloat","declare","default","define","delete","dense_rank","deref","describe","deterministic","disconnect","distinct","double","drop","dynamic","each","element","else","empty","end","end_frame","end_partition","end-exec","equals","escape","every","except","exec","execute","exists","exp","external","extract","false","fetch","filter","first_value","float","floor","for","foreign","frame_row","free","from","full","function","fusion","get","global","grant","group","grouping","groups","having","hold","hour","identity","in","indicator","initial","inner","inout","insensitive","insert","int","integer","intersect","intersection","interval","into","is","join","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","language","large","last_value","lateral","lead","leading","left","like","like_regex","listagg","ln","local","localtime","localtimestamp","log","log10","lower","match","match_number","match_recognize","matches","max","member","merge","method","min","minute","mod","modifies","module","month","multiset","national","natural","nchar","nclob","new","no","none","normalize","not","nth_value","ntile","null","nullif","numeric","octet_length","occurrences_regex","of","offset","old","omit","on","one","only","open","or","order","out","outer","over","overlaps","overlay","parameter","partition","pattern","per","percent","percent_rank","percentile_cont","percentile_disc","period","portion","position","position_regex","power","precedes","precision","prepare","primary","procedure","ptf","range","rank","reads","real","recursive","ref","references","referencing","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","release","result","return","returns","revoke","right","rollback","rollup","row","row_number","rows","running","savepoint","scope","scroll","search","second","seek","select","sensitive","session_user","set","show","similar","sin","sinh","skip","smallint","some","specific","specifictype","sql","sqlexception","sqlstate","sqlwarning","sqrt","start","static","stddev_pop","stddev_samp","submultiset","subset","substring","substring_regex","succeeds","sum","symmetric","system","system_time","system_user","table","tablesample","tan","tanh","then","time","timestamp","timezone_hour","timezone_minute","to","trailing","translate","translate_regex","translation","treat","trigger","trim","trim_array","true","truncate","uescape","union","unique","unknown","unnest","update","upper","user","using","value","values","value_of","var_pop","var_samp","varbinary","varchar","varying","versioning","when","whenever","where","width_bucket","window","with","within","without","year","add","asc","collation","desc","final","first","last","view"].filter((e=>!r.includes(e))),c={ - begin:n.concat(/\b/,n.either(...o),/\s*\(/),relevance:0,keywords:{built_in:o}} - ;return{name:"SQL",case_insensitive:!0,illegal:/[{}]|<\//,keywords:{ - $pattern:/\b[\w\.]+/,keyword:((e,{exceptions:n,when:t}={})=>{const a=t - ;return n=n||[],e.map((e=>e.match(/\|\d+$/)||n.includes(e)?e:a(e)?e+"|0":e)) - })(l,{when:e=>e.length<3}),literal:a,type:i, - built_in:["current_catalog","current_date","current_default_transform_group","current_path","current_role","current_schema","current_transform_group_for_type","current_user","session_user","system_time","system_user","current_time","localtime","current_timestamp","localtimestamp"] - },contains:[{begin:n.either(...s),relevance:0,keywords:{$pattern:/[\w\.]+/, - keyword:l.concat(s),literal:a,type:i}},{className:"type", - begin:n.either("double precision","large object","with timezone","without timezone") - },c,{className:"variable",begin:/@[a-z0-9]+/},{className:"string",variants:[{ - begin:/'/,end:/'/,contains:[{begin:/''/}]}]},{begin:/"/,end:/"/,contains:[{ - begin:/""/}]},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,{className:"operator", - begin:/[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/,relevance:0}]}}, - grmr_swift:e=>{const n={match:/\s+/,relevance:0},t=e.COMMENT("/\\*","\\*/",{ - contains:["self"]}),a=[e.C_LINE_COMMENT_MODE,t],i={match:[/\./,p(...ve,...Oe)], - className:{2:"keyword"}},r={match:m(/\./,p(...Me)),relevance:0 - },s=Me.filter((e=>"string"==typeof e)).concat(["_|0"]),o={variants:[{ - className:"keyword", - match:p(...Me.filter((e=>"string"!=typeof e)).concat(xe).map(we),...Oe)}]},l={ - $pattern:p(/\b\w+/,/#\w+/),keyword:s.concat(Ae),literal:ke},c=[i,r,o],d=[{ - match:m(/\./,p(...Ce)),relevance:0},{className:"built_in", - match:m(/\b/,p(...Ce),/(?=\()/)}],u={match:/->/,relevance:0},b=[u,{ - className:"operator",relevance:0,variants:[{match:De},{match:`\\.(\\.|${Re})+`}] - }],_="([0-9a-fA-F]_*)+",h={className:"number",relevance:0,variants:[{ - match:"\\b(([0-9]_*)+)(\\.(([0-9]_*)+))?([eE][+-]?(([0-9]_*)+))?\\b"},{ - match:`\\b0x(${_})(\\.(${_}))?([pP][+-]?(([0-9]_*)+))?\\b`},{ - match:/\b0o([0-7]_*)+\b/},{match:/\b0b([01]_*)+\b/}]},f=(e="")=>({ - className:"subst",variants:[{match:m(/\\/,e,/[0\\tnr"']/)},{ - match:m(/\\/,e,/u\{[0-9a-fA-F]{1,8}\}/)}]}),E=(e="")=>({className:"subst", - match:m(/\\/,e,/[\t ]*(?:[\r\n]|\r\n)/)}),y=(e="")=>({className:"subst", - label:"interpol",begin:m(/\\/,e,/\(/),end:/\)/}),N=(e="")=>({begin:m(e,/"""/), - end:m(/"""/,e),contains:[f(e),E(e),y(e)]}),w=(e="")=>({begin:m(e,/"/), - end:m(/"/,e),contains:[f(e),y(e)]}),v={className:"string", - variants:[N(),N("#"),N("##"),N("###"),w(),w("#"),w("##"),w("###")]},O={ - match:m(/`/,Be,/`/)},x=[O,{className:"variable",match:/\$\d+/},{ - className:"variable",match:`\\$${Le}+`}],M=[{match:/(@|#(un)?)available/, - className:"keyword",starts:{contains:[{begin:/\(/,end:/\)/,keywords:ze, - contains:[...b,h,v]}]}},{className:"keyword",match:m(/@/,p(...Fe))},{ - className:"meta",match:m(/@/,Be)}],k={match:g(/\b[A-Z]/),relevance:0,contains:[{ - className:"type", - match:m(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,Le,"+") - },{className:"type",match:$e,relevance:0},{match:/[?!]+/,relevance:0},{ - match:/\.\.\./,relevance:0},{match:m(/\s+&\s+/,g($e)),relevance:0}]},S={ - begin://,keywords:l,contains:[...a,...c,...M,u,k]};k.contains.push(S) - ;const A={begin:/\(/,end:/\)/,relevance:0,keywords:l,contains:["self",{ - match:m(Be,/\s*:/),keywords:"_|0",relevance:0 - },...a,...c,...d,...b,h,v,...x,...M,k]},C={begin://,contains:[...a,k] - },T={begin:/\(/,end:/\)/,keywords:l,contains:[{ - begin:p(g(m(Be,/\s*:/)),g(m(Be,/\s+/,Be,/\s*:/))),end:/:/,relevance:0, - contains:[{className:"keyword",match:/\b_\b/},{className:"params",match:Be}] - },...a,...c,...b,h,v,...M,k,A],endsParent:!0,illegal:/["']/},R={ - match:[/func/,/\s+/,p(O.match,Be,De)],className:{1:"keyword",3:"title.function" - },contains:[C,T,n],illegal:[/\[/,/%/]},D={ - match:[/\b(?:subscript|init[?!]?)/,/\s*(?=[<(])/],className:{1:"keyword"}, - contains:[C,T,n],illegal:/\[|%/},I={match:[/operator/,/\s+/,De],className:{ - 1:"keyword",3:"title"}},L={begin:[/precedencegroup/,/\s+/,$e],className:{ - 1:"keyword",3:"title"},contains:[k],keywords:[...Se,...ke],end:/}/} - ;for(const e of v.variants){const n=e.contains.find((e=>"interpol"===e.label)) - ;n.keywords=l;const t=[...c,...d,...b,h,v,...x];n.contains=[...t,{begin:/\(/, - end:/\)/,contains:["self",...t]}]}return{name:"Swift",keywords:l, - contains:[...a,R,D,{beginKeywords:"struct protocol class extension enum actor", - end:"\\{",excludeEnd:!0,keywords:l,contains:[e.inherit(e.TITLE_MODE,{ - className:"title.class",begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/}),...c] - },I,L,{beginKeywords:"import",end:/$/,contains:[...a],relevance:0 - },...c,...d,...b,h,v,...x,...M,k,A]}},grmr_typescript:e=>{ - const n=Ne(e),t=["any","void","number","boolean","string","object","never","enum"],a={ - beginKeywords:"namespace",end:/\{/,excludeEnd:!0, - contains:[n.exports.CLASS_REFERENCE]},i={beginKeywords:"interface",end:/\{/, - excludeEnd:!0,keywords:{keyword:"interface extends",built_in:t}, - contains:[n.exports.CLASS_REFERENCE]},r={$pattern:be, - keyword:me.concat(["type","namespace","typedef","interface","public","private","protected","implements","declare","abstract","readonly"]), - literal:pe,built_in:ye.concat(t),"variable.language":Ee},s={className:"meta", - begin:"@[A-Za-z$_][0-9A-Za-z$_]*"},o=(e,n,t)=>{ - const a=e.contains.findIndex((e=>e.label===n)) - ;if(-1===a)throw Error("can not find mode to replace");e.contains.splice(a,1,t)} - ;return Object.assign(n.keywords,r), - n.exports.PARAMS_CONTAINS.push(s),n.contains=n.contains.concat([s,a,i]), - o(n,"shebang",e.SHEBANG()),o(n,"use_strict",{className:"meta",relevance:10, - begin:/^\s*['"]use strict['"]/ - }),n.contains.find((e=>"func.def"===e.label)).relevance=0,Object.assign(n,{ - name:"TypeScript",aliases:["ts","tsx"]}),n},grmr_vbnet:e=>{ - const n=e.regex,t=/\d{1,2}\/\d{1,2}\/\d{4}/,a=/\d{4}-\d{1,2}-\d{1,2}/,i=/(\d|1[012])(:\d+){0,2} *(AM|PM)/,r=/\d{1,2}(:\d{1,2}){1,2}/,s={ - className:"literal",variants:[{begin:n.concat(/# */,n.either(a,t),/ *#/)},{ - begin:n.concat(/# */,r,/ *#/)},{begin:n.concat(/# */,i,/ *#/)},{ - begin:n.concat(/# */,n.either(a,t),/ +/,n.either(i,r),/ *#/)}] - },o=e.COMMENT(/'''/,/$/,{contains:[{className:"doctag",begin:/<\/?/,end:/>/}] - }),l=e.COMMENT(null,/$/,{variants:[{begin:/'/},{begin:/([\t ]|^)REM(?=\s)/}]}) - ;return{name:"Visual Basic .NET",aliases:["vb"],case_insensitive:!0, - classNameAliases:{label:"symbol"},keywords:{ - keyword:"addhandler alias aggregate ansi as async assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into iterator join key let lib loop me mid module mustinherit mustoverride mybase myclass namespace narrowing new next notinheritable notoverridable of off on operator option optional order overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly yield", - built_in:"addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort", - type:"boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort", - literal:"true false nothing"}, - illegal:"//|\\{|\\}|endif|gosub|variant|wend|^\\$ ",contains:[{ - className:"string",begin:/"(""|[^/n])"C\b/},{className:"string",begin:/"/, - end:/"/,illegal:/\n/,contains:[{begin:/""/}]},s,{className:"number",relevance:0, - variants:[{begin:/\b\d[\d_]*((\.[\d_]+(E[+-]?[\d_]+)?)|(E[+-]?[\d_]+))[RFD@!#]?/ - },{begin:/\b\d[\d_]*((U?[SIL])|[%&])?/},{begin:/&H[\dA-F_]+((U?[SIL])|[%&])?/},{ - begin:/&O[0-7_]+((U?[SIL])|[%&])?/},{begin:/&B[01_]+((U?[SIL])|[%&])?/}]},{ - className:"label",begin:/^\w+:/},o,l,{className:"meta", - begin:/[\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\b/, - end:/$/,keywords:{ - keyword:"const disable else elseif enable end externalsource if region then"}, - contains:[l]}]}},grmr_yaml:e=>{ - const n="true false yes no null",t="[\\w#;/?:@&=+$,.~*'()[\\]]+",a={ - className:"string",relevance:0,variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/ - },{begin:/\S+/}],contains:[e.BACKSLASH_ESCAPE,{className:"template-variable", - variants:[{begin:/\{\{/,end:/\}\}/},{begin:/%\{/,end:/\}/}]}]},i=e.inherit(a,{ - variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/[^\s,{}[\]]+/}]}),r={ - end:",",endsWithParent:!0,excludeEnd:!0,keywords:n,relevance:0},s={begin:/\{/, - end:/\}/,contains:[r],illegal:"\\n",relevance:0},o={begin:"\\[",end:"\\]", - contains:[r],illegal:"\\n",relevance:0},l=[{className:"attr",variants:[{ - begin:"\\w[\\w :\\/.-]*:(?=[ \t]|$)"},{begin:'"\\w[\\w :\\/.-]*":(?=[ \t]|$)'},{ - begin:"'\\w[\\w :\\/.-]*':(?=[ \t]|$)"}]},{className:"meta",begin:"^---\\s*$", - relevance:10},{className:"string", - begin:"[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*"},{ - begin:"<%[%=-]?",end:"[%-]?%>",subLanguage:"ruby",excludeBegin:!0,excludeEnd:!0, - relevance:0},{className:"type",begin:"!\\w+!"+t},{className:"type", - begin:"!<"+t+">"},{className:"type",begin:"!"+t},{className:"type",begin:"!!"+t - },{className:"meta",begin:"&"+e.UNDERSCORE_IDENT_RE+"$"},{className:"meta", - begin:"\\*"+e.UNDERSCORE_IDENT_RE+"$"},{className:"bullet",begin:"-(?=[ ]|$)", - relevance:0},e.HASH_COMMENT_MODE,{beginKeywords:n,keywords:{literal:n}},{ - className:"number", - begin:"\\b[0-9]{4}(-[0-9][0-9]){0,2}([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?(\\.[0-9]*)?([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?\\b" - },{className:"number",begin:e.C_NUMBER_RE+"\\b",relevance:0},s,o,a],c=[...l] - ;return c.pop(),c.push(i),r.contains=c,{name:"YAML",case_insensitive:!0, - aliases:["yml"],contains:l}}});const je=ne;for(const e of Object.keys(Ue)){ - const n=e.replace("grmr_","").replace("_","-");je.registerLanguage(n,Ue[e])} - return je}() - ;"object"==typeof exports&&"undefined"!=typeof module&&(module.exports=hljs); + x = { + scope: "string", + begin: "'", + end: "'", + illegal: "\\n", + contains: [O], + }, + M = { + scope: "string", + begin: '"', + end: '"', + illegal: "\\n", + contains: [O], + }, + k = (e, n, t = {}) => { + const a = r({ scope: "comment", begin: e, end: n, contains: [] }, t) + a.contains.push({ + scope: "doctag", + begin: "[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)", + end: /(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/, + excludeBegin: !0, + relevance: 0, + }) + const i = p( + "I", + "a", + "is", + "so", + "us", + "to", + "at", + "if", + "in", + "it", + "on", + /[A-Za-z]+['](d|ve|re|ll|t|s|n)/, + /[A-Za-z]+[-][a-z]+/, + /[A-Za-z][a-z]{2,}/ + ) + return ( + a.contains.push({ + begin: m(/[ ]+/, "(", i, /[.]?[:]?([.][ ]|[ ])/, "){3}"), + }), + a + ) + }, + S = k("//", "$"), + A = k("/\\*", "\\*/"), + C = k("#", "$") + var T = Object.freeze({ + __proto__: null, + MATCH_NOTHING_RE: /\b\B/, + IDENT_RE: E, + UNDERSCORE_IDENT_RE: y, + NUMBER_RE: N, + C_NUMBER_RE: w, + BINARY_NUMBER_RE: v, + RE_STARTERS_RE: + "!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~", + SHEBANG: (e = {}) => { + const n = /^#![ ]*\// + return ( + e.binary && (e.begin = m(n, /.*\b/, e.binary, /\b.*/)), + r( + { + scope: "meta", + begin: n, + end: /$/, + relevance: 0, + "on:begin": (e, n) => { + 0 !== e.index && n.ignoreMatch() + }, + }, + e + ) + ) + }, + BACKSLASH_ESCAPE: O, + APOS_STRING_MODE: x, + QUOTE_STRING_MODE: M, + PHRASAL_WORDS_MODE: { + begin: + /\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/, + }, + COMMENT: k, + C_LINE_COMMENT_MODE: S, + C_BLOCK_COMMENT_MODE: A, + HASH_COMMENT_MODE: C, + NUMBER_MODE: { scope: "number", begin: N, relevance: 0 }, + C_NUMBER_MODE: { scope: "number", begin: w, relevance: 0 }, + BINARY_NUMBER_MODE: { scope: "number", begin: v, relevance: 0 }, + REGEXP_MODE: { + begin: /(?=\/[^/\n]*\/)/, + contains: [ + { + scope: "regexp", + begin: /\//, + end: /\/[gimuy]*/, + illegal: /\n/, + contains: [ + O, + { begin: /\[/, end: /\]/, relevance: 0, contains: [O] }, + ], + }, + ], + }, + TITLE_MODE: { scope: "title", begin: E, relevance: 0 }, + UNDERSCORE_TITLE_MODE: { scope: "title", begin: y, relevance: 0 }, + METHOD_GUARD: { + begin: "\\.\\s*[a-zA-Z_]\\w*", + relevance: 0, + }, + END_SAME_AS_BEGIN: (e) => + Object.assign(e, { + "on:begin": (e, n) => { + n.data._beginMatch = e[1] + }, + "on:end": (e, n) => { + n.data._beginMatch !== e[1] && n.ignoreMatch() + }, + }), + }) + function R(e, n) { + "." === e.input[e.index - 1] && n.ignoreMatch() + } + function D(e, n) { + void 0 !== e.className && ((e.scope = e.className), delete e.className) + } + function I(e, n) { + n && + e.beginKeywords && + ((e.begin = + "\\b(" + e.beginKeywords.split(" ").join("|") + ")(?!\\.)(?=\\b|\\s)"), + (e.__beforeBegin = R), + (e.keywords = e.keywords || e.beginKeywords), + delete e.beginKeywords, + void 0 === e.relevance && (e.relevance = 0)) + } + function L(e, n) { + Array.isArray(e.illegal) && (e.illegal = p(...e.illegal)) + } + function B(e, n) { + if (e.match) { + if (e.begin || e.end) + throw Error("begin & end are not supported with match") + ;(e.begin = e.match), delete e.match + } + } + function $(e, n) { + void 0 === e.relevance && (e.relevance = 1) + } + const F = (e, n) => { + if (!e.beforeMatch) return + if (e.starts) throw Error("beforeMatch cannot be used with starts") + const t = Object.assign({}, e) + Object.keys(e).forEach((n) => { + delete e[n] + }), + (e.keywords = t.keywords), + (e.begin = m(t.beforeMatch, g(t.begin))), + (e.starts = { + relevance: 0, + contains: [Object.assign(t, { endsParent: !0 })], + }), + (e.relevance = 0), + delete t.beforeMatch + }, + z = [ + "of", + "and", + "for", + "in", + "not", + "or", + "if", + "then", + "parent", + "list", + "value", + ] + function U(e, n, t = "keyword") { + const a = Object.create(null) + return ( + "string" == typeof e + ? i(t, e.split(" ")) + : Array.isArray(e) + ? i(t, e) + : Object.keys(e).forEach((t) => { + Object.assign(a, U(e[t], n, t)) + }), + a + ) + function i(e, t) { + n && (t = t.map((e) => e.toLowerCase())), + t.forEach((n) => { + const t = n.split("|") + a[t[0]] = [e, j(t[0], t[1])] + }) + } + } + function j(e, n) { + return n ? Number(n) : ((e) => z.includes(e.toLowerCase()))(e) ? 0 : 1 + } + const P = {}, + K = (e) => { + console.error(e) + }, + q = (e, ...n) => { + console.log("WARN: " + e, ...n) + }, + H = (e, n) => { + P[`${e}/${n}`] || + (console.log(`Deprecated as of ${e}. ${n}`), (P[`${e}/${n}`] = !0)) + }, + Z = Error() + function G(e, n, { key: t }) { + let a = 0 + const i = e[t], + r = {}, + s = {} + for (let e = 1; e <= n.length; e++) + (s[e + a] = i[e]), (r[e + a] = !0), (a += _(n[e - 1])) + ;(e[t] = s), (e[t]._emit = r), (e[t]._multi = !0) + } + function W(e) { + ;((e) => { + e.scope && + "object" == typeof e.scope && + null !== e.scope && + ((e.beginScope = e.scope), delete e.scope) + })(e), + "string" == typeof e.beginScope && + (e.beginScope = { + _wrap: e.beginScope, + }), + "string" == typeof e.endScope && (e.endScope = { _wrap: e.endScope }), + ((e) => { + if (Array.isArray(e.begin)) { + if (e.skip || e.excludeBegin || e.returnBegin) + throw ( + (K( + "skip, excludeBegin, returnBegin not compatible with beginScope: {}" + ), + Z) + ) + if ("object" != typeof e.beginScope || null === e.beginScope) + throw (K("beginScope must be object"), Z) + G(e, e.begin, { key: "beginScope" }), + (e.begin = f(e.begin, { joinWith: "" })) + } + })(e), + ((e) => { + if (Array.isArray(e.end)) { + if (e.skip || e.excludeEnd || e.returnEnd) + throw ( + (K( + "skip, excludeEnd, returnEnd not compatible with endScope: {}" + ), + Z) + ) + if ("object" != typeof e.endScope || null === e.endScope) + throw (K("endScope must be object"), Z) + G(e, e.end, { key: "endScope" }), (e.end = f(e.end, { joinWith: "" })) + } + })(e) + } + function Q(e) { + function n(n, t) { + return RegExp( + d(n), + "m" + + (e.case_insensitive ? "i" : "") + + (e.unicodeRegex ? "u" : "") + + (t ? "g" : "") + ) + } + class t { + constructor() { + ;(this.matchIndexes = {}), + (this.regexes = []), + (this.matchAt = 1), + (this.position = 0) + } + addRule(e, n) { + ;(n.position = this.position++), + (this.matchIndexes[this.matchAt] = n), + this.regexes.push([n, e]), + (this.matchAt += _(e) + 1) + } + compile() { + 0 === this.regexes.length && (this.exec = () => null) + const e = this.regexes.map((e) => e[1]) + ;(this.matcherRe = n(f(e, { joinWith: "|" }), !0)), (this.lastIndex = 0) + } + exec(e) { + this.matcherRe.lastIndex = this.lastIndex + const n = this.matcherRe.exec(e) + if (!n) return null + const t = n.findIndex((e, n) => n > 0 && void 0 !== e), + a = this.matchIndexes[t] + return n.splice(0, t), Object.assign(n, a) + } + } + class a { + constructor() { + ;(this.rules = []), + (this.multiRegexes = []), + (this.count = 0), + (this.lastIndex = 0), + (this.regexIndex = 0) + } + getMatcher(e) { + if (this.multiRegexes[e]) return this.multiRegexes[e] + const n = new t() + return ( + this.rules.slice(e).forEach(([e, t]) => n.addRule(e, t)), + n.compile(), + (this.multiRegexes[e] = n), + n + ) + } + resumingScanAtSamePosition() { + return 0 !== this.regexIndex + } + considerAll() { + this.regexIndex = 0 + } + addRule(e, n) { + this.rules.push([e, n]), "begin" === n.type && this.count++ + } + exec(e) { + const n = this.getMatcher(this.regexIndex) + n.lastIndex = this.lastIndex + let t = n.exec(e) + if (this.resumingScanAtSamePosition()) + if (t && t.index === this.lastIndex); + else { + const n = this.getMatcher(0) + ;(n.lastIndex = this.lastIndex + 1), (t = n.exec(e)) + } + return ( + t && + ((this.regexIndex += t.position + 1), + this.regexIndex === this.count && this.considerAll()), + t + ) + } + } + if ( + (e.compilerExtensions || (e.compilerExtensions = []), + e.contains && e.contains.includes("self")) + ) + throw Error( + "ERR: contains `self` is not supported at the top-level of a language. See documentation." + ) + return ( + (e.classNameAliases = r(e.classNameAliases || {})), + (function t(i, s) { + const o = i + if (i.isCompiled) return o + ;[D, B, W, F].forEach((e) => e(i, s)), + e.compilerExtensions.forEach((e) => e(i, s)), + (i.__beforeBegin = null), + [I, L, $].forEach((e) => e(i, s)), + (i.isCompiled = !0) + let l = null + return ( + "object" == typeof i.keywords && + i.keywords.$pattern && + ((i.keywords = Object.assign({}, i.keywords)), + (l = i.keywords.$pattern), + delete i.keywords.$pattern), + (l = l || /\w+/), + i.keywords && (i.keywords = U(i.keywords, e.case_insensitive)), + (o.keywordPatternRe = n(l, !0)), + s && + (i.begin || (i.begin = /\B|\b/), + (o.beginRe = n(o.begin)), + i.end || i.endsWithParent || (i.end = /\B|\b/), + i.end && (o.endRe = n(o.end)), + (o.terminatorEnd = d(o.end) || ""), + i.endsWithParent && + s.terminatorEnd && + (o.terminatorEnd += (i.end ? "|" : "") + s.terminatorEnd)), + i.illegal && (o.illegalRe = n(i.illegal)), + i.contains || (i.contains = []), + (i.contains = [].concat( + ...i.contains.map((e) => + ((e) => ( + e.variants && + !e.cachedVariants && + (e.cachedVariants = e.variants.map((n) => + r( + e, + { + variants: null, + }, + n + ) + )), + e.cachedVariants + ? e.cachedVariants + : X(e) + ? r(e, { + starts: e.starts ? r(e.starts) : null, + }) + : Object.isFrozen(e) + ? r(e) + : e + ))("self" === e ? i : e) + ) + )), + i.contains.forEach((e) => { + t(e, o) + }), + i.starts && t(i.starts, s), + (o.matcher = ((e) => { + const n = new a() + return ( + e.contains.forEach((e) => + n.addRule(e.begin, { rule: e, type: "begin" }) + ), + e.terminatorEnd && n.addRule(e.terminatorEnd, { type: "end" }), + e.illegal && n.addRule(e.illegal, { type: "illegal" }), + n + ) + })(o)), + o + ) + })(e) + ) + } + function X(e) { + return !!e && (e.endsWithParent || X(e.starts)) + } + class V extends Error { + constructor(e, n) { + super(e), (this.name = "HTMLInjectionError"), (this.html = n) + } + } + const J = i, + Y = r, + ee = Symbol("nomatch") + var ne = ((e) => { + const n = Object.create(null), + i = Object.create(null), + r = [] + let s = !0 + const o = + "Could not find the language '{}', did you forget to load/include a language module?", + l = { + disableAutodetect: !0, + name: "Plain text", + contains: [], + } + let d = { + ignoreUnescapedHTML: !1, + throwUnescapedHTML: !1, + noHighlightRe: /^(no-?highlight)$/i, + languageDetectRe: /\blang(?:uage)?-([\w-]+)\b/i, + classPrefix: "hljs-", + cssSelector: "pre code", + languages: null, + __emitter: c, + } + function _(e) { + return d.noHighlightRe.test(e) + } + function h(e, n, t) { + let a = "", + i = "" + "object" == typeof n + ? ((a = e), (t = n.ignoreIllegals), (i = n.language)) + : (H("10.7.0", "highlight(lang, code, ...args) has been deprecated."), + H( + "10.7.0", + "Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277" + ), + (i = e), + (a = n)), + void 0 === t && (t = !0) + const r = { code: a, language: i } + M("before:highlight", r) + const s = r.result ? r.result : f(r.language, r.code, t) + return (s.code = r.code), M("after:highlight", s), s + } + function f(e, t, i, r) { + const l = Object.create(null) + function c() { + if (!x.keywords) return void k.addText(S) + let e = 0 + x.keywordPatternRe.lastIndex = 0 + let n = x.keywordPatternRe.exec(S), + t = "" + for (; n; ) { + t += S.substring(e, n.index) + const i = N.case_insensitive ? n[0].toLowerCase() : n[0], + r = ((a = i), x.keywords[a]) + if (r) { + const [e, a] = r + if ( + (k.addText(t), + (t = ""), + (l[i] = (l[i] || 0) + 1), + l[i] <= 7 && (A += a), + e.startsWith("_")) + ) + t += n[0] + else { + const t = N.classNameAliases[e] || e + k.addKeyword(n[0], t) + } + } else t += n[0] + ;(e = x.keywordPatternRe.lastIndex), (n = x.keywordPatternRe.exec(S)) + } + var a + ;(t += S.substr(e)), k.addText(t) + } + function g() { + null != x.subLanguage + ? (() => { + if ("" === S) return + let e = null + if ("string" == typeof x.subLanguage) { + if (!n[x.subLanguage]) return void k.addText(S) + ;(e = f(x.subLanguage, S, !0, M[x.subLanguage])), + (M[x.subLanguage] = e._top) + } else e = E(S, x.subLanguage.length ? x.subLanguage : null) + x.relevance > 0 && (A += e.relevance), + k.addSublanguage(e._emitter, e.language) + })() + : c(), + (S = "") + } + function u(e, n) { + let t = 1 + for (; void 0 !== n[t]; ) { + if (!e._emit[t]) { + t++ + continue + } + const a = N.classNameAliases[e[t]] || e[t], + i = n[t] + a ? k.addKeyword(i, a) : ((S = i), c(), (S = "")), t++ + } + } + function b(e, n) { + return ( + e.scope && + "string" == typeof e.scope && + k.openNode(N.classNameAliases[e.scope] || e.scope), + e.beginScope && + (e.beginScope._wrap + ? (k.addKeyword( + S, + N.classNameAliases[e.beginScope._wrap] || e.beginScope._wrap + ), + (S = "")) + : e.beginScope._multi && (u(e.beginScope, n), (S = ""))), + (x = Object.create(e, { + parent: { + value: x, + }, + })), + x + ) + } + function m(e, n, t) { + let i = ((e, n) => { + const t = e && e.exec(n) + return t && 0 === t.index + })(e.endRe, t) + if (i) { + if (e["on:end"]) { + const t = new a(e) + e["on:end"](n, t), t.isMatchIgnored && (i = !1) + } + if (i) { + for (; e.endsParent && e.parent; ) e = e.parent + return e + } + } + if (e.endsWithParent) return m(e.parent, n, t) + } + function p(e) { + return 0 === x.matcher.regexIndex ? ((S += e[0]), 1) : ((R = !0), 0) + } + function _(e) { + const n = e[0], + a = t.substr(e.index), + i = m(x, e, a) + if (!i) return ee + const r = x + x.endScope && x.endScope._wrap + ? (g(), k.addKeyword(n, x.endScope._wrap)) + : x.endScope && x.endScope._multi + ? (g(), u(x.endScope, e)) + : r.skip + ? (S += n) + : (r.returnEnd || r.excludeEnd || (S += n), + g(), + r.excludeEnd && (S = n)) + do { + x.scope && k.closeNode(), + x.skip || x.subLanguage || (A += x.relevance), + (x = x.parent) + } while (x !== i.parent) + return i.starts && b(i.starts, e), r.returnEnd ? 0 : n.length + } + let h = {} + function y(n, r) { + const o = r && r[0] + if (((S += n), null == o)) return g(), 0 + if ( + "begin" === h.type && + "end" === r.type && + h.index === r.index && + "" === o + ) { + if (((S += t.slice(r.index, r.index + 1)), !s)) { + const n = Error(`0 width match regex (${e})`) + throw ((n.languageName = e), (n.badRule = h.rule), n) + } + return 1 + } + if (((h = r), "begin" === r.type)) + return ((e) => { + const n = e[0], + t = e.rule, + i = new a(t), + r = [t.__beforeBegin, t["on:begin"]] + for (const t of r) if (t && (t(e, i), i.isMatchIgnored)) return p(n) + return ( + t.skip + ? (S += n) + : (t.excludeBegin && (S += n), + g(), + t.returnBegin || t.excludeBegin || (S = n)), + b(t, e), + t.returnBegin ? 0 : n.length + ) + })(r) + if ("illegal" === r.type && !i) { + const e = Error( + 'Illegal lexeme "' + + o + + '" for mode "' + + (x.scope || "") + + '"' + ) + throw ((e.mode = x), e) + } + if ("end" === r.type) { + const e = _(r) + if (e !== ee) return e + } + if ("illegal" === r.type && "" === o) return 1 + if (T > 1e5 && T > 3 * r.index) + throw Error( + "potential infinite loop, way more iterations than matches" + ) + return (S += o), o.length + } + const N = v(e) + if (!N) + throw (K(o.replace("{}", e)), Error('Unknown language: "' + e + '"')) + const w = Q(N) + let O = "", + x = r || w + const M = {}, + k = new d.__emitter(d) + ;(() => { + const e = [] + for (let n = x; n !== N; n = n.parent) n.scope && e.unshift(n.scope) + e.forEach((e) => k.openNode(e)) + })() + let S = "", + A = 0, + C = 0, + T = 0, + R = !1 + try { + for (x.matcher.considerAll(); ; ) { + T++, R ? (R = !1) : x.matcher.considerAll(), (x.matcher.lastIndex = C) + const e = x.matcher.exec(t) + if (!e) break + const n = y(t.substring(C, e.index), e) + C = e.index + n + } + return ( + y(t.substr(C)), + k.closeAllNodes(), + k.finalize(), + (O = k.toHTML()), + { + language: e, + value: O, + relevance: A, + illegal: !1, + _emitter: k, + _top: x, + } + ) + } catch (n) { + if (n.message && n.message.includes("Illegal")) + return { + language: e, + value: J(t), + illegal: !0, + relevance: 0, + _illegalBy: { + message: n.message, + index: C, + context: t.slice(C - 100, C + 100), + mode: n.mode, + resultSoFar: O, + }, + _emitter: k, + } + if (s) + return { + language: e, + value: J(t), + illegal: !1, + relevance: 0, + errorRaised: n, + _emitter: k, + _top: x, + } + throw n + } + } + function E(e, t) { + t = t || d.languages || Object.keys(n) + const a = ((e) => { + const n = { + value: J(e), + illegal: !1, + relevance: 0, + _top: l, + _emitter: new d.__emitter(d), + } + return n._emitter.addText(e), n + })(e), + i = t + .filter(v) + .filter(x) + .map((n) => f(n, e, !1)) + i.unshift(a) + const r = i.sort((e, n) => { + if (e.relevance !== n.relevance) return n.relevance - e.relevance + if (e.language && n.language) { + if (v(e.language).supersetOf === n.language) return 1 + if (v(n.language).supersetOf === e.language) return -1 + } + return 0 + }), + [s, o] = r, + c = s + return (c.secondBest = o), c + } + function y(e) { + let n = null + const t = ((e) => { + let n = e.className + " " + n += e.parentNode ? e.parentNode.className : "" + const t = d.languageDetectRe.exec(n) + if (t) { + const n = v(t[1]) + return ( + n || + (q(o.replace("{}", t[1])), + q("Falling back to no-highlight mode for this block.", e)), + n ? t[1] : "no-highlight" + ) + } + return n.split(/\s+/).find((e) => _(e) || v(e)) + })(e) + if (_(t)) return + if ( + (M("before:highlightElement", { el: e, language: t }), + e.children.length > 0 && + (d.ignoreUnescapedHTML || + (console.warn( + "One of your code blocks includes unescaped HTML. This is a potentially serious security risk." + ), + console.warn( + "https://github.com/highlightjs/highlight.js/wiki/security" + ), + console.warn("The element with unescaped HTML:"), + console.warn(e)), + d.throwUnescapedHTML)) + ) + throw new V( + "One of your code blocks includes unescaped HTML.", + e.innerHTML + ) + n = e + const a = n.textContent, + r = t ? h(a, { language: t, ignoreIllegals: !0 }) : E(a) + ;(e.innerHTML = r.value), + ((e, n, t) => { + const a = (n && i[n]) || t + e.classList.add("hljs"), e.classList.add("language-" + a) + })(e, t, r.language), + (e.result = { + language: r.language, + re: r.relevance, + relevance: r.relevance, + }), + r.secondBest && + (e.secondBest = { + language: r.secondBest.language, + relevance: r.secondBest.relevance, + }), + M("after:highlightElement", { el: e, result: r, text: a }) + } + let N = !1 + function w() { + "loading" !== document.readyState + ? document.querySelectorAll(d.cssSelector).forEach(y) + : (N = !0) + } + function v(e) { + return (e = (e || "").toLowerCase()), n[e] || n[i[e]] + } + function O(e, { languageName: n }) { + "string" == typeof e && (e = [e]), + e.forEach((e) => { + i[e.toLowerCase()] = n + }) + } + function x(e) { + const n = v(e) + return n && !n.disableAutodetect + } + function M(e, n) { + const t = e + r.forEach((e) => { + e[t] && e[t](n) + }) + } + "undefined" != typeof window && + window.addEventListener && + window.addEventListener( + "DOMContentLoaded", + () => { + N && w() + }, + !1 + ), + Object.assign(e, { + highlight: h, + highlightAuto: E, + highlightAll: w, + highlightElement: y, + highlightBlock: (e) => ( + H("10.7.0", "highlightBlock will be removed entirely in v12.0"), + H("10.7.0", "Please use highlightElement now."), + y(e) + ), + configure: (e) => { + d = Y(d, e) + }, + initHighlighting: () => { + w(), + H( + "10.6.0", + "initHighlighting() deprecated. Use highlightAll() now." + ) + }, + initHighlightingOnLoad: () => { + w(), + H( + "10.6.0", + "initHighlightingOnLoad() deprecated. Use highlightAll() now." + ) + }, + registerLanguage: (t, a) => { + let i = null + try { + i = a(e) + } catch (e) { + if ( + (K( + "Language definition for '{}' could not be registered.".replace( + "{}", + t + ) + ), + !s) + ) + throw e + K(e), (i = l) + } + i.name || (i.name = t), + (n[t] = i), + (i.rawDefinition = a.bind(null, e)), + i.aliases && + O(i.aliases, { + languageName: t, + }) + }, + unregisterLanguage: (e) => { + delete n[e] + for (const n of Object.keys(i)) i[n] === e && delete i[n] + }, + listLanguages: () => Object.keys(n), + getLanguage: v, + registerAliases: O, + autoDetection: x, + inherit: Y, + addPlugin: (e) => { + ;((e) => { + e["before:highlightBlock"] && + !e["before:highlightElement"] && + (e["before:highlightElement"] = (n) => { + e["before:highlightBlock"](Object.assign({ block: n.el }, n)) + }), + e["after:highlightBlock"] && + !e["after:highlightElement"] && + (e["after:highlightElement"] = (n) => { + e["after:highlightBlock"](Object.assign({ block: n.el }, n)) + }) + })(e), + r.push(e) + }, + }), + (e.debugMode = () => { + s = !1 + }), + (e.safeMode = () => { + s = !0 + }), + (e.versionString = "11.4.0"), + (e.regex = { + concat: m, + lookahead: g, + either: p, + optional: b, + anyNumberOfTimes: u, + }) + for (const e in T) "object" == typeof T[e] && t(T[e]) + return Object.assign(e, T), e + })({}) + const te = (e) => ({ + IMPORTANT: { scope: "meta", begin: "!important" }, + BLOCK_COMMENT: e.C_BLOCK_COMMENT_MODE, + HEXCOLOR: { + scope: "number", + begin: /#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/, + }, + FUNCTION_DISPATCH: { className: "built_in", begin: /[\w-]+(?=\()/ }, + ATTRIBUTE_SELECTOR_MODE: { + scope: "selector-attr", + begin: /\[/, + end: /\]/, + illegal: "$", + contains: [e.APOS_STRING_MODE, e.QUOTE_STRING_MODE], + }, + CSS_NUMBER_MODE: { + scope: "number", + begin: + e.NUMBER_RE + + "(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?", + relevance: 0, + }, + CSS_VARIABLE: { className: "attr", begin: /--[A-Za-z][A-Za-z0-9_-]*/ }, + }), + ae = [ + "a", + "abbr", + "address", + "article", + "aside", + "audio", + "b", + "blockquote", + "body", + "button", + "canvas", + "caption", + "cite", + "code", + "dd", + "del", + "details", + "dfn", + "div", + "dl", + "dt", + "em", + "fieldset", + "figcaption", + "figure", + "footer", + "form", + "h1", + "h2", + "h3", + "h4", + "h5", + "h6", + "header", + "hgroup", + "html", + "i", + "iframe", + "img", + "input", + "ins", + "kbd", + "label", + "legend", + "li", + "main", + "mark", + "menu", + "nav", + "object", + "ol", + "p", + "q", + "quote", + "samp", + "section", + "span", + "strong", + "summary", + "sup", + "table", + "tbody", + "td", + "textarea", + "tfoot", + "th", + "thead", + "time", + "tr", + "ul", + "var", + "video", + ], + ie = [ + "any-hover", + "any-pointer", + "aspect-ratio", + "color", + "color-gamut", + "color-index", + "device-aspect-ratio", + "device-height", + "device-width", + "display-mode", + "forced-colors", + "grid", + "height", + "hover", + "inverted-colors", + "monochrome", + "orientation", + "overflow-block", + "overflow-inline", + "pointer", + "prefers-color-scheme", + "prefers-contrast", + "prefers-reduced-motion", + "prefers-reduced-transparency", + "resolution", + "scan", + "scripting", + "update", + "width", + "min-width", + "max-width", + "min-height", + "max-height", + ], + re = [ + "active", + "any-link", + "blank", + "checked", + "current", + "default", + "defined", + "dir", + "disabled", + "drop", + "empty", + "enabled", + "first", + "first-child", + "first-of-type", + "fullscreen", + "future", + "focus", + "focus-visible", + "focus-within", + "has", + "host", + "host-context", + "hover", + "indeterminate", + "in-range", + "invalid", + "is", + "lang", + "last-child", + "last-of-type", + "left", + "link", + "local-link", + "not", + "nth-child", + "nth-col", + "nth-last-child", + "nth-last-col", + "nth-last-of-type", + "nth-of-type", + "only-child", + "only-of-type", + "optional", + "out-of-range", + "past", + "placeholder-shown", + "read-only", + "read-write", + "required", + "right", + "root", + "scope", + "target", + "target-within", + "user-invalid", + "valid", + "visited", + "where", + ], + se = [ + "after", + "backdrop", + "before", + "cue", + "cue-region", + "first-letter", + "first-line", + "grammar-error", + "marker", + "part", + "placeholder", + "selection", + "slotted", + "spelling-error", + ], + oe = [ + "align-content", + "align-items", + "align-self", + "all", + "animation", + "animation-delay", + "animation-direction", + "animation-duration", + "animation-fill-mode", + "animation-iteration-count", + "animation-name", + "animation-play-state", + "animation-timing-function", + "backface-visibility", + "background", + "background-attachment", + "background-clip", + "background-color", + "background-image", + "background-origin", + "background-position", + "background-repeat", + "background-size", + "border", + "border-bottom", + "border-bottom-color", + "border-bottom-left-radius", + "border-bottom-right-radius", + "border-bottom-style", + "border-bottom-width", + "border-collapse", + "border-color", + "border-image", + "border-image-outset", + "border-image-repeat", + "border-image-slice", + "border-image-source", + "border-image-width", + "border-left", + "border-left-color", + "border-left-style", + "border-left-width", + "border-radius", + "border-right", + "border-right-color", + "border-right-style", + "border-right-width", + "border-spacing", + "border-style", + "border-top", + "border-top-color", + "border-top-left-radius", + "border-top-right-radius", + "border-top-style", + "border-top-width", + "border-width", + "bottom", + "box-decoration-break", + "box-shadow", + "box-sizing", + "break-after", + "break-before", + "break-inside", + "caption-side", + "caret-color", + "clear", + "clip", + "clip-path", + "clip-rule", + "color", + "column-count", + "column-fill", + "column-gap", + "column-rule", + "column-rule-color", + "column-rule-style", + "column-rule-width", + "column-span", + "column-width", + "columns", + "contain", + "content", + "content-visibility", + "counter-increment", + "counter-reset", + "cue", + "cue-after", + "cue-before", + "cursor", + "direction", + "display", + "empty-cells", + "filter", + "flex", + "flex-basis", + "flex-direction", + "flex-flow", + "flex-grow", + "flex-shrink", + "flex-wrap", + "float", + "flow", + "font", + "font-display", + "font-family", + "font-feature-settings", + "font-kerning", + "font-language-override", + "font-size", + "font-size-adjust", + "font-smoothing", + "font-stretch", + "font-style", + "font-synthesis", + "font-variant", + "font-variant-caps", + "font-variant-east-asian", + "font-variant-ligatures", + "font-variant-numeric", + "font-variant-position", + "font-variation-settings", + "font-weight", + "gap", + "glyph-orientation-vertical", + "grid", + "grid-area", + "grid-auto-columns", + "grid-auto-flow", + "grid-auto-rows", + "grid-column", + "grid-column-end", + "grid-column-start", + "grid-gap", + "grid-row", + "grid-row-end", + "grid-row-start", + "grid-template", + "grid-template-areas", + "grid-template-columns", + "grid-template-rows", + "hanging-punctuation", + "height", + "hyphens", + "icon", + "image-orientation", + "image-rendering", + "image-resolution", + "ime-mode", + "isolation", + "justify-content", + "left", + "letter-spacing", + "line-break", + "line-height", + "list-style", + "list-style-image", + "list-style-position", + "list-style-type", + "margin", + "margin-bottom", + "margin-left", + "margin-right", + "margin-top", + "marks", + "mask", + "mask-border", + "mask-border-mode", + "mask-border-outset", + "mask-border-repeat", + "mask-border-slice", + "mask-border-source", + "mask-border-width", + "mask-clip", + "mask-composite", + "mask-image", + "mask-mode", + "mask-origin", + "mask-position", + "mask-repeat", + "mask-size", + "mask-type", + "max-height", + "max-width", + "min-height", + "min-width", + "mix-blend-mode", + "nav-down", + "nav-index", + "nav-left", + "nav-right", + "nav-up", + "none", + "normal", + "object-fit", + "object-position", + "opacity", + "order", + "orphans", + "outline", + "outline-color", + "outline-offset", + "outline-style", + "outline-width", + "overflow", + "overflow-wrap", + "overflow-x", + "overflow-y", + "padding", + "padding-bottom", + "padding-left", + "padding-right", + "padding-top", + "page-break-after", + "page-break-before", + "page-break-inside", + "pause", + "pause-after", + "pause-before", + "perspective", + "perspective-origin", + "pointer-events", + "position", + "quotes", + "resize", + "rest", + "rest-after", + "rest-before", + "right", + "row-gap", + "scroll-margin", + "scroll-margin-block", + "scroll-margin-block-end", + "scroll-margin-block-start", + "scroll-margin-bottom", + "scroll-margin-inline", + "scroll-margin-inline-end", + "scroll-margin-inline-start", + "scroll-margin-left", + "scroll-margin-right", + "scroll-margin-top", + "scroll-padding", + "scroll-padding-block", + "scroll-padding-block-end", + "scroll-padding-block-start", + "scroll-padding-bottom", + "scroll-padding-inline", + "scroll-padding-inline-end", + "scroll-padding-inline-start", + "scroll-padding-left", + "scroll-padding-right", + "scroll-padding-top", + "scroll-snap-align", + "scroll-snap-stop", + "scroll-snap-type", + "shape-image-threshold", + "shape-margin", + "shape-outside", + "speak", + "speak-as", + "src", + "tab-size", + "table-layout", + "text-align", + "text-align-all", + "text-align-last", + "text-combine-upright", + "text-decoration", + "text-decoration-color", + "text-decoration-line", + "text-decoration-style", + "text-emphasis", + "text-emphasis-color", + "text-emphasis-position", + "text-emphasis-style", + "text-indent", + "text-justify", + "text-orientation", + "text-overflow", + "text-rendering", + "text-shadow", + "text-transform", + "text-underline-position", + "top", + "transform", + "transform-box", + "transform-origin", + "transform-style", + "transition", + "transition-delay", + "transition-duration", + "transition-property", + "transition-timing-function", + "unicode-bidi", + "vertical-align", + "visibility", + "voice-balance", + "voice-duration", + "voice-family", + "voice-pitch", + "voice-range", + "voice-rate", + "voice-stress", + "voice-volume", + "white-space", + "widows", + "width", + "will-change", + "word-break", + "word-spacing", + "word-wrap", + "writing-mode", + "z-index", + ].reverse(), + le = re.concat(se) + var ce = "\\.([0-9](_*[0-9])*)", + de = "[0-9a-fA-F](_*[0-9a-fA-F])*", + ge = { + className: "number", + variants: [ + { + begin: `(\\b([0-9](_*[0-9])*)((${ce})|\\.)?|(${ce}))[eE][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`, + }, + { begin: `\\b([0-9](_*[0-9])*)((${ce})[fFdD]?\\b|\\.([fFdD]\\b)?)` }, + { + begin: `(${ce})[fFdD]?\\b`, + }, + { begin: "\\b([0-9](_*[0-9])*)[fFdD]\\b" }, + { + begin: `\\b0[xX]((${de})\\.?|(${de})?\\.(${de}))[pP][+-]?([0-9](_*[0-9])*)[fFdD]?\\b`, + }, + { begin: "\\b(0|[1-9](_*[0-9])*)[lL]?\\b" }, + { begin: `\\b0[xX](${de})[lL]?\\b` }, + { + begin: "\\b0(_*[0-7])*[lL]?\\b", + }, + { begin: "\\b0[bB][01](_*[01])*[lL]?\\b" }, + ], + relevance: 0, + } + function ue(e, n, t) { + return -1 === t ? "" : e.replace(n, (a) => ue(e, n, t - 1)) + } + const be = "[A-Za-z$_][0-9A-Za-z$_]*", + me = [ + "as", + "in", + "of", + "if", + "for", + "while", + "finally", + "var", + "new", + "function", + "do", + "return", + "void", + "else", + "break", + "catch", + "instanceof", + "with", + "throw", + "case", + "default", + "try", + "switch", + "continue", + "typeof", + "delete", + "let", + "yield", + "const", + "class", + "debugger", + "async", + "await", + "static", + "import", + "from", + "export", + "extends", + ], + pe = ["true", "false", "null", "undefined", "NaN", "Infinity"], + _e = [ + "Object", + "Function", + "Boolean", + "Symbol", + "Math", + "Date", + "Number", + "BigInt", + "String", + "RegExp", + "Array", + "Float32Array", + "Float64Array", + "Int8Array", + "Uint8Array", + "Uint8ClampedArray", + "Int16Array", + "Int32Array", + "Uint16Array", + "Uint32Array", + "BigInt64Array", + "BigUint64Array", + "Set", + "Map", + "WeakSet", + "WeakMap", + "ArrayBuffer", + "SharedArrayBuffer", + "Atomics", + "DataView", + "JSON", + "Promise", + "Generator", + "GeneratorFunction", + "AsyncFunction", + "Reflect", + "Proxy", + "Intl", + "WebAssembly", + ], + he = [ + "Error", + "EvalError", + "InternalError", + "RangeError", + "ReferenceError", + "SyntaxError", + "TypeError", + "URIError", + ], + fe = [ + "setInterval", + "setTimeout", + "clearInterval", + "clearTimeout", + "require", + "exports", + "eval", + "isFinite", + "isNaN", + "parseFloat", + "parseInt", + "decodeURI", + "decodeURIComponent", + "encodeURI", + "encodeURIComponent", + "escape", + "unescape", + ], + Ee = [ + "arguments", + "this", + "super", + "console", + "window", + "document", + "localStorage", + "module", + "global", + ], + ye = [].concat(fe, _e, he) + function Ne(e) { + const n = e.regex, + t = be, + a = { + begin: /<[A-Za-z0-9\\._:-]+/, + end: /\/[A-Za-z0-9\\._:-]+>|\/>/, + isTrulyOpeningTag: (e, n) => { + const t = e[0].length + e.index, + a = e.input[t] + if ("<" === a || "," === a) return void n.ignoreMatch() + let i + ">" === a && + (((e, { after: n }) => { + const t = "", + x = { + match: [ + /const|var|let/, + /\s+/, + t, + /\s*/, + /=\s*/, + /(async\s*)?/, + n.lookahead(O), + ], + keywords: "async", + className: { 1: "keyword", 3: "title.function" }, + contains: [_], + } + return { + name: "Javascript", + aliases: ["js", "jsx", "mjs", "cjs"], + keywords: i, + exports: { + PARAMS_CONTAINS: p, + CLASS_REFERENCE: f, + }, + illegal: /#(?![$_A-z])/, + contains: [ + e.SHEBANG({ label: "shebang", binary: "node", relevance: 5 }), + { + label: "use_strict", + className: "meta", + relevance: 10, + begin: /^\s*['"]use (strict|asm)['"]/, + }, + e.APOS_STRING_MODE, + e.QUOTE_STRING_MODE, + c, + d, + g, + u, + o, + f, + { className: "attr", begin: t + n.lookahead(":"), relevance: 0 }, + x, + { + begin: "(" + e.RE_STARTERS_RE + "|\\b(case|return|throw)\\b)\\s*", + keywords: "return throw case", + relevance: 0, + contains: [ + u, + e.REGEXP_MODE, + { + className: "function", + begin: O, + returnBegin: !0, + end: "\\s*=>", + contains: [ + { + className: "params", + variants: [ + { begin: e.UNDERSCORE_IDENT_RE, relevance: 0 }, + { + className: null, + begin: /\(\s*\)/, + skip: !0, + }, + { + begin: /\(/, + end: /\)/, + excludeBegin: !0, + excludeEnd: !0, + keywords: i, + contains: p, + }, + ], + }, + ], + }, + { begin: /,/, relevance: 0 }, + { match: /\s+/, relevance: 0 }, + { + variants: [ + { begin: "<>", end: "" }, + { + match: /<[A-Za-z0-9\\._:-]+\s*\/>/, + }, + { begin: a.begin, "on:begin": a.isTrulyOpeningTag, end: a.end }, + ], + subLanguage: "xml", + contains: [ + { + begin: a.begin, + end: a.end, + skip: !0, + contains: ["self"], + }, + ], + }, + ], + }, + E, + { + beginKeywords: "while if switch catch for", + }, + { + begin: + "\\b(?!function)" + + e.UNDERSCORE_IDENT_RE + + "\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{", + returnBegin: !0, + label: "func.def", + contains: [ + _, + e.inherit(e.TITLE_MODE, { begin: t, className: "title.function" }), + ], + }, + { match: /\.\.\./, relevance: 0 }, + w, + { match: "\\$" + t, relevance: 0 }, + { + match: [/\bconstructor(?=\s*\()/], + className: { 1: "title.function" }, + contains: [_], + }, + y, + { + relevance: 0, + match: /\b[A-Z][A-Z_0-9]+\b/, + className: "variable.constant", + }, + h, + v, + { match: /\$[(.]/ }, + ], + } + } + const we = (e) => m(/\b/, e, /\w$/.test(e) ? /\b/ : /\B/), + ve = ["Protocol", "Type"].map(we), + Oe = ["init", "self"].map(we), + xe = ["Any", "Self"], + Me = [ + "actor", + "associatedtype", + "async", + "await", + /as\?/, + /as!/, + "as", + "break", + "case", + "catch", + "class", + "continue", + "convenience", + "default", + "defer", + "deinit", + "didSet", + "do", + "dynamic", + "else", + "enum", + "extension", + "fallthrough", + /fileprivate\(set\)/, + "fileprivate", + "final", + "for", + "func", + "get", + "guard", + "if", + "import", + "indirect", + "infix", + /init\?/, + /init!/, + "inout", + /internal\(set\)/, + "internal", + "in", + "is", + "isolated", + "nonisolated", + "lazy", + "let", + "mutating", + "nonmutating", + /open\(set\)/, + "open", + "operator", + "optional", + "override", + "postfix", + "precedencegroup", + "prefix", + /private\(set\)/, + "private", + "protocol", + /public\(set\)/, + "public", + "repeat", + "required", + "rethrows", + "return", + "set", + "some", + "static", + "struct", + "subscript", + "super", + "switch", + "throws", + "throw", + /try\?/, + /try!/, + "try", + "typealias", + /unowned\(safe\)/, + /unowned\(unsafe\)/, + "unowned", + "var", + "weak", + "where", + "while", + "willSet", + ], + ke = ["false", "nil", "true"], + Se = [ + "assignment", + "associativity", + "higherThan", + "left", + "lowerThan", + "none", + "right", + ], + Ae = [ + "#colorLiteral", + "#column", + "#dsohandle", + "#else", + "#elseif", + "#endif", + "#error", + "#file", + "#fileID", + "#fileLiteral", + "#filePath", + "#function", + "#if", + "#imageLiteral", + "#keyPath", + "#line", + "#selector", + "#sourceLocation", + "#warn_unqualified_access", + "#warning", + ], + Ce = [ + "abs", + "all", + "any", + "assert", + "assertionFailure", + "debugPrint", + "dump", + "fatalError", + "getVaList", + "isKnownUniquelyReferenced", + "max", + "min", + "numericCast", + "pointwiseMax", + "pointwiseMin", + "precondition", + "preconditionFailure", + "print", + "readLine", + "repeatElement", + "sequence", + "stride", + "swap", + "swift_unboxFromSwiftValueWithType", + "transcode", + "type", + "unsafeBitCast", + "unsafeDowncast", + "withExtendedLifetime", + "withUnsafeMutablePointer", + "withUnsafePointer", + "withVaList", + "withoutActuallyEscaping", + "zip", + ], + Te = p( + /[/=\-+!*%<>&|^~?]/, + /[\u00A1-\u00A7]/, + /[\u00A9\u00AB]/, + /[\u00AC\u00AE]/, + /[\u00B0\u00B1]/, + /[\u00B6\u00BB\u00BF\u00D7\u00F7]/, + /[\u2016-\u2017]/, + /[\u2020-\u2027]/, + /[\u2030-\u203E]/, + /[\u2041-\u2053]/, + /[\u2055-\u205E]/, + /[\u2190-\u23FF]/, + /[\u2500-\u2775]/, + /[\u2794-\u2BFF]/, + /[\u2E00-\u2E7F]/, + /[\u3001-\u3003]/, + /[\u3008-\u3020]/, + /[\u3030]/ + ), + Re = p( + Te, + /[\u0300-\u036F]/, + /[\u1DC0-\u1DFF]/, + /[\u20D0-\u20FF]/, + /[\uFE00-\uFE0F]/, + /[\uFE20-\uFE2F]/ + ), + De = m(Te, Re, "*"), + Ie = p( + /[a-zA-Z_]/, + /[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/, + /[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/, + /[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/, + /[\u1E00-\u1FFF]/, + /[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/, + /[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/, + /[\u2C00-\u2DFF\u2E80-\u2FFF]/, + /[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/, + /[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/, + /[\uFE47-\uFEFE\uFF00-\uFFFD]/ + ), + Le = p(Ie, /\d/, /[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/), + Be = m(Ie, Le, "*"), + $e = m(/[A-Z]/, Le, "*"), + Fe = [ + "autoclosure", + m(/convention\(/, p("swift", "block", "c"), /\)/), + "discardableResult", + "dynamicCallable", + "dynamicMemberLookup", + "escaping", + "frozen", + "GKInspectable", + "IBAction", + "IBDesignable", + "IBInspectable", + "IBOutlet", + "IBSegueAction", + "inlinable", + "main", + "nonobjc", + "NSApplicationMain", + "NSCopying", + "NSManaged", + m(/objc\(/, Be, /\)/), + "objc", + "objcMembers", + "propertyWrapper", + "requires_stored_property_inits", + "resultBuilder", + "testable", + "UIApplicationMain", + "unknown", + "usableFromInline", + ], + ze = [ + "iOS", + "iOSApplicationExtension", + "macOS", + "macOSApplicationExtension", + "macCatalyst", + "macCatalystApplicationExtension", + "watchOS", + "watchOSApplicationExtension", + "tvOS", + "tvOSApplicationExtension", + "swift", + ] + var Ue = Object.freeze({ + __proto__: null, + grmr_bash: (e) => { + const n = e.regex, + t = {}, + a = { + begin: /\$\{/, + end: /\}/, + contains: ["self", { begin: /:-/, contains: [t] }], + } + Object.assign(t, { + className: "variable", + variants: [ + { + begin: n.concat(/\$[\w\d#@][\w\d_]*/, "(?![\\w\\d])(?![$])"), + }, + a, + ], + }) + const i = { + className: "subst", + begin: /\$\(/, + end: /\)/, + contains: [e.BACKSLASH_ESCAPE], + }, + r = { + begin: /<<-?\s*(?=\w+)/, + starts: { + contains: [ + e.END_SAME_AS_BEGIN({ + begin: /(\w+)/, + end: /(\w+)/, + className: "string", + }), + ], + }, + }, + s = { + className: "string", + begin: /"/, + end: /"/, + contains: [e.BACKSLASH_ESCAPE, t, i], + } + i.contains.push(s) + const o = { + begin: /\$\(\(/, + end: /\)\)/, + contains: [ + { begin: /\d+#[0-9a-f]+/, className: "number" }, + e.NUMBER_MODE, + t, + ], + }, + l = e.SHEBANG({ + binary: "(fish|bash|zsh|sh|csh|ksh|tcsh|dash|scsh)", + relevance: 10, + }), + c = { + className: "function", + begin: /\w[\w\d_]*\s*\(\s*\)\s*\{/, + returnBegin: !0, + contains: [e.inherit(e.TITLE_MODE, { begin: /\w[\w\d_]*/ })], + relevance: 0, + } + return { + name: "Bash", + aliases: ["sh"], + keywords: { + $pattern: /\b[a-z._-]+\b/, + keyword: [ + "if", + "then", + "else", + "elif", + "fi", + "for", + "while", + "in", + "do", + "done", + "case", + "esac", + "function", + ], + literal: ["true", "false"], + built_in: [ + "break", + "cd", + "continue", + "eval", + "exec", + "exit", + "export", + "getopts", + "hash", + "pwd", + "readonly", + "return", + "shift", + "test", + "times", + "trap", + "umask", + "unset", + "alias", + "bind", + "builtin", + "caller", + "command", + "declare", + "echo", + "enable", + "help", + "let", + "local", + "logout", + "mapfile", + "printf", + "read", + "readarray", + "source", + "type", + "typeset", + "ulimit", + "unalias", + "set", + "shopt", + "autoload", + "bg", + "bindkey", + "bye", + "cap", + "chdir", + "clone", + "comparguments", + "compcall", + "compctl", + "compdescribe", + "compfiles", + "compgroups", + "compquote", + "comptags", + "comptry", + "compvalues", + "dirs", + "disable", + "disown", + "echotc", + "echoti", + "emulate", + "fc", + "fg", + "float", + "functions", + "getcap", + "getln", + "history", + "integer", + "jobs", + "kill", + "limit", + "log", + "noglob", + "popd", + "print", + "pushd", + "pushln", + "rehash", + "sched", + "setcap", + "setopt", + "stat", + "suspend", + "ttyctl", + "unfunction", + "unhash", + "unlimit", + "unsetopt", + "vared", + "wait", + "whence", + "where", + "which", + "zcompile", + "zformat", + "zftp", + "zle", + "zmodload", + "zparseopts", + "zprof", + "zpty", + "zregexparse", + "zsocket", + "zstyle", + "ztcp", + "chcon", + "chgrp", + "chown", + "chmod", + "cp", + "dd", + "df", + "dir", + "dircolors", + "ln", + "ls", + "mkdir", + "mkfifo", + "mknod", + "mktemp", + "mv", + "realpath", + "rm", + "rmdir", + "shred", + "sync", + "touch", + "truncate", + "vdir", + "b2sum", + "base32", + "base64", + "cat", + "cksum", + "comm", + "csplit", + "cut", + "expand", + "fmt", + "fold", + "head", + "join", + "md5sum", + "nl", + "numfmt", + "od", + "paste", + "ptx", + "pr", + "sha1sum", + "sha224sum", + "sha256sum", + "sha384sum", + "sha512sum", + "shuf", + "sort", + "split", + "sum", + "tac", + "tail", + "tr", + "tsort", + "unexpand", + "uniq", + "wc", + "arch", + "basename", + "chroot", + "date", + "dirname", + "du", + "echo", + "env", + "expr", + "factor", + "groups", + "hostid", + "id", + "link", + "logname", + "nice", + "nohup", + "nproc", + "pathchk", + "pinky", + "printenv", + "printf", + "pwd", + "readlink", + "runcon", + "seq", + "sleep", + "stat", + "stdbuf", + "stty", + "tee", + "test", + "timeout", + "tty", + "uname", + "unlink", + "uptime", + "users", + "who", + "whoami", + "yes", + ], + }, + contains: [ + l, + e.SHEBANG(), + c, + o, + e.HASH_COMMENT_MODE, + r, + { match: /(\/[a-z._-]+)+/ }, + s, + { + className: "", + begin: /\\"/, + }, + { className: "string", begin: /'/, end: /'/ }, + t, + ], + } + }, + grmr_c: (e) => { + const n = e.regex, + t = e.COMMENT("//", "$", { contains: [{ begin: /\\\n/ }] }), + a = "[a-zA-Z_]\\w*::", + i = + "(decltype\\(auto\\)|" + + n.optional(a) + + "[a-zA-Z_]\\w*" + + n.optional("<[^<>]+>") + + ")", + r = { + className: "type", + variants: [ + { begin: "\\b[a-z\\d_]*_t\\b" }, + { + match: /\batomic_[a-z]{3,6}\b/, + }, + ], + }, + s = { + className: "string", + variants: [ + { + begin: '(u8?|U|L)?"', + end: '"', + illegal: "\\n", + contains: [e.BACKSLASH_ESCAPE], + }, + { + begin: + "(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)", + end: "'", + illegal: ".", + }, + e.END_SAME_AS_BEGIN({ + begin: /(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/, + end: /\)([^()\\ ]{0,16})"/, + }), + ], + }, + o = { + className: "number", + variants: [ + { begin: "\\b(0b[01']+)" }, + { + begin: + "(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)", + }, + { + begin: + "(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)", + }, + ], + relevance: 0, + }, + l = { + className: "meta", + begin: /#\s*[a-z]+\b/, + end: /$/, + keywords: { + keyword: + "if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include", + }, + contains: [ + { begin: /\\\n/, relevance: 0 }, + e.inherit(s, { className: "string" }), + { + className: "string", + begin: /<.*?>/, + }, + t, + e.C_BLOCK_COMMENT_MODE, + ], + }, + c = { + className: "title", + begin: n.optional(a) + e.IDENT_RE, + relevance: 0, + }, + d = n.optional(a) + e.IDENT_RE + "\\s*\\(", + g = { + keyword: [ + "asm", + "auto", + "break", + "case", + "continue", + "default", + "do", + "else", + "enum", + "extern", + "for", + "fortran", + "goto", + "if", + "inline", + "register", + "restrict", + "return", + "sizeof", + "struct", + "switch", + "typedef", + "union", + "volatile", + "while", + "_Alignas", + "_Alignof", + "_Atomic", + "_Generic", + "_Noreturn", + "_Static_assert", + "_Thread_local", + "alignas", + "alignof", + "noreturn", + "static_assert", + "thread_local", + "_Pragma", + ], + type: [ + "float", + "double", + "signed", + "unsigned", + "int", + "short", + "long", + "char", + "void", + "_Bool", + "_Complex", + "_Imaginary", + "_Decimal32", + "_Decimal64", + "_Decimal128", + "const", + "static", + "complex", + "bool", + "imaginary", + ], + literal: "true false NULL", + built_in: + "std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr", + }, + u = [l, r, t, e.C_BLOCK_COMMENT_MODE, o, s], + b = { + variants: [ + { begin: /=/, end: /;/ }, + { + begin: /\(/, + end: /\)/, + }, + { beginKeywords: "new throw return else", end: /;/ }, + ], + keywords: g, + contains: u.concat([ + { + begin: /\(/, + end: /\)/, + keywords: g, + contains: u.concat(["self"]), + relevance: 0, + }, + ]), + relevance: 0, + }, + m = { + begin: "(" + i + "[\\*&\\s]+)+" + d, + returnBegin: !0, + end: /[{;=]/, + excludeEnd: !0, + keywords: g, + illegal: /[^\w\s\*&:<>.]/, + contains: [ + { begin: "decltype\\(auto\\)", keywords: g, relevance: 0 }, + { + begin: d, + returnBegin: !0, + contains: [ + e.inherit(c, { + className: "title.function", + }), + ], + relevance: 0, + }, + { relevance: 0, match: /,/ }, + { + className: "params", + begin: /\(/, + end: /\)/, + keywords: g, + relevance: 0, + contains: [ + t, + e.C_BLOCK_COMMENT_MODE, + s, + o, + r, + { + begin: /\(/, + end: /\)/, + keywords: g, + relevance: 0, + contains: ["self", t, e.C_BLOCK_COMMENT_MODE, s, o, r], + }, + ], + }, + r, + t, + e.C_BLOCK_COMMENT_MODE, + l, + ], + } + return { + name: "C", + aliases: ["h"], + keywords: g, + disableAutodetect: !0, + illegal: "=]/, + contains: [ + { + beginKeywords: "final class struct", + }, + e.TITLE_MODE, + ], + }, + ]), + exports: { preprocessor: l, strings: s, keywords: g }, + } + }, + grmr_cpp: (e) => { + const n = e.regex, + t = e.COMMENT("//", "$", { + contains: [{ begin: /\\\n/ }], + }), + a = "[a-zA-Z_]\\w*::", + i = + "(?!struct)(decltype\\(auto\\)|" + + n.optional(a) + + "[a-zA-Z_]\\w*" + + n.optional("<[^<>]+>") + + ")", + r = { + className: "type", + begin: "\\b[a-z\\d_]*_t\\b", + }, + s = { + className: "string", + variants: [ + { + begin: '(u8?|U|L)?"', + end: '"', + illegal: "\\n", + contains: [e.BACKSLASH_ESCAPE], + }, + { + begin: + "(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)", + end: "'", + illegal: ".", + }, + e.END_SAME_AS_BEGIN({ + begin: /(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/, + end: /\)([^()\\ ]{0,16})"/, + }), + ], + }, + o = { + className: "number", + variants: [ + { begin: "\\b(0b[01']+)" }, + { + begin: + "(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)", + }, + { + begin: + "(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)", + }, + ], + relevance: 0, + }, + l = { + className: "meta", + begin: /#\s*[a-z]+\b/, + end: /$/, + keywords: { + keyword: + "if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include", + }, + contains: [ + { begin: /\\\n/, relevance: 0 }, + e.inherit(s, { className: "string" }), + { + className: "string", + begin: /<.*?>/, + }, + t, + e.C_BLOCK_COMMENT_MODE, + ], + }, + c = { + className: "title", + begin: n.optional(a) + e.IDENT_RE, + relevance: 0, + }, + d = n.optional(a) + e.IDENT_RE + "\\s*\\(", + g = { + type: [ + "bool", + "char", + "char16_t", + "char32_t", + "char8_t", + "double", + "float", + "int", + "long", + "short", + "void", + "wchar_t", + "unsigned", + "signed", + "const", + "static", + ], + keyword: [ + "alignas", + "alignof", + "and", + "and_eq", + "asm", + "atomic_cancel", + "atomic_commit", + "atomic_noexcept", + "auto", + "bitand", + "bitor", + "break", + "case", + "catch", + "class", + "co_await", + "co_return", + "co_yield", + "compl", + "concept", + "const_cast|10", + "consteval", + "constexpr", + "constinit", + "continue", + "decltype", + "default", + "delete", + "do", + "dynamic_cast|10", + "else", + "enum", + "explicit", + "export", + "extern", + "false", + "final", + "for", + "friend", + "goto", + "if", + "import", + "inline", + "module", + "mutable", + "namespace", + "new", + "noexcept", + "not", + "not_eq", + "nullptr", + "operator", + "or", + "or_eq", + "override", + "private", + "protected", + "public", + "reflexpr", + "register", + "reinterpret_cast|10", + "requires", + "return", + "sizeof", + "static_assert", + "static_cast|10", + "struct", + "switch", + "synchronized", + "template", + "this", + "thread_local", + "throw", + "transaction_safe", + "transaction_safe_dynamic", + "true", + "try", + "typedef", + "typeid", + "typename", + "union", + "using", + "virtual", + "volatile", + "while", + "xor", + "xor_eq", + ], + literal: ["NULL", "false", "nullopt", "nullptr", "true"], + built_in: ["_Pragma"], + _type_hints: [ + "any", + "auto_ptr", + "barrier", + "binary_semaphore", + "bitset", + "complex", + "condition_variable", + "condition_variable_any", + "counting_semaphore", + "deque", + "false_type", + "future", + "imaginary", + "initializer_list", + "istringstream", + "jthread", + "latch", + "lock_guard", + "multimap", + "multiset", + "mutex", + "optional", + "ostringstream", + "packaged_task", + "pair", + "promise", + "priority_queue", + "queue", + "recursive_mutex", + "recursive_timed_mutex", + "scoped_lock", + "set", + "shared_future", + "shared_lock", + "shared_mutex", + "shared_timed_mutex", + "shared_ptr", + "stack", + "string_view", + "stringstream", + "timed_mutex", + "thread", + "true_type", + "tuple", + "unique_lock", + "unique_ptr", + "unordered_map", + "unordered_multimap", + "unordered_multiset", + "unordered_set", + "variant", + "vector", + "weak_ptr", + "wstring", + "wstring_view", + ], + }, + u = { + className: "function.dispatch", + relevance: 0, + keywords: { + _hint: [ + "abort", + "abs", + "acos", + "apply", + "as_const", + "asin", + "atan", + "atan2", + "calloc", + "ceil", + "cerr", + "cin", + "clog", + "cos", + "cosh", + "cout", + "declval", + "endl", + "exchange", + "exit", + "exp", + "fabs", + "floor", + "fmod", + "forward", + "fprintf", + "fputs", + "free", + "frexp", + "fscanf", + "future", + "invoke", + "isalnum", + "isalpha", + "iscntrl", + "isdigit", + "isgraph", + "islower", + "isprint", + "ispunct", + "isspace", + "isupper", + "isxdigit", + "labs", + "launder", + "ldexp", + "log", + "log10", + "make_pair", + "make_shared", + "make_shared_for_overwrite", + "make_tuple", + "make_unique", + "malloc", + "memchr", + "memcmp", + "memcpy", + "memset", + "modf", + "move", + "pow", + "printf", + "putchar", + "puts", + "realloc", + "scanf", + "sin", + "sinh", + "snprintf", + "sprintf", + "sqrt", + "sscanf", + "std", + "stderr", + "stdin", + "stdout", + "strcat", + "strchr", + "strcmp", + "strcpy", + "strcspn", + "strlen", + "strncat", + "strncmp", + "strncpy", + "strpbrk", + "strrchr", + "strspn", + "strstr", + "swap", + "tan", + "tanh", + "terminate", + "to_underlying", + "tolower", + "toupper", + "vfprintf", + "visit", + "vprintf", + "vsprintf", + ], + }, + begin: n.concat( + /\b/, + /(?!decltype)/, + /(?!if)/, + /(?!for)/, + /(?!switch)/, + /(?!while)/, + e.IDENT_RE, + n.lookahead(/(<[^<>]+>|)\s*\(/) + ), + }, + b = [u, l, r, t, e.C_BLOCK_COMMENT_MODE, o, s], + m = { + variants: [ + { begin: /=/, end: /;/ }, + { + begin: /\(/, + end: /\)/, + }, + { beginKeywords: "new throw return else", end: /;/ }, + ], + keywords: g, + contains: b.concat([ + { + begin: /\(/, + end: /\)/, + keywords: g, + contains: b.concat(["self"]), + relevance: 0, + }, + ]), + relevance: 0, + }, + p = { + className: "function", + begin: "(" + i + "[\\*&\\s]+)+" + d, + returnBegin: !0, + end: /[{;=]/, + excludeEnd: !0, + keywords: g, + illegal: /[^\w\s\*&:<>.]/, + contains: [ + { begin: "decltype\\(auto\\)", keywords: g, relevance: 0 }, + { begin: d, returnBegin: !0, contains: [c], relevance: 0 }, + { + begin: /::/, + relevance: 0, + }, + { begin: /:/, endsWithParent: !0, contains: [s, o] }, + { + relevance: 0, + match: /,/, + }, + { + className: "params", + begin: /\(/, + end: /\)/, + keywords: g, + relevance: 0, + contains: [ + t, + e.C_BLOCK_COMMENT_MODE, + s, + o, + r, + { + begin: /\(/, + end: /\)/, + keywords: g, + relevance: 0, + contains: ["self", t, e.C_BLOCK_COMMENT_MODE, s, o, r], + }, + ], + }, + r, + t, + e.C_BLOCK_COMMENT_MODE, + l, + ], + } + return { + name: "C++", + aliases: ["cc", "c++", "h++", "hpp", "hh", "hxx", "cxx"], + keywords: g, + illegal: "", + keywords: g, + contains: ["self", r], + }, + { begin: e.IDENT_RE + "::", keywords: g }, + { + match: [ + /\b(?:enum(?:\s+(?:class|struct))?|class|struct|union)/, + /\s+/, + /\w+/, + ], + className: { 1: "keyword", 3: "title.class" }, + }, + ]), + } + }, + grmr_csharp: (e) => { + const n = { + keyword: [ + "abstract", + "as", + "base", + "break", + "case", + "catch", + "class", + "const", + "continue", + "do", + "else", + "event", + "explicit", + "extern", + "finally", + "fixed", + "for", + "foreach", + "goto", + "if", + "implicit", + "in", + "interface", + "internal", + "is", + "lock", + "namespace", + "new", + "operator", + "out", + "override", + "params", + "private", + "protected", + "public", + "readonly", + "record", + "ref", + "return", + "sealed", + "sizeof", + "stackalloc", + "static", + "struct", + "switch", + "this", + "throw", + "try", + "typeof", + "unchecked", + "unsafe", + "using", + "virtual", + "void", + "volatile", + "while", + ].concat([ + "add", + "alias", + "and", + "ascending", + "async", + "await", + "by", + "descending", + "equals", + "from", + "get", + "global", + "group", + "init", + "into", + "join", + "let", + "nameof", + "not", + "notnull", + "on", + "or", + "orderby", + "partial", + "remove", + "select", + "set", + "unmanaged", + "value|0", + "var", + "when", + "where", + "with", + "yield", + ]), + built_in: [ + "bool", + "byte", + "char", + "decimal", + "delegate", + "double", + "dynamic", + "enum", + "float", + "int", + "long", + "nint", + "nuint", + "object", + "sbyte", + "short", + "string", + "ulong", + "uint", + "ushort", + ], + literal: ["default", "false", "null", "true"], + }, + t = e.inherit(e.TITLE_MODE, { + begin: "[a-zA-Z](\\.?\\w)*", + }), + a = { + className: "number", + variants: [ + { + begin: "\\b(0b[01']+)", + }, + { + begin: + "(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)", + }, + { + begin: + "(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)", + }, + ], + relevance: 0, + }, + i = { + className: "string", + begin: '@"', + end: '"', + contains: [{ begin: '""' }], + }, + r = e.inherit(i, { illegal: /\n/ }), + s = { className: "subst", begin: /\{/, end: /\}/, keywords: n }, + o = e.inherit(s, { illegal: /\n/ }), + l = { + className: "string", + begin: /\$"/, + end: '"', + illegal: /\n/, + contains: [ + { begin: /\{\{/ }, + { begin: /\}\}/ }, + e.BACKSLASH_ESCAPE, + o, + ], + }, + c = { + className: "string", + begin: /\$@"/, + end: '"', + contains: [ + { + begin: /\{\{/, + }, + { begin: /\}\}/ }, + { begin: '""' }, + s, + ], + }, + d = e.inherit(c, { + illegal: /\n/, + contains: [{ begin: /\{\{/ }, { begin: /\}\}/ }, { begin: '""' }, o], + }) + ;(s.contains = [ + c, + l, + i, + e.APOS_STRING_MODE, + e.QUOTE_STRING_MODE, + a, + e.C_BLOCK_COMMENT_MODE, + ]), + (o.contains = [ + d, + l, + r, + e.APOS_STRING_MODE, + e.QUOTE_STRING_MODE, + a, + e.inherit(e.C_BLOCK_COMMENT_MODE, { + illegal: /\n/, + }), + ]) + const g = { + variants: [c, l, i, e.APOS_STRING_MODE, e.QUOTE_STRING_MODE], + }, + u = { + begin: "<", + end: ">", + contains: [{ beginKeywords: "in out" }, t], + }, + b = + e.IDENT_RE + + "(<" + + e.IDENT_RE + + "(\\s*,\\s*" + + e.IDENT_RE + + ")*>)?(\\[\\])?", + m = { + begin: "@" + e.IDENT_RE, + relevance: 0, + } + return { + name: "C#", + aliases: ["cs", "c#"], + keywords: n, + illegal: /::/, + contains: [ + e.COMMENT("///", "$", { + returnBegin: !0, + contains: [ + { + className: "doctag", + variants: [ + { begin: "///", relevance: 0 }, + { + begin: "\x3c!--|--\x3e", + }, + { begin: "" }, + ], + }, + ], + }), + e.C_LINE_COMMENT_MODE, + e.C_BLOCK_COMMENT_MODE, + { + className: "meta", + begin: "#", + end: "$", + keywords: { + keyword: + "if else elif endif define undef warning error line region endregion pragma checksum", + }, + }, + g, + a, + { + beginKeywords: "class interface", + relevance: 0, + end: /[{;=]/, + illegal: /[^\s:,]/, + contains: [ + { beginKeywords: "where class" }, + t, + u, + e.C_LINE_COMMENT_MODE, + e.C_BLOCK_COMMENT_MODE, + ], + }, + { + beginKeywords: "namespace", + relevance: 0, + end: /[{;=]/, + illegal: /[^\s:]/, + contains: [t, e.C_LINE_COMMENT_MODE, e.C_BLOCK_COMMENT_MODE], + }, + { + beginKeywords: "record", + relevance: 0, + end: /[{;=]/, + illegal: /[^\s:]/, + contains: [t, u, e.C_LINE_COMMENT_MODE, e.C_BLOCK_COMMENT_MODE], + }, + { + className: "meta", + begin: "^\\s*\\[(?=[\\w])", + excludeBegin: !0, + end: "\\]", + excludeEnd: !0, + contains: [ + { + className: "string", + begin: /"/, + end: /"/, + }, + ], + }, + { + beginKeywords: "new return throw await else", + relevance: 0, + }, + { + className: "function", + begin: "(" + b + "\\s+)+" + e.IDENT_RE + "\\s*(<[^=]+>\\s*)?\\(", + returnBegin: !0, + end: /\s*[{;=]/, + excludeEnd: !0, + keywords: n, + contains: [ + { + beginKeywords: + "public private protected static internal protected abstract async extern override unsafe virtual new sealed partial", + relevance: 0, + }, + { + begin: e.IDENT_RE + "\\s*(<[^=]+>\\s*)?\\(", + returnBegin: !0, + contains: [e.TITLE_MODE, u], + relevance: 0, + }, + { match: /\(\)/ }, + { + className: "params", + begin: /\(/, + end: /\)/, + excludeBegin: !0, + excludeEnd: !0, + keywords: n, + relevance: 0, + contains: [g, a, e.C_BLOCK_COMMENT_MODE], + }, + e.C_LINE_COMMENT_MODE, + e.C_BLOCK_COMMENT_MODE, + ], + }, + m, + ], + } + }, + grmr_css: (e) => { + const n = e.regex, + t = te(e), + a = [e.APOS_STRING_MODE, e.QUOTE_STRING_MODE] + return { + name: "CSS", + case_insensitive: !0, + illegal: /[=|'\$]/, + keywords: { + keyframePosition: "from to", + }, + classNameAliases: { keyframePosition: "selector-tag" }, + contains: [ + t.BLOCK_COMMENT, + { begin: /-(webkit|moz|ms|o)-(?=[a-z])/ }, + t.CSS_NUMBER_MODE, + { className: "selector-id", begin: /#[A-Za-z0-9_-]+/, relevance: 0 }, + { + className: "selector-class", + begin: "\\.[a-zA-Z-][a-zA-Z0-9_-]*", + relevance: 0, + }, + t.ATTRIBUTE_SELECTOR_MODE, + { + className: "selector-pseudo", + variants: [ + { + begin: ":(" + re.join("|") + ")", + }, + { begin: ":(:)?(" + se.join("|") + ")" }, + ], + }, + t.CSS_VARIABLE, + { className: "attribute", begin: "\\b(" + oe.join("|") + ")\\b" }, + { + begin: /:/, + end: /[;}{]/, + contains: [ + t.BLOCK_COMMENT, + t.HEXCOLOR, + t.IMPORTANT, + t.CSS_NUMBER_MODE, + ...a, + { + begin: /(url|data-uri)\(/, + end: /\)/, + relevance: 0, + keywords: { built_in: "url data-uri" }, + contains: [ + { + className: "string", + begin: /[^)]/, + endsWithParent: !0, + excludeEnd: !0, + }, + ], + }, + t.FUNCTION_DISPATCH, + ], + }, + { + begin: n.lookahead(/@/), + end: "[{;]", + relevance: 0, + illegal: /:/, + contains: [ + { className: "keyword", begin: /@-?\w[\w]*(-\w+)*/ }, + { + begin: /\s/, + endsWithParent: !0, + excludeEnd: !0, + relevance: 0, + keywords: { + $pattern: /[a-z-]+/, + keyword: "and or not only", + attribute: ie.join(" "), + }, + contains: [ + { + begin: /[a-z-]+(?=:)/, + className: "attribute", + }, + ...a, + t.CSS_NUMBER_MODE, + ], + }, + ], + }, + { + className: "selector-tag", + begin: "\\b(" + ae.join("|") + ")\\b", + }, + ], + } + }, + grmr_diff: (e) => { + const n = e.regex + return { + name: "Diff", + aliases: ["patch"], + contains: [ + { + className: "meta", + relevance: 10, + match: n.either( + /^@@ +-\d+,\d+ +\+\d+,\d+ +@@/, + /^\*\*\* +\d+,\d+ +\*\*\*\*$/, + /^--- +\d+,\d+ +----$/ + ), + }, + { + className: "comment", + variants: [ + { + begin: n.either( + /Index: /, + /^index/, + /={3,}/, + /^-{3}/, + /^\*{3} /, + /^\+{3}/, + /^diff --git/ + ), + end: /$/, + }, + { match: /^\*{15}$/ }, + ], + }, + { className: "addition", begin: /^\+/, end: /$/ }, + { + className: "deletion", + begin: /^-/, + end: /$/, + }, + { className: "addition", begin: /^!/, end: /$/ }, + ], + } + }, + grmr_go: (e) => { + const n = { + keyword: [ + "break", + "case", + "chan", + "const", + "continue", + "default", + "defer", + "else", + "fallthrough", + "for", + "func", + "go", + "goto", + "if", + "import", + "interface", + "map", + "package", + "range", + "return", + "select", + "struct", + "switch", + "type", + "var", + ], + type: [ + "bool", + "byte", + "complex64", + "complex128", + "error", + "float32", + "float64", + "int8", + "int16", + "int32", + "int64", + "string", + "uint8", + "uint16", + "uint32", + "uint64", + "int", + "uint", + "uintptr", + "rune", + ], + literal: ["true", "false", "iota", "nil"], + built_in: [ + "append", + "cap", + "close", + "complex", + "copy", + "imag", + "len", + "make", + "new", + "panic", + "print", + "println", + "real", + "recover", + "delete", + ], + } + return { + name: "Go", + aliases: ["golang"], + keywords: n, + illegal: " { + const n = e.regex, + t = { + className: "number", + relevance: 0, + variants: [ + { + begin: /([+-]+)?[\d]+_[\d_]+/, + }, + { begin: e.NUMBER_RE }, + ], + }, + a = e.COMMENT() + a.variants = [ + { + begin: /;/, + end: /$/, + }, + { begin: /#/, end: /$/ }, + ] + const i = { + className: "variable", + variants: [{ begin: /\$[\w\d"][\w\d_]*/ }, { begin: /\$\{(.*?)\}/ }], + }, + r = { + className: "literal", + begin: /\bon|off|true|false|yes|no\b/, + }, + s = { + className: "string", + contains: [e.BACKSLASH_ESCAPE], + variants: [ + { begin: "'''", end: "'''", relevance: 10 }, + { + begin: '"""', + end: '"""', + relevance: 10, + }, + { begin: '"', end: '"' }, + { begin: "'", end: "'" }, + ], + }, + o = { + begin: /\[/, + end: /\]/, + contains: [a, r, i, s, t, "self"], + relevance: 0, + }, + l = n.either(/[A-Za-z0-9_-]+/, /"(\\"|[^"])*"/, /'[^']*'/) + return { + name: "TOML, also INI", + aliases: ["toml"], + case_insensitive: !0, + illegal: /\S/, + contains: [ + a, + { className: "section", begin: /\[+/, end: /\]+/ }, + { + begin: n.concat( + l, + "(\\s*\\.\\s*", + l, + ")*", + n.lookahead(/\s*=\s*[^#\s]/) + ), + className: "attr", + starts: { end: /$/, contains: [a, o, r, i, s, t] }, + }, + ], + } + }, + grmr_java: (e) => { + e.regex + const n = "[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*", + t = n + ue("(?:<" + n + "~~~(?:\\s*,\\s*" + n + "~~~)*>)?", /~~~/g, 2), + a = { + keyword: [ + "synchronized", + "abstract", + "private", + "var", + "static", + "if", + "const ", + "for", + "while", + "strictfp", + "finally", + "protected", + "import", + "native", + "final", + "void", + "enum", + "else", + "break", + "transient", + "catch", + "instanceof", + "volatile", + "case", + "assert", + "package", + "default", + "public", + "try", + "switch", + "continue", + "throws", + "protected", + "public", + "private", + "module", + "requires", + "exports", + "do", + "sealed", + ], + literal: ["false", "true", "null"], + type: [ + "char", + "boolean", + "long", + "float", + "int", + "byte", + "short", + "double", + ], + built_in: ["super", "this"], + }, + i = { + className: "meta", + begin: "@" + n, + contains: [ + { + begin: /\(/, + end: /\)/, + contains: ["self"], + }, + ], + }, + r = { + className: "params", + begin: /\(/, + end: /\)/, + keywords: a, + relevance: 0, + contains: [e.C_BLOCK_COMMENT_MODE], + endsParent: !0, + } + return { + name: "Java", + aliases: ["jsp"], + keywords: a, + illegal: /<\/|#/, + contains: [ + e.COMMENT("/\\*\\*", "\\*/", { + relevance: 0, + contains: [ + { begin: /\w+@/, relevance: 0 }, + { className: "doctag", begin: "@[A-Za-z]+" }, + ], + }), + { + begin: /import java\.[a-z]+\./, + keywords: "import", + relevance: 2, + }, + e.C_LINE_COMMENT_MODE, + e.C_BLOCK_COMMENT_MODE, + { + begin: /"""/, + end: /"""/, + className: "string", + contains: [e.BACKSLASH_ESCAPE], + }, + e.APOS_STRING_MODE, + e.QUOTE_STRING_MODE, + { + match: [ + /\b(?:class|interface|enum|extends|implements|new)/, + /\s+/, + n, + ], + className: { + 1: "keyword", + 3: "title.class", + }, + }, + { match: /non-sealed/, scope: "keyword" }, + { + begin: [n, /\s+/, n, /\s+/, /=/], + className: { 1: "type", 3: "variable", 5: "operator" }, + }, + { + begin: [/record/, /\s+/, n], + className: { 1: "keyword", 3: "title.class" }, + contains: [r, e.C_LINE_COMMENT_MODE, e.C_BLOCK_COMMENT_MODE], + }, + { + beginKeywords: "new throw return else", + relevance: 0, + }, + { + begin: ["(?:" + t + "\\s+)", e.UNDERSCORE_IDENT_RE, /\s*(?=\()/], + className: { + 2: "title.function", + }, + keywords: a, + contains: [ + { + className: "params", + begin: /\(/, + end: /\)/, + keywords: a, + relevance: 0, + contains: [ + i, + e.APOS_STRING_MODE, + e.QUOTE_STRING_MODE, + ge, + e.C_BLOCK_COMMENT_MODE, + ], + }, + e.C_LINE_COMMENT_MODE, + e.C_BLOCK_COMMENT_MODE, + ], + }, + ge, + i, + ], + } + }, + grmr_javascript: Ne, + grmr_json: (e) => ({ + name: "JSON", + contains: [ + { + className: "attr", + begin: /"(\\.|[^\\"\r\n])*"(?=\s*:)/, + relevance: 1.01, + }, + { match: /[{}[\],:]/, className: "punctuation", relevance: 0 }, + e.QUOTE_STRING_MODE, + { + beginKeywords: "true false null", + }, + e.C_NUMBER_MODE, + e.C_LINE_COMMENT_MODE, + e.C_BLOCK_COMMENT_MODE, + ], + illegal: "\\S", + }), + grmr_kotlin: (e) => { + const n = { + keyword: + "abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual", + built_in: + "Byte Short Char Int Long Boolean Float Double Void Unit Nothing", + literal: "true false null", + }, + t = { className: "symbol", begin: e.UNDERSCORE_IDENT_RE + "@" }, + a = { + className: "subst", + begin: /\$\{/, + end: /\}/, + contains: [e.C_NUMBER_MODE], + }, + i = { + className: "variable", + begin: "\\$" + e.UNDERSCORE_IDENT_RE, + }, + r = { + className: "string", + variants: [ + { begin: '"""', end: '"""(?=[^"])', contains: [i, a] }, + { + begin: "'", + end: "'", + illegal: /\n/, + contains: [e.BACKSLASH_ESCAPE], + }, + { + begin: '"', + end: '"', + illegal: /\n/, + contains: [e.BACKSLASH_ESCAPE, i, a], + }, + ], + } + a.contains.push(r) + const s = { + className: "meta", + begin: + "@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*" + + e.UNDERSCORE_IDENT_RE + + ")?", + }, + o = { + className: "meta", + begin: "@" + e.UNDERSCORE_IDENT_RE, + contains: [ + { + begin: /\(/, + end: /\)/, + contains: [e.inherit(r, { className: "string" })], + }, + ], + }, + l = ge, + c = e.COMMENT("/\\*", "\\*/", { contains: [e.C_BLOCK_COMMENT_MODE] }), + d = { + variants: [ + { className: "type", begin: e.UNDERSCORE_IDENT_RE }, + { begin: /\(/, end: /\)/, contains: [] }, + ], + }, + g = d + return ( + (g.variants[1].contains = [d]), + (d.variants[1].contains = [g]), + { + name: "Kotlin", + aliases: ["kt", "kts"], + keywords: n, + contains: [ + e.COMMENT("/\\*\\*", "\\*/", { + relevance: 0, + contains: [{ className: "doctag", begin: "@[A-Za-z]+" }], + }), + e.C_LINE_COMMENT_MODE, + c, + { + className: "keyword", + begin: /\b(break|continue|return|this)\b/, + starts: { contains: [{ className: "symbol", begin: /@\w+/ }] }, + }, + t, + s, + o, + { + className: "function", + beginKeywords: "fun", + end: "[(]|$", + returnBegin: !0, + excludeEnd: !0, + keywords: n, + relevance: 5, + contains: [ + { + begin: e.UNDERSCORE_IDENT_RE + "\\s*\\(", + returnBegin: !0, + relevance: 0, + contains: [e.UNDERSCORE_TITLE_MODE], + }, + { + className: "type", + begin: //, + keywords: "reified", + relevance: 0, + }, + { + className: "params", + begin: /\(/, + end: /\)/, + endsParent: !0, + keywords: n, + relevance: 0, + contains: [ + { + begin: /:/, + end: /[=,\/]/, + endsWithParent: !0, + contains: [d, e.C_LINE_COMMENT_MODE, c], + relevance: 0, + }, + e.C_LINE_COMMENT_MODE, + c, + s, + o, + r, + e.C_NUMBER_MODE, + ], + }, + c, + ], + }, + { + className: "class", + beginKeywords: "class interface trait", + end: /[:\{(]|$/, + excludeEnd: !0, + illegal: "extends implements", + contains: [ + { + beginKeywords: + "public protected internal private constructor", + }, + e.UNDERSCORE_TITLE_MODE, + { + className: "type", + begin: //, + excludeBegin: !0, + excludeEnd: !0, + relevance: 0, + }, + { + className: "type", + begin: /[,:]\s*/, + end: /[<\(,]|$/, + excludeBegin: !0, + returnEnd: !0, + }, + s, + o, + ], + }, + r, + { + className: "meta", + begin: "^#!/usr/bin/env", + end: "$", + illegal: "\n", + }, + l, + ], + } + ) + }, + grmr_less: (e) => { + const n = te(e), + t = le, + a = "([\\w-]+|@\\{[\\w-]+\\})", + i = [], + r = [], + s = (e) => ({ + className: "string", + begin: "~?" + e + ".*?" + e, + }), + o = (e, n, t) => ({ className: e, begin: n, relevance: t }), + l = { + $pattern: /[a-z-]+/, + keyword: "and or not only", + attribute: ie.join(" "), + }, + c = { begin: "\\(", end: "\\)", contains: r, keywords: l, relevance: 0 } + r.push( + e.C_LINE_COMMENT_MODE, + e.C_BLOCK_COMMENT_MODE, + s("'"), + s('"'), + n.CSS_NUMBER_MODE, + { + begin: "(url|data-uri)\\(", + starts: { className: "string", end: "[\\)\\n]", excludeEnd: !0 }, + }, + n.HEXCOLOR, + c, + o("variable", "@@?[\\w-]+", 10), + o("variable", "@\\{[\\w-]+\\}"), + o("built_in", "~?`[^`]*?`"), + { + className: "attribute", + begin: "[\\w-]+\\s*:", + end: ":", + returnBegin: !0, + excludeEnd: !0, + }, + n.IMPORTANT + ) + const d = r.concat({ begin: /\{/, end: /\}/, contains: i }), + g = { + beginKeywords: "when", + endsWithParent: !0, + contains: [{ beginKeywords: "and not" }].concat(r), + }, + u = { + begin: a + "\\s*:", + returnBegin: !0, + end: /[;}]/, + relevance: 0, + contains: [ + { begin: /-(webkit|moz|ms|o)-/ }, + n.CSS_VARIABLE, + { + className: "attribute", + begin: "\\b(" + oe.join("|") + ")\\b", + end: /(?=:)/, + starts: { + endsWithParent: !0, + illegal: "[<=$]", + relevance: 0, + contains: r, + }, + }, + ], + }, + b = { + className: "keyword", + begin: + "@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b", + starts: { + end: "[;{}]", + keywords: l, + returnEnd: !0, + contains: r, + relevance: 0, + }, + }, + m = { + className: "variable", + variants: [ + { begin: "@[\\w-]+\\s*:", relevance: 15 }, + { + begin: "@[\\w-]+", + }, + ], + starts: { end: "[;}]", returnEnd: !0, contains: d }, + }, + p = { + variants: [ + { + begin: "[\\.#:&\\[>]", + end: "[;{}]", + }, + { begin: a, end: /\{/ }, + ], + returnBegin: !0, + returnEnd: !0, + illegal: "[<='$\"]", + relevance: 0, + contains: [ + e.C_LINE_COMMENT_MODE, + e.C_BLOCK_COMMENT_MODE, + g, + o("keyword", "all\\b"), + o("variable", "@\\{[\\w-]+\\}"), + { + begin: "\\b(" + ae.join("|") + ")\\b", + className: "selector-tag", + }, + n.CSS_NUMBER_MODE, + o("selector-tag", a, 0), + o("selector-id", "#" + a), + o("selector-class", "\\." + a, 0), + o("selector-tag", "&", 0), + n.ATTRIBUTE_SELECTOR_MODE, + { + className: "selector-pseudo", + begin: ":(" + re.join("|") + ")", + }, + { + className: "selector-pseudo", + begin: ":(:)?(" + se.join("|") + ")", + }, + { begin: /\(/, end: /\)/, relevance: 0, contains: d }, + { begin: "!important" }, + n.FUNCTION_DISPATCH, + ], + }, + _ = { + begin: `[\\w-]+:(:)?(${t.join("|")})`, + returnBegin: !0, + contains: [p], + } + return ( + i.push(e.C_LINE_COMMENT_MODE, e.C_BLOCK_COMMENT_MODE, b, m, _, u, p), + { + name: "Less", + case_insensitive: !0, + illegal: "[=>'/<($\"]", + contains: i, + } + ) + }, + grmr_lua: (e) => { + const n = "\\[=*\\[", + t = "\\]=*\\]", + a = { begin: n, end: t, contains: ["self"] }, + i = [ + e.COMMENT("--(?!\\[=*\\[)", "$"), + e.COMMENT("--\\[=*\\[", t, { contains: [a], relevance: 10 }), + ] + return { + name: "Lua", + keywords: { + $pattern: e.UNDERSCORE_IDENT_RE, + literal: "true false nil", + keyword: + "and break do else elseif end for goto if in local not or repeat return then until while", + built_in: + "_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove", + }, + contains: i.concat([ + { + className: "function", + beginKeywords: "function", + end: "\\)", + contains: [ + e.inherit(e.TITLE_MODE, { + begin: "([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*", + }), + { + className: "params", + begin: "\\(", + endsWithParent: !0, + contains: i, + }, + ].concat(i), + }, + e.C_NUMBER_MODE, + e.APOS_STRING_MODE, + e.QUOTE_STRING_MODE, + { + className: "string", + begin: n, + end: t, + contains: [a], + relevance: 5, + }, + ]), + } + }, + grmr_makefile: (e) => { + const n = { + className: "variable", + variants: [ + { + begin: "\\$\\(" + e.UNDERSCORE_IDENT_RE + "\\)", + contains: [e.BACKSLASH_ESCAPE], + }, + { begin: /\$[@% { + const n = e.regex, + t = n.concat(/[A-Z_]/, n.optional(/[A-Z0-9_.-]*:/), /[A-Z0-9_.-]*/), + a = { + className: "symbol", + begin: /&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/, + }, + i = { + begin: /\s/, + contains: [ + { + className: "keyword", + begin: /#?[a-z_][a-z1-9_-]+/, + illegal: /\n/, + }, + ], + }, + r = e.inherit(i, { begin: /\(/, end: /\)/ }), + s = e.inherit(e.APOS_STRING_MODE, { + className: "string", + }), + o = e.inherit(e.QUOTE_STRING_MODE, { className: "string" }), + l = { + endsWithParent: !0, + illegal: /`]+/ }, + ], + }, + ], + }, + ], + } + return { + name: "HTML, XML", + aliases: [ + "html", + "xhtml", + "rss", + "atom", + "xjb", + "xsd", + "xsl", + "plist", + "wsf", + "svg", + ], + case_insensitive: !0, + contains: [ + { + className: "meta", + begin: //, + relevance: 10, + contains: [ + i, + o, + s, + r, + { + begin: /\[/, + end: /\]/, + contains: [ + { + className: "meta", + begin: //, + contains: [i, r, o, s], + }, + ], + }, + ], + }, + e.COMMENT(//, { + relevance: 10, + }), + { begin: //, relevance: 10 }, + a, + { + className: "meta", + begin: /<\?xml/, + end: /\?>/, + relevance: 10, + }, + { + className: "tag", + begin: /)/, + end: />/, + keywords: { name: "style" }, + contains: [l], + starts: { + end: /<\/style>/, + returnEnd: !0, + subLanguage: ["css", "xml"], + }, + }, + { + className: "tag", + begin: /)/, + end: />/, + keywords: { name: "script" }, + contains: [l], + starts: { + end: /<\/script>/, + returnEnd: !0, + subLanguage: ["javascript", "handlebars", "xml"], + }, + }, + { + className: "tag", + begin: /<>|<\/>/, + }, + { + className: "tag", + begin: n.concat( + //, />/, /\s/))) + ), + end: /\/?>/, + contains: [ + { className: "name", begin: t, relevance: 0, starts: l }, + ], + }, + { + className: "tag", + begin: n.concat(/<\//, n.lookahead(n.concat(t, />/))), + contains: [ + { + className: "name", + begin: t, + relevance: 0, + }, + { begin: />/, relevance: 0, endsParent: !0 }, + ], + }, + ], + } + }, + grmr_markdown: (e) => { + const n = { + begin: /<\/?[A-Za-z_]/, + end: ">", + subLanguage: "xml", + relevance: 0, + }, + t = { + variants: [ + { begin: /\[.+?\]\[.*?\]/, relevance: 0 }, + { + begin: + /\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/, + relevance: 2, + }, + { + begin: e.regex.concat( + /\[.+?\]\(/, + /[A-Za-z][A-Za-z0-9+.-]*/, + /:\/\/.*?\)/ + ), + relevance: 2, + }, + { begin: /\[.+?\]\([./?&#].*?\)/, relevance: 1 }, + { + begin: /\[.*?\]\(.*?\)/, + relevance: 0, + }, + ], + returnBegin: !0, + contains: [ + { match: /\[(?=\])/ }, + { + className: "string", + relevance: 0, + begin: "\\[", + end: "\\]", + excludeBegin: !0, + returnEnd: !0, + }, + { + className: "link", + relevance: 0, + begin: "\\]\\(", + end: "\\)", + excludeBegin: !0, + excludeEnd: !0, + }, + { + className: "symbol", + relevance: 0, + begin: "\\]\\[", + end: "\\]", + excludeBegin: !0, + excludeEnd: !0, + }, + ], + }, + a = { + className: "strong", + contains: [], + variants: [ + { begin: /_{2}/, end: /_{2}/ }, + { begin: /\*{2}/, end: /\*{2}/ }, + ], + }, + i = { + className: "emphasis", + contains: [], + variants: [ + { begin: /\*(?!\*)/, end: /\*/ }, + { + begin: /_(?!_)/, + end: /_/, + relevance: 0, + }, + ], + } + a.contains.push(i), i.contains.push(a) + let r = [n, t] + return ( + (a.contains = a.contains.concat(r)), + (i.contains = i.contains.concat(r)), + (r = r.concat(a, i)), + { + name: "Markdown", + aliases: ["md", "mkdown", "mkd"], + contains: [ + { + className: "section", + variants: [ + { begin: "^#{1,6}", end: "$", contains: r }, + { + begin: "(?=^.+?\\n[=-]{2,}$)", + contains: [ + { begin: "^[=-]*$" }, + { begin: "^", end: "\\n", contains: r }, + ], + }, + ], + }, + n, + { + className: "bullet", + begin: "^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)", + end: "\\s+", + excludeEnd: !0, + }, + a, + i, + { className: "quote", begin: "^>\\s+", contains: r, end: "$" }, + { + className: "code", + variants: [ + { begin: "(`{3,})[^`](.|\\n)*?\\1`*[ ]*" }, + { + begin: "(~{3,})[^~](.|\\n)*?\\1~*[ ]*", + }, + { begin: "```", end: "```+[ ]*$" }, + { + begin: "~~~", + end: "~~~+[ ]*$", + }, + { begin: "`.+?`" }, + { + begin: "(?=^( {4}|\\t))", + contains: [{ begin: "^( {4}|\\t)", end: "(\\n)$" }], + relevance: 0, + }, + ], + }, + { + begin: "^[-\\*]{3,}", + end: "$", + }, + t, + { + begin: /^\[[^\n]+\]:/, + returnBegin: !0, + contains: [ + { + className: "symbol", + begin: /\[/, + end: /\]/, + excludeBegin: !0, + excludeEnd: !0, + }, + { + className: "link", + begin: /:\s*/, + end: /$/, + excludeBegin: !0, + }, + ], + }, + ], + } + ) + }, + grmr_objectivec: (e) => { + const n = /[a-zA-Z@][a-zA-Z0-9_]*/, + t = { + $pattern: n, + keyword: ["@interface", "@class", "@protocol", "@implementation"], + } + return { + name: "Objective-C", + aliases: ["mm", "objc", "obj-c", "obj-c++", "objective-c++"], + keywords: { + $pattern: n, + keyword: [ + "int", + "float", + "while", + "char", + "export", + "sizeof", + "typedef", + "const", + "struct", + "for", + "union", + "unsigned", + "long", + "volatile", + "static", + "bool", + "mutable", + "if", + "do", + "return", + "goto", + "void", + "enum", + "else", + "break", + "extern", + "asm", + "case", + "short", + "default", + "double", + "register", + "explicit", + "signed", + "typename", + "this", + "switch", + "continue", + "wchar_t", + "inline", + "readonly", + "assign", + "readwrite", + "self", + "@synchronized", + "id", + "typeof", + "nonatomic", + "super", + "unichar", + "IBOutlet", + "IBAction", + "strong", + "weak", + "copy", + "in", + "out", + "inout", + "bycopy", + "byref", + "oneway", + "__strong", + "__weak", + "__block", + "__autoreleasing", + "@private", + "@protected", + "@public", + "@try", + "@property", + "@end", + "@throw", + "@catch", + "@finally", + "@autoreleasepool", + "@synthesize", + "@dynamic", + "@selector", + "@optional", + "@required", + "@encode", + "@package", + "@import", + "@defs", + "@compatibility_alias", + "__bridge", + "__bridge_transfer", + "__bridge_retained", + "__bridge_retain", + "__covariant", + "__contravariant", + "__kindof", + "_Nonnull", + "_Nullable", + "_Null_unspecified", + "__FUNCTION__", + "__PRETTY_FUNCTION__", + "__attribute__", + "getter", + "setter", + "retain", + "unsafe_unretained", + "nonnull", + "nullable", + "null_unspecified", + "null_resettable", + "class", + "instancetype", + "NS_DESIGNATED_INITIALIZER", + "NS_UNAVAILABLE", + "NS_REQUIRES_SUPER", + "NS_RETURNS_INNER_POINTER", + "NS_INLINE", + "NS_AVAILABLE", + "NS_DEPRECATED", + "NS_ENUM", + "NS_OPTIONS", + "NS_SWIFT_UNAVAILABLE", + "NS_ASSUME_NONNULL_BEGIN", + "NS_ASSUME_NONNULL_END", + "NS_REFINED_FOR_SWIFT", + "NS_SWIFT_NAME", + "NS_SWIFT_NOTHROW", + "NS_DURING", + "NS_HANDLER", + "NS_ENDHANDLER", + "NS_VALUERETURN", + "NS_VOIDRETURN", + ], + literal: [ + "false", + "true", + "FALSE", + "TRUE", + "nil", + "YES", + "NO", + "NULL", + ], + built_in: [ + "BOOL", + "dispatch_once_t", + "dispatch_queue_t", + "dispatch_sync", + "dispatch_async", + "dispatch_once", + ], + }, + illegal: "/, end: /$/, illegal: "\\n" }, + e.C_LINE_COMMENT_MODE, + e.C_BLOCK_COMMENT_MODE, + ], + }, + { + className: "class", + begin: "(" + t.keyword.join("|") + ")\\b", + end: /(\{|$)/, + excludeEnd: !0, + keywords: t, + contains: [e.UNDERSCORE_TITLE_MODE], + }, + { begin: "\\." + e.UNDERSCORE_IDENT_RE, relevance: 0 }, + ], + } + }, + grmr_perl: (e) => { + const n = e.regex, + t = /[dualxmsipngr]{0,12}/, + a = { + $pattern: /[\w.]+/, + keyword: + "abs accept alarm and atan2 bind binmode bless break caller chdir chmod chomp chop chown chr chroot close closedir connect continue cos crypt dbmclose dbmopen defined delete die do dump each else elsif endgrent endhostent endnetent endprotoent endpwent endservent eof eval exec exists exit exp fcntl fileno flock for foreach fork format formline getc getgrent getgrgid getgrnam gethostbyaddr gethostbyname gethostent getlogin getnetbyaddr getnetbyname getnetent getpeername getpgrp getpriority getprotobyname getprotobynumber getprotoent getpwent getpwnam getpwuid getservbyname getservbyport getservent getsockname getsockopt given glob gmtime goto grep gt hex if index int ioctl join keys kill last lc lcfirst length link listen local localtime log lstat lt ma map mkdir msgctl msgget msgrcv msgsnd my ne next no not oct open opendir or ord our pack package pipe pop pos print printf prototype push q|0 qq quotemeta qw qx rand read readdir readline readlink readpipe recv redo ref rename require reset return reverse rewinddir rindex rmdir say scalar seek seekdir select semctl semget semop send setgrent sethostent setnetent setpgrp setpriority setprotoent setpwent setservent setsockopt shift shmctl shmget shmread shmwrite shutdown sin sleep socket socketpair sort splice split sprintf sqrt srand stat state study sub substr symlink syscall sysopen sysread sysseek system syswrite tell telldir tie tied time times tr truncate uc ucfirst umask undef unless unlink unpack unshift untie until use utime values vec wait waitpid wantarray warn when while write x|0 xor y|0", + }, + i = { className: "subst", begin: "[$@]\\{", end: "\\}", keywords: a }, + r = { begin: /->\{/, end: /\}/ }, + s = { + variants: [ + { begin: /\$\d/ }, + { + begin: n.concat( + /[$%@](\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/, + "(?![A-Za-z])(?![@$%])" + ), + }, + { begin: /[$%@][^\s\w{]/, relevance: 0 }, + ], + }, + o = [e.BACKSLASH_ESCAPE, i, s], + l = [/!/, /\//, /\|/, /\?/, /'/, /"/, /#/], + c = (e, a, i = "\\1") => { + const r = "\\1" === i ? i : n.concat(i, a) + return n.concat( + n.concat("(?:", e, ")"), + a, + /(?:\\.|[^\\\/])*?/, + r, + /(?:\\.|[^\\\/])*?/, + i, + t + ) + }, + d = (e, a, i) => + n.concat(n.concat("(?:", e, ")"), a, /(?:\\.|[^\\\/])*?/, i, t), + g = [ + s, + e.HASH_COMMENT_MODE, + e.COMMENT(/^=\w/, /=cut/, { + endsWithParent: !0, + }), + r, + { + className: "string", + contains: o, + variants: [ + { + begin: "q[qwxr]?\\s*\\(", + end: "\\)", + relevance: 5, + }, + { begin: "q[qwxr]?\\s*\\[", end: "\\]", relevance: 5 }, + { begin: "q[qwxr]?\\s*\\{", end: "\\}", relevance: 5 }, + { + begin: "q[qwxr]?\\s*\\|", + end: "\\|", + relevance: 5, + }, + { begin: "q[qwxr]?\\s*<", end: ">", relevance: 5 }, + { begin: "qw\\s+q", end: "q", relevance: 5 }, + { begin: "'", end: "'", contains: [e.BACKSLASH_ESCAPE] }, + { begin: '"', end: '"' }, + { begin: "`", end: "`", contains: [e.BACKSLASH_ESCAPE] }, + { begin: /\{\w+\}/, relevance: 0 }, + { + begin: "-?\\w+\\s*=>", + relevance: 0, + }, + ], + }, + { + className: "number", + begin: + "(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b", + relevance: 0, + }, + { + begin: + "(\\/\\/|" + + e.RE_STARTERS_RE + + "|\\b(split|return|print|reverse|grep)\\b)\\s*", + keywords: "split return print reverse grep", + relevance: 0, + contains: [ + e.HASH_COMMENT_MODE, + { + className: "regexp", + variants: [ + { + begin: c("s|tr|y", n.either(...l, { capture: !0 })), + }, + { begin: c("s|tr|y", "\\(", "\\)") }, + { + begin: c("s|tr|y", "\\[", "\\]"), + }, + { begin: c("s|tr|y", "\\{", "\\}") }, + ], + relevance: 2, + }, + { + className: "regexp", + variants: [ + { begin: /(m|qr)\/\//, relevance: 0 }, + { + begin: d("(?:m|qr)?", /\//, /\//), + }, + { begin: d("m|qr", n.either(...l, { capture: !0 }), /\1/) }, + { begin: d("m|qr", /\(/, /\)/) }, + { begin: d("m|qr", /\[/, /\]/) }, + { + begin: d("m|qr", /\{/, /\}/), + }, + ], + }, + ], + }, + { + className: "function", + beginKeywords: "sub", + end: "(\\s*\\(.*?\\))?[;{]", + excludeEnd: !0, + relevance: 5, + contains: [e.TITLE_MODE], + }, + { + begin: "-\\w\\b", + relevance: 0, + }, + { + begin: "^__DATA__$", + end: "^__END__$", + subLanguage: "mojolicious", + contains: [{ begin: "^@@.*", end: "$", className: "comment" }], + }, + ] + return ( + (i.contains = g), + (r.contains = g), + { name: "Perl", aliases: ["pl", "pm"], keywords: a, contains: g } + ) + }, + grmr_php: (e) => { + const n = e.regex, + t = "[a-zA-Z0-9_\x7f-\xff]*(?![A-Za-z0-9])(?![$]))", + a = n.concat("([a-zA-Z_\\x7f-\\xff]", t), + i = n.concat("([A-Z]", t), + r = { + scope: "variable", + match: "\\$+" + a, + }, + s = { + scope: "subst", + variants: [ + { begin: /\$\w+/ }, + { + begin: /\{\$/, + end: /\}/, + }, + ], + }, + o = e.inherit(e.APOS_STRING_MODE, { illegal: null }), + l = "[ \t\n]", + c = { + scope: "string", + variants: [ + e.inherit(e.QUOTE_STRING_MODE, { + illegal: null, + contains: e.QUOTE_STRING_MODE.contains.concat(s), + }), + o, + e.END_SAME_AS_BEGIN({ + begin: /<<<[ \t]*(\w+)\n/, + end: /[ \t]*(\w+)\b/, + contains: e.QUOTE_STRING_MODE.contains.concat(s), + }), + ], + }, + d = { + scope: "number", + variants: [ + { begin: "\\b0[bB][01]+(?:_[01]+)*\\b" }, + { + begin: "\\b0[oO][0-7]+(?:_[0-7]+)*\\b", + }, + { + begin: "\\b0[xX][\\da-fA-F]+(?:_[\\da-fA-F]+)*\\b", + }, + { + begin: + "(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:[eE][+-]?\\d+)?", + }, + ], + relevance: 0, + }, + g = [ + "__CLASS__", + "__DIR__", + "__FILE__", + "__FUNCTION__", + "__COMPILER_HALT_OFFSET__", + "__LINE__", + "__METHOD__", + "__NAMESPACE__", + "__TRAIT__", + "die", + "echo", + "exit", + "include", + "include_once", + "print", + "require", + "require_once", + "array", + "abstract", + "and", + "as", + "binary", + "bool", + "boolean", + "break", + "callable", + "case", + "catch", + "class", + "clone", + "const", + "continue", + "declare", + "default", + "do", + "double", + "else", + "elseif", + "empty", + "enddeclare", + "endfor", + "endforeach", + "endif", + "endswitch", + "endwhile", + "enum", + "eval", + "extends", + "final", + "finally", + "float", + "for", + "foreach", + "from", + "global", + "goto", + "if", + "implements", + "instanceof", + "insteadof", + "int", + "integer", + "interface", + "isset", + "iterable", + "list", + "match|0", + "mixed", + "new", + "never", + "object", + "or", + "private", + "protected", + "public", + "readonly", + "real", + "return", + "string", + "switch", + "throw", + "trait", + "try", + "unset", + "use", + "var", + "void", + "while", + "xor", + "yield", + ], + u = [ + "Error|0", + "AppendIterator", + "ArgumentCountError", + "ArithmeticError", + "ArrayIterator", + "ArrayObject", + "AssertionError", + "BadFunctionCallException", + "BadMethodCallException", + "CachingIterator", + "CallbackFilterIterator", + "CompileError", + "Countable", + "DirectoryIterator", + "DivisionByZeroError", + "DomainException", + "EmptyIterator", + "ErrorException", + "Exception", + "FilesystemIterator", + "FilterIterator", + "GlobIterator", + "InfiniteIterator", + "InvalidArgumentException", + "IteratorIterator", + "LengthException", + "LimitIterator", + "LogicException", + "MultipleIterator", + "NoRewindIterator", + "OutOfBoundsException", + "OutOfRangeException", + "OuterIterator", + "OverflowException", + "ParentIterator", + "ParseError", + "RangeException", + "RecursiveArrayIterator", + "RecursiveCachingIterator", + "RecursiveCallbackFilterIterator", + "RecursiveDirectoryIterator", + "RecursiveFilterIterator", + "RecursiveIterator", + "RecursiveIteratorIterator", + "RecursiveRegexIterator", + "RecursiveTreeIterator", + "RegexIterator", + "RuntimeException", + "SeekableIterator", + "SplDoublyLinkedList", + "SplFileInfo", + "SplFileObject", + "SplFixedArray", + "SplHeap", + "SplMaxHeap", + "SplMinHeap", + "SplObjectStorage", + "SplObserver", + "SplPriorityQueue", + "SplQueue", + "SplStack", + "SplSubject", + "SplTempFileObject", + "TypeError", + "UnderflowException", + "UnexpectedValueException", + "UnhandledMatchError", + "ArrayAccess", + "BackedEnum", + "Closure", + "Fiber", + "Generator", + "Iterator", + "IteratorAggregate", + "Serializable", + "Stringable", + "Throwable", + "Traversable", + "UnitEnum", + "WeakReference", + "WeakMap", + "Directory", + "__PHP_Incomplete_Class", + "parent", + "php_user_filter", + "self", + "static", + "stdClass", + ], + b = { + keyword: g, + literal: ((e) => { + const n = [] + return ( + ["false", "null", "true"].forEach((e) => { + n.push(e), + e.toLowerCase() === e + ? n.push(e.toUpperCase()) + : n.push(e.toLowerCase()) + }), + n + ) + })(), + built_in: u, + }, + m = (e) => e.map((e) => e.replace(/\|\d+$/, "")), + p = { + variants: [ + { + match: [ + /new/, + n.concat(l, "+"), + n.concat("(?!", m(u).join("\\b|"), "\\b)"), + n.concat(/\\?/, a), + n.concat(l, "*", /\(/), + ], + scope: { 1: "keyword", 4: "title.class" }, + }, + ], + }, + _ = { + relevance: 0, + match: [ + /\b/, + n.concat( + "(?!fn\\b|function\\b|", + m(g).join("\\b|"), + "|", + m(u).join("\\b|"), + "\\b)" + ), + a, + n.concat(l, "*"), + n.lookahead(/(?=\()/), + ], + scope: { 3: "title.function.invoke" }, + }, + h = n.concat(a, "\\b(?!\\()"), + f = { + variants: [ + { + match: [n.concat(/::/, n.lookahead(/(?!class\b)/)), h], + scope: { 2: "variable.constant" }, + }, + { match: [/::/, /class/], scope: { 2: "variable.language" } }, + { + match: [i, n.concat("::", n.lookahead(/(?!class\b)/))], + scope: { 1: "title.class" }, + }, + { + match: [i, /::/, /class/], + scope: { 1: "title.class", 3: "variable.language" }, + }, + ], + } + return { + case_insensitive: !1, + keywords: b, + contains: [ + e.HASH_COMMENT_MODE, + e.COMMENT("//", "$"), + e.COMMENT("/\\*", "\\*/", { + contains: [{ scope: "doctag", match: "@[A-Za-z]+" }], + }), + { + match: /__halt_compiler\(\);/, + keywords: "__halt_compiler", + starts: { + scope: "comment", + end: e.MATCH_NOTHING_RE, + contains: [{ match: /\?>/, scope: "meta", endsParent: !0 }], + }, + }, + { + scope: "meta", + variants: [ + { + begin: /<\?php/, + relevance: 10, + }, + { begin: /<\?[=]?/ }, + { begin: /\?>/ }, + ], + }, + { + scope: "variable.language", + match: /\$this\b/, + }, + r, + _, + f, + { + match: [/const/, /\s/, a, /\s*=/], + scope: { 1: "keyword", 3: "variable.constant" }, + }, + p, + { + scope: "function", + relevance: 0, + beginKeywords: "fn function", + end: /[;{]/, + excludeEnd: !0, + illegal: "[$%\\[]", + contains: [ + { beginKeywords: "use" }, + e.UNDERSCORE_TITLE_MODE, + { begin: "=>", endsParent: !0 }, + { + scope: "params", + begin: "\\(", + end: "\\)", + excludeBegin: !0, + excludeEnd: !0, + keywords: b, + contains: ["self", r, f, e.C_BLOCK_COMMENT_MODE, c, d], + }, + ], + }, + { + scope: "class", + variants: [ + { + beginKeywords: "enum", + illegal: /[($"]/, + }, + { beginKeywords: "class interface trait", illegal: /[:($"]/ }, + ], + relevance: 0, + end: /\{/, + excludeEnd: !0, + contains: [ + { + beginKeywords: "extends implements", + }, + e.UNDERSCORE_TITLE_MODE, + ], + }, + { + beginKeywords: "namespace", + relevance: 0, + end: ";", + illegal: /[.']/, + contains: [ + e.inherit(e.UNDERSCORE_TITLE_MODE, { scope: "title.class" }), + ], + }, + { + beginKeywords: "use", + relevance: 0, + end: ";", + contains: [ + { + match: /\b(as|const|function)\b/, + scope: "keyword", + }, + e.UNDERSCORE_TITLE_MODE, + ], + }, + c, + d, + ], + } + }, + grmr_php_template: (e) => ({ + name: "PHP template", + subLanguage: "xml", + contains: [ + { + begin: /<\?(php|=)?/, + end: /\?>/, + subLanguage: "php", + contains: [ + { begin: "/\\*", end: "\\*/", skip: !0 }, + { begin: 'b"', end: '"', skip: !0 }, + { begin: "b'", end: "'", skip: !0 }, + e.inherit(e.APOS_STRING_MODE, { + illegal: null, + className: null, + contains: null, + skip: !0, + }), + e.inherit(e.QUOTE_STRING_MODE, { + illegal: null, + className: null, + contains: null, + skip: !0, + }), + ], + }, + ], + }), + grmr_plaintext: (e) => ({ + name: "Plain text", + aliases: ["text", "txt"], + disableAutodetect: !0, + }), + grmr_python: (e) => { + const n = e.regex, + t = /[\p{XID_Start}_]\p{XID_Continue}*/u, + a = [ + "and", + "as", + "assert", + "async", + "await", + "break", + "class", + "continue", + "def", + "del", + "elif", + "else", + "except", + "finally", + "for", + "from", + "global", + "if", + "import", + "in", + "is", + "lambda", + "nonlocal|10", + "not", + "or", + "pass", + "raise", + "return", + "try", + "while", + "with", + "yield", + ], + i = { + $pattern: /[A-Za-z]\w+|__\w+__/, + keyword: a, + built_in: [ + "__import__", + "abs", + "all", + "any", + "ascii", + "bin", + "bool", + "breakpoint", + "bytearray", + "bytes", + "callable", + "chr", + "classmethod", + "compile", + "complex", + "delattr", + "dict", + "dir", + "divmod", + "enumerate", + "eval", + "exec", + "filter", + "float", + "format", + "frozenset", + "getattr", + "globals", + "hasattr", + "hash", + "help", + "hex", + "id", + "input", + "int", + "isinstance", + "issubclass", + "iter", + "len", + "list", + "locals", + "map", + "max", + "memoryview", + "min", + "next", + "object", + "oct", + "open", + "ord", + "pow", + "print", + "property", + "range", + "repr", + "reversed", + "round", + "set", + "setattr", + "slice", + "sorted", + "staticmethod", + "str", + "sum", + "super", + "tuple", + "type", + "vars", + "zip", + ], + literal: [ + "__debug__", + "Ellipsis", + "False", + "None", + "NotImplemented", + "True", + ], + type: [ + "Any", + "Callable", + "Coroutine", + "Dict", + "List", + "Literal", + "Generic", + "Optional", + "Sequence", + "Set", + "Tuple", + "Type", + "Union", + ], + }, + r = { className: "meta", begin: /^(>>>|\.\.\.) / }, + s = { + className: "subst", + begin: /\{/, + end: /\}/, + keywords: i, + illegal: /#/, + }, + o = { begin: /\{\{/, relevance: 0 }, + l = { + className: "string", + contains: [e.BACKSLASH_ESCAPE], + variants: [ + { + begin: /([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/, + end: /'''/, + contains: [e.BACKSLASH_ESCAPE, r], + relevance: 10, + }, + { + begin: /([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/, + end: /"""/, + contains: [e.BACKSLASH_ESCAPE, r], + relevance: 10, + }, + { + begin: /([fF][rR]|[rR][fF]|[fF])'''/, + end: /'''/, + contains: [e.BACKSLASH_ESCAPE, r, o, s], + }, + { + begin: /([fF][rR]|[rR][fF]|[fF])"""/, + end: /"""/, + contains: [e.BACKSLASH_ESCAPE, r, o, s], + }, + { begin: /([uU]|[rR])'/, end: /'/, relevance: 10 }, + { begin: /([uU]|[rR])"/, end: /"/, relevance: 10 }, + { + begin: /([bB]|[bB][rR]|[rR][bB])'/, + end: /'/, + }, + { begin: /([bB]|[bB][rR]|[rR][bB])"/, end: /"/ }, + { + begin: /([fF][rR]|[rR][fF]|[fF])'/, + end: /'/, + contains: [e.BACKSLASH_ESCAPE, o, s], + }, + { + begin: /([fF][rR]|[rR][fF]|[fF])"/, + end: /"/, + contains: [e.BACKSLASH_ESCAPE, o, s], + }, + e.APOS_STRING_MODE, + e.QUOTE_STRING_MODE, + ], + }, + c = "[0-9](_?[0-9])*", + d = `(\\b(${c}))?\\.(${c})|\\b(${c})\\.`, + g = "\\b|" + a.join("|"), + u = { + className: "number", + relevance: 0, + variants: [ + { + begin: `(\\b(${c})|(${d}))[eE][+-]?(${c})[jJ]?(?=${g})`, + }, + { begin: `(${d})[jJ]?` }, + { + begin: `\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?(?=${g})`, + }, + { + begin: `\\b0[bB](_?[01])+[lL]?(?=${g})`, + }, + { begin: `\\b0[oO](_?[0-7])+[lL]?(?=${g})` }, + { begin: `\\b0[xX](_?[0-9a-fA-F])+[lL]?(?=${g})` }, + { begin: `\\b(${c})[jJ](?=${g})` }, + ], + }, + b = { + className: "comment", + begin: n.lookahead(/# type:/), + end: /$/, + keywords: i, + contains: [ + { begin: /# type:/ }, + { begin: /#/, end: /\b\B/, endsWithParent: !0 }, + ], + }, + m = { + className: "params", + variants: [ + { className: "", begin: /\(\s*\)/, skip: !0 }, + { + begin: /\(/, + end: /\)/, + excludeBegin: !0, + excludeEnd: !0, + keywords: i, + contains: ["self", r, u, l, e.HASH_COMMENT_MODE], + }, + ], + } + return ( + (s.contains = [l, u, r]), + { + name: "Python", + aliases: ["py", "gyp", "ipython"], + unicodeRegex: !0, + keywords: i, + illegal: /(<\/|->|\?)|=>/, + contains: [ + r, + u, + { begin: /\bself\b/ }, + { beginKeywords: "if", relevance: 0 }, + l, + b, + e.HASH_COMMENT_MODE, + { + match: [/\bdef/, /\s+/, t], + scope: { + 1: "keyword", + 3: "title.function", + }, + contains: [m], + }, + { + variants: [ + { + match: [/\bclass/, /\s+/, t, /\s*/, /\(\s*/, t, /\s*\)/], + }, + { match: [/\bclass/, /\s+/, t] }, + ], + scope: { + 1: "keyword", + 3: "title.class", + 6: "title.class.inherited", + }, + }, + { + className: "meta", + begin: /^[\t ]*@/, + end: /(?=#)|$/, + contains: [u, m, l], + }, + ], + } + ) + }, + grmr_python_repl: (e) => ({ + aliases: ["pycon"], + contains: [ + { + className: "meta", + starts: { + end: / |$/, + starts: { end: "$", subLanguage: "python" }, + }, + variants: [ + { + begin: /^>>>(?=[ ]|$)/, + }, + { begin: /^\.\.\.(?=[ ]|$)/ }, + ], + }, + ], + }), + grmr_r: (e) => { + const n = e.regex, + t = /(?:(?:[a-zA-Z]|\.[._a-zA-Z])[._a-zA-Z0-9]*)|\.(?!\d)/, + a = n.either( + /0[xX][0-9a-fA-F]+\.[0-9a-fA-F]*[pP][+-]?\d+i?/, + /0[xX][0-9a-fA-F]+(?:[pP][+-]?\d+)?[Li]?/, + /(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?[Li]?/ + ), + i = /[=!<>:]=|\|\||&&|:::?|<-|<<-|->>|->|\|>|[-+*\/?!$&|:<=>@^~]|\*\*/, + r = n.either(/[()]/, /[{}]/, /\[\[/, /[[\]]/, /\\/, /,/) + return { + name: "R", + keywords: { + $pattern: t, + keyword: "function if in break next repeat else for while", + literal: + "NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10", + built_in: + "LETTERS letters month.abb month.name pi T F abs acos acosh all any anyNA Arg as.call as.character as.complex as.double as.environment as.integer as.logical as.null.default as.numeric as.raw asin asinh atan atanh attr attributes baseenv browser c call ceiling class Conj cos cosh cospi cummax cummin cumprod cumsum digamma dim dimnames emptyenv exp expression floor forceAndCall gamma gc.time globalenv Im interactive invisible is.array is.atomic is.call is.character is.complex is.double is.environment is.expression is.finite is.function is.infinite is.integer is.language is.list is.logical is.matrix is.na is.name is.nan is.null is.numeric is.object is.pairlist is.raw is.recursive is.single is.symbol lazyLoadDBfetch length lgamma list log max min missing Mod names nargs nzchar oldClass on.exit pos.to.env proc.time prod quote range Re rep retracemem return round seq_along seq_len seq.int sign signif sin sinh sinpi sqrt standardGeneric substitute sum switch tan tanh tanpi tracemem trigamma trunc unclass untracemem UseMethod xtfrm", + }, + contains: [ + e.COMMENT(/#'/, /$/, { + contains: [ + { + scope: "doctag", + match: /@examples/, + starts: { + end: n.lookahead( + n.either(/\n^#'\s*(?=@[a-zA-Z]+)/, /\n^(?!#')/) + ), + endsParent: !0, + }, + }, + { + scope: "doctag", + begin: "@param", + end: /$/, + contains: [ + { + scope: "variable", + variants: [{ match: t }, { match: /`(?:\\.|[^`\\])+`/ }], + endsParent: !0, + }, + ], + }, + { scope: "doctag", match: /@[a-zA-Z]+/ }, + { scope: "keyword", match: /\\[a-zA-Z]+/ }, + ], + }), + e.HASH_COMMENT_MODE, + { + scope: "string", + contains: [e.BACKSLASH_ESCAPE], + variants: [ + e.END_SAME_AS_BEGIN({ begin: /[rR]"(-*)\(/, end: /\)(-*)"/ }), + e.END_SAME_AS_BEGIN({ begin: /[rR]"(-*)\{/, end: /\}(-*)"/ }), + e.END_SAME_AS_BEGIN({ begin: /[rR]"(-*)\[/, end: /\](-*)"/ }), + e.END_SAME_AS_BEGIN({ begin: /[rR]'(-*)\(/, end: /\)(-*)'/ }), + e.END_SAME_AS_BEGIN({ begin: /[rR]'(-*)\{/, end: /\}(-*)'/ }), + e.END_SAME_AS_BEGIN({ begin: /[rR]'(-*)\[/, end: /\](-*)'/ }), + { begin: '"', end: '"', relevance: 0 }, + { begin: "'", end: "'", relevance: 0 }, + ], + }, + { + relevance: 0, + variants: [ + { + scope: { + 1: "operator", + 2: "number", + }, + match: [i, a], + }, + { scope: { 1: "operator", 2: "number" }, match: [/%[^%]*%/, a] }, + { scope: { 1: "punctuation", 2: "number" }, match: [r, a] }, + { + scope: { + 2: "number", + }, + match: [/[^a-zA-Z0-9._]|^/, a], + }, + ], + }, + { scope: { 3: "operator" }, match: [t, /\s+/, /<-/, /\s+/] }, + { + scope: "operator", + relevance: 0, + variants: [ + { match: i }, + { + match: /%[^%]*%/, + }, + ], + }, + { scope: "punctuation", relevance: 0, match: r }, + { begin: "`", end: "`", contains: [{ begin: /\\./ }] }, + ], + } + }, + grmr_ruby: (e) => { + const n = e.regex, + t = + "([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)", + a = { + keyword: + "and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor __FILE__", + built_in: "proc lambda", + literal: "true false nil", + }, + i = { className: "doctag", begin: "@[A-Za-z]+" }, + r = { begin: "#<", end: ">" }, + s = [ + e.COMMENT("#", "$", { contains: [i] }), + e.COMMENT("^=begin", "^=end", { contains: [i], relevance: 10 }), + e.COMMENT("^__END__", "\\n$"), + ], + o = { className: "subst", begin: /#\{/, end: /\}/, keywords: a }, + l = { + className: "string", + contains: [e.BACKSLASH_ESCAPE, o], + variants: [ + { + begin: /'/, + end: /'/, + }, + { begin: /"/, end: /"/ }, + { begin: /`/, end: /`/ }, + { begin: /%[qQwWx]?\(/, end: /\)/ }, + { begin: /%[qQwWx]?\[/, end: /\]/ }, + { begin: /%[qQwWx]?\{/, end: /\}/ }, + { + begin: /%[qQwWx]?/, + }, + { begin: /%[qQwWx]?\//, end: /\// }, + { begin: /%[qQwWx]?%/, end: /%/ }, + { begin: /%[qQwWx]?-/, end: /-/ }, + { begin: /%[qQwWx]?\|/, end: /\|/ }, + { + begin: /\B\?(\\\d{1,3})/, + }, + { begin: /\B\?(\\x[A-Fa-f0-9]{1,2})/ }, + { + begin: /\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/, + }, + { + begin: /\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/, + }, + { + begin: /\B\?\\(c|C-)[\x20-\x7e]/, + }, + { begin: /\B\?\\?\S/ }, + { + begin: n.concat( + /<<[-~]?'?/, + n.lookahead(/(\w+)(?=\W)[^\n]*\n(?:[^\n]*\n)*?\s*\1\b/) + ), + contains: [ + e.END_SAME_AS_BEGIN({ + begin: /(\w+)/, + end: /(\w+)/, + contains: [e.BACKSLASH_ESCAPE, o], + }), + ], + }, + ], + }, + c = "[0-9](_?[0-9])*", + d = { + className: "number", + relevance: 0, + variants: [ + { + begin: `\\b([1-9](_?[0-9])*|0)(\\.(${c}))?([eE][+-]?(${c})|r)?i?\\b`, + }, + { + begin: "\\b0[dD][0-9](_?[0-9])*r?i?\\b", + }, + { begin: "\\b0[bB][0-1](_?[0-1])*r?i?\\b" }, + { begin: "\\b0[oO][0-7](_?[0-7])*r?i?\\b" }, + { + begin: "\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b", + }, + { + begin: "\\b0(_?[0-7])+r?i?\\b", + }, + ], + }, + g = { + className: "params", + begin: "\\(", + end: "\\)", + endsParent: !0, + keywords: a, + }, + u = [ + l, + { + className: "class", + beginKeywords: "class module", + end: "$|;", + illegal: /=/, + contains: [ + e.inherit(e.TITLE_MODE, { + begin: "[A-Za-z_]\\w*(::\\w+)*(\\?|!)?", + }), + { + begin: "<\\s*", + contains: [ + { + begin: "(" + e.IDENT_RE + "::)?" + e.IDENT_RE, + relevance: 0, + }, + ], + }, + ].concat(s), + }, + { + className: "function", + begin: n.concat(/def\s+/, n.lookahead(t + "\\s*(\\(|;|$)")), + relevance: 0, + keywords: "def", + end: "$|;", + contains: [e.inherit(e.TITLE_MODE, { begin: t }), g].concat(s), + }, + { begin: e.IDENT_RE + "::" }, + { + className: "symbol", + begin: e.UNDERSCORE_IDENT_RE + "(!|\\?)?:", + relevance: 0, + }, + { + className: "symbol", + begin: ":(?!\\s)", + contains: [l, { begin: t }], + relevance: 0, + }, + d, + { + className: "variable", + begin: "(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])", + }, + { + className: "params", + begin: /\|/, + end: /\|/, + relevance: 0, + keywords: a, + }, + { + begin: "(" + e.RE_STARTERS_RE + "|unless)\\s*", + keywords: "unless", + contains: [ + { + className: "regexp", + contains: [e.BACKSLASH_ESCAPE, o], + illegal: /\n/, + variants: [ + { + begin: "/", + end: "/[a-z]*", + }, + { begin: /%r\{/, end: /\}[a-z]*/ }, + { begin: "%r\\(", end: "\\)[a-z]*" }, + { begin: "%r!", end: "![a-z]*" }, + { begin: "%r\\[", end: "\\][a-z]*" }, + ], + }, + ].concat(r, s), + relevance: 0, + }, + ].concat(r, s) + ;(o.contains = u), (g.contains = u) + const b = [ + { + begin: /^\s*=>/, + starts: { end: "$", contains: u }, + }, + { + className: "meta", + begin: + "^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+>|(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>)(?=[ ])", + starts: { end: "$", contains: u }, + }, + ] + return ( + s.unshift(r), + { + name: "Ruby", + aliases: ["rb", "gemspec", "podspec", "thor", "irb"], + keywords: a, + illegal: /\/\*/, + contains: [e.SHEBANG({ binary: "ruby" })] + .concat(b) + .concat(s) + .concat(u), + } + ) + }, + grmr_rust: (e) => { + const n = e.regex, + t = { + className: "title.function.invoke", + relevance: 0, + begin: n.concat(/\b/, /(?!let\b)/, e.IDENT_RE, n.lookahead(/\s*\(/)), + }, + a = "([ui](8|16|32|64|128|size)|f(32|64))?", + i = [ + "drop ", + "Copy", + "Send", + "Sized", + "Sync", + "Drop", + "Fn", + "FnMut", + "FnOnce", + "ToOwned", + "Clone", + "Debug", + "PartialEq", + "PartialOrd", + "Eq", + "Ord", + "AsRef", + "AsMut", + "Into", + "From", + "Default", + "Iterator", + "Extend", + "IntoIterator", + "DoubleEndedIterator", + "ExactSizeIterator", + "SliceConcatExt", + "ToString", + "assert!", + "assert_eq!", + "bitflags!", + "bytes!", + "cfg!", + "col!", + "concat!", + "concat_idents!", + "debug_assert!", + "debug_assert_eq!", + "env!", + "panic!", + "file!", + "format!", + "format_args!", + "include_bin!", + "include_str!", + "line!", + "local_data_key!", + "module_path!", + "option_env!", + "print!", + "println!", + "select!", + "stringify!", + "try!", + "unimplemented!", + "unreachable!", + "vec!", + "write!", + "writeln!", + "macro_rules!", + "assert_ne!", + "debug_assert_ne!", + ] + return { + name: "Rust", + aliases: ["rs"], + keywords: { + $pattern: e.IDENT_RE + "!?", + type: [ + "i8", + "i16", + "i32", + "i64", + "i128", + "isize", + "u8", + "u16", + "u32", + "u64", + "u128", + "usize", + "f32", + "f64", + "str", + "char", + "bool", + "Box", + "Option", + "Result", + "String", + "Vec", + ], + keyword: [ + "abstract", + "as", + "async", + "await", + "become", + "box", + "break", + "const", + "continue", + "crate", + "do", + "dyn", + "else", + "enum", + "extern", + "false", + "final", + "fn", + "for", + "if", + "impl", + "in", + "let", + "loop", + "macro", + "match", + "mod", + "move", + "mut", + "override", + "priv", + "pub", + "ref", + "return", + "self", + "Self", + "static", + "struct", + "super", + "trait", + "true", + "try", + "type", + "typeof", + "unsafe", + "unsized", + "use", + "virtual", + "where", + "while", + "yield", + ], + literal: ["true", "false", "Some", "None", "Ok", "Err"], + built_in: i, + }, + illegal: "" }, + t, + ], + } + }, + grmr_scss: (e) => { + const n = te(e), + t = se, + a = re, + i = "@[a-z-]+", + r = { className: "variable", begin: "(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b" } + return { + name: "SCSS", + case_insensitive: !0, + illegal: "[=/|']", + contains: [ + e.C_LINE_COMMENT_MODE, + e.C_BLOCK_COMMENT_MODE, + n.CSS_NUMBER_MODE, + { + className: "selector-id", + begin: "#[A-Za-z0-9_-]+", + relevance: 0, + }, + { + className: "selector-class", + begin: "\\.[A-Za-z0-9_-]+", + relevance: 0, + }, + n.ATTRIBUTE_SELECTOR_MODE, + { + className: "selector-tag", + begin: "\\b(" + ae.join("|") + ")\\b", + relevance: 0, + }, + { className: "selector-pseudo", begin: ":(" + a.join("|") + ")" }, + { className: "selector-pseudo", begin: ":(:)?(" + t.join("|") + ")" }, + r, + { begin: /\(/, end: /\)/, contains: [n.CSS_NUMBER_MODE] }, + n.CSS_VARIABLE, + { className: "attribute", begin: "\\b(" + oe.join("|") + ")\\b" }, + { + begin: + "\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b", + }, + { + begin: /:/, + end: /[;}{]/, + contains: [ + n.BLOCK_COMMENT, + r, + n.HEXCOLOR, + n.CSS_NUMBER_MODE, + e.QUOTE_STRING_MODE, + e.APOS_STRING_MODE, + n.IMPORTANT, + ], + }, + { + begin: "@(page|font-face)", + keywords: { $pattern: i, keyword: "@page @font-face" }, + }, + { + begin: "@", + end: "[{;]", + returnBegin: !0, + keywords: { + $pattern: /[a-z-]+/, + keyword: "and or not only", + attribute: ie.join(" "), + }, + contains: [ + { begin: i, className: "keyword" }, + { begin: /[a-z-]+(?=:)/, className: "attribute" }, + r, + e.QUOTE_STRING_MODE, + e.APOS_STRING_MODE, + n.HEXCOLOR, + n.CSS_NUMBER_MODE, + ], + }, + n.FUNCTION_DISPATCH, + ], + } + }, + grmr_shell: (e) => ({ + name: "Shell Session", + aliases: ["console", "shellsession"], + contains: [ + { + className: "meta", + begin: /^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/, + starts: { end: /[^\\](?=\s*$)/, subLanguage: "bash" }, + }, + ], + }), + grmr_sql: (e) => { + const n = e.regex, + t = e.COMMENT("--", "$"), + a = ["true", "false", "unknown"], + i = [ + "bigint", + "binary", + "blob", + "boolean", + "char", + "character", + "clob", + "date", + "dec", + "decfloat", + "decimal", + "float", + "int", + "integer", + "interval", + "nchar", + "nclob", + "national", + "numeric", + "real", + "row", + "smallint", + "time", + "timestamp", + "varchar", + "varying", + "varbinary", + ], + r = [ + "abs", + "acos", + "array_agg", + "asin", + "atan", + "avg", + "cast", + "ceil", + "ceiling", + "coalesce", + "corr", + "cos", + "cosh", + "count", + "covar_pop", + "covar_samp", + "cume_dist", + "dense_rank", + "deref", + "element", + "exp", + "extract", + "first_value", + "floor", + "json_array", + "json_arrayagg", + "json_exists", + "json_object", + "json_objectagg", + "json_query", + "json_table", + "json_table_primitive", + "json_value", + "lag", + "last_value", + "lead", + "listagg", + "ln", + "log", + "log10", + "lower", + "max", + "min", + "mod", + "nth_value", + "ntile", + "nullif", + "percent_rank", + "percentile_cont", + "percentile_disc", + "position", + "position_regex", + "power", + "rank", + "regr_avgx", + "regr_avgy", + "regr_count", + "regr_intercept", + "regr_r2", + "regr_slope", + "regr_sxx", + "regr_sxy", + "regr_syy", + "row_number", + "sin", + "sinh", + "sqrt", + "stddev_pop", + "stddev_samp", + "substring", + "substring_regex", + "sum", + "tan", + "tanh", + "translate", + "translate_regex", + "treat", + "trim", + "trim_array", + "unnest", + "upper", + "value_of", + "var_pop", + "var_samp", + "width_bucket", + ], + s = [ + "create table", + "insert into", + "primary key", + "foreign key", + "not null", + "alter table", + "add constraint", + "grouping sets", + "on overflow", + "character set", + "respect nulls", + "ignore nulls", + "nulls first", + "nulls last", + "depth first", + "breadth first", + ], + o = r, + l = [ + "abs", + "acos", + "all", + "allocate", + "alter", + "and", + "any", + "are", + "array", + "array_agg", + "array_max_cardinality", + "as", + "asensitive", + "asin", + "asymmetric", + "at", + "atan", + "atomic", + "authorization", + "avg", + "begin", + "begin_frame", + "begin_partition", + "between", + "bigint", + "binary", + "blob", + "boolean", + "both", + "by", + "call", + "called", + "cardinality", + "cascaded", + "case", + "cast", + "ceil", + "ceiling", + "char", + "char_length", + "character", + "character_length", + "check", + "classifier", + "clob", + "close", + "coalesce", + "collate", + "collect", + "column", + "commit", + "condition", + "connect", + "constraint", + "contains", + "convert", + "copy", + "corr", + "corresponding", + "cos", + "cosh", + "count", + "covar_pop", + "covar_samp", + "create", + "cross", + "cube", + "cume_dist", + "current", + "current_catalog", + "current_date", + "current_default_transform_group", + "current_path", + "current_role", + "current_row", + "current_schema", + "current_time", + "current_timestamp", + "current_path", + "current_role", + "current_transform_group_for_type", + "current_user", + "cursor", + "cycle", + "date", + "day", + "deallocate", + "dec", + "decimal", + "decfloat", + "declare", + "default", + "define", + "delete", + "dense_rank", + "deref", + "describe", + "deterministic", + "disconnect", + "distinct", + "double", + "drop", + "dynamic", + "each", + "element", + "else", + "empty", + "end", + "end_frame", + "end_partition", + "end-exec", + "equals", + "escape", + "every", + "except", + "exec", + "execute", + "exists", + "exp", + "external", + "extract", + "false", + "fetch", + "filter", + "first_value", + "float", + "floor", + "for", + "foreign", + "frame_row", + "free", + "from", + "full", + "function", + "fusion", + "get", + "global", + "grant", + "group", + "grouping", + "groups", + "having", + "hold", + "hour", + "identity", + "in", + "indicator", + "initial", + "inner", + "inout", + "insensitive", + "insert", + "int", + "integer", + "intersect", + "intersection", + "interval", + "into", + "is", + "join", + "json_array", + "json_arrayagg", + "json_exists", + "json_object", + "json_objectagg", + "json_query", + "json_table", + "json_table_primitive", + "json_value", + "lag", + "language", + "large", + "last_value", + "lateral", + "lead", + "leading", + "left", + "like", + "like_regex", + "listagg", + "ln", + "local", + "localtime", + "localtimestamp", + "log", + "log10", + "lower", + "match", + "match_number", + "match_recognize", + "matches", + "max", + "member", + "merge", + "method", + "min", + "minute", + "mod", + "modifies", + "module", + "month", + "multiset", + "national", + "natural", + "nchar", + "nclob", + "new", + "no", + "none", + "normalize", + "not", + "nth_value", + "ntile", + "null", + "nullif", + "numeric", + "octet_length", + "occurrences_regex", + "of", + "offset", + "old", + "omit", + "on", + "one", + "only", + "open", + "or", + "order", + "out", + "outer", + "over", + "overlaps", + "overlay", + "parameter", + "partition", + "pattern", + "per", + "percent", + "percent_rank", + "percentile_cont", + "percentile_disc", + "period", + "portion", + "position", + "position_regex", + "power", + "precedes", + "precision", + "prepare", + "primary", + "procedure", + "ptf", + "range", + "rank", + "reads", + "real", + "recursive", + "ref", + "references", + "referencing", + "regr_avgx", + "regr_avgy", + "regr_count", + "regr_intercept", + "regr_r2", + "regr_slope", + "regr_sxx", + "regr_sxy", + "regr_syy", + "release", + "result", + "return", + "returns", + "revoke", + "right", + "rollback", + "rollup", + "row", + "row_number", + "rows", + "running", + "savepoint", + "scope", + "scroll", + "search", + "second", + "seek", + "select", + "sensitive", + "session_user", + "set", + "show", + "similar", + "sin", + "sinh", + "skip", + "smallint", + "some", + "specific", + "specifictype", + "sql", + "sqlexception", + "sqlstate", + "sqlwarning", + "sqrt", + "start", + "static", + "stddev_pop", + "stddev_samp", + "submultiset", + "subset", + "substring", + "substring_regex", + "succeeds", + "sum", + "symmetric", + "system", + "system_time", + "system_user", + "table", + "tablesample", + "tan", + "tanh", + "then", + "time", + "timestamp", + "timezone_hour", + "timezone_minute", + "to", + "trailing", + "translate", + "translate_regex", + "translation", + "treat", + "trigger", + "trim", + "trim_array", + "true", + "truncate", + "uescape", + "union", + "unique", + "unknown", + "unnest", + "update", + "upper", + "user", + "using", + "value", + "values", + "value_of", + "var_pop", + "var_samp", + "varbinary", + "varchar", + "varying", + "versioning", + "when", + "whenever", + "where", + "width_bucket", + "window", + "with", + "within", + "without", + "year", + "add", + "asc", + "collation", + "desc", + "final", + "first", + "last", + "view", + ].filter((e) => !r.includes(e)), + c = { + begin: n.concat(/\b/, n.either(...o), /\s*\(/), + relevance: 0, + keywords: { built_in: o }, + } + return { + name: "SQL", + case_insensitive: !0, + illegal: /[{}]|<\//, + keywords: { + $pattern: /\b[\w\.]+/, + keyword: ((e, { exceptions: n, when: t } = {}) => { + const a = t + return ( + (n = n || []), + e.map((e) => + e.match(/\|\d+$/) || n.includes(e) ? e : a(e) ? e + "|0" : e + ) + ) + })(l, { when: (e) => e.length < 3 }), + literal: a, + type: i, + built_in: [ + "current_catalog", + "current_date", + "current_default_transform_group", + "current_path", + "current_role", + "current_schema", + "current_transform_group_for_type", + "current_user", + "session_user", + "system_time", + "system_user", + "current_time", + "localtime", + "current_timestamp", + "localtimestamp", + ], + }, + contains: [ + { + begin: n.either(...s), + relevance: 0, + keywords: { + $pattern: /[\w\.]+/, + keyword: l.concat(s), + literal: a, + type: i, + }, + }, + { + className: "type", + begin: n.either( + "double precision", + "large object", + "with timezone", + "without timezone" + ), + }, + c, + { className: "variable", begin: /@[a-z0-9]+/ }, + { + className: "string", + variants: [ + { + begin: /'/, + end: /'/, + contains: [{ begin: /''/ }], + }, + ], + }, + { + begin: /"/, + end: /"/, + contains: [ + { + begin: /""/, + }, + ], + }, + e.C_NUMBER_MODE, + e.C_BLOCK_COMMENT_MODE, + t, + { + className: "operator", + begin: /[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/, + relevance: 0, + }, + ], + } + }, + grmr_swift: (e) => { + const n = { match: /\s+/, relevance: 0 }, + t = e.COMMENT("/\\*", "\\*/", { + contains: ["self"], + }), + a = [e.C_LINE_COMMENT_MODE, t], + i = { match: [/\./, p(...ve, ...Oe)], className: { 2: "keyword" } }, + r = { match: m(/\./, p(...Me)), relevance: 0 }, + s = Me.filter((e) => "string" == typeof e).concat(["_|0"]), + o = { + variants: [ + { + className: "keyword", + match: p( + ...Me.filter((e) => "string" != typeof e) + .concat(xe) + .map(we), + ...Oe + ), + }, + ], + }, + l = { + $pattern: p(/\b\w+/, /#\w+/), + keyword: s.concat(Ae), + literal: ke, + }, + c = [i, r, o], + d = [ + { + match: m(/\./, p(...Ce)), + relevance: 0, + }, + { className: "built_in", match: m(/\b/, p(...Ce), /(?=\()/) }, + ], + u = { match: /->/, relevance: 0 }, + b = [ + u, + { + className: "operator", + relevance: 0, + variants: [{ match: De }, { match: `\\.(\\.|${Re})+` }], + }, + ], + _ = "([0-9a-fA-F]_*)+", + h = { + className: "number", + relevance: 0, + variants: [ + { + match: + "\\b(([0-9]_*)+)(\\.(([0-9]_*)+))?([eE][+-]?(([0-9]_*)+))?\\b", + }, + { + match: `\\b0x(${_})(\\.(${_}))?([pP][+-]?(([0-9]_*)+))?\\b`, + }, + { + match: /\b0o([0-7]_*)+\b/, + }, + { match: /\b0b([01]_*)+\b/ }, + ], + }, + f = (e = "") => ({ + className: "subst", + variants: [ + { match: m(/\\/, e, /[0\\tnr"']/) }, + { + match: m(/\\/, e, /u\{[0-9a-fA-F]{1,8}\}/), + }, + ], + }), + E = (e = "") => ({ + className: "subst", + match: m(/\\/, e, /[\t ]*(?:[\r\n]|\r\n)/), + }), + y = (e = "") => ({ + className: "subst", + label: "interpol", + begin: m(/\\/, e, /\(/), + end: /\)/, + }), + N = (e = "") => ({ + begin: m(e, /"""/), + end: m(/"""/, e), + contains: [f(e), E(e), y(e)], + }), + w = (e = "") => ({ + begin: m(e, /"/), + end: m(/"/, e), + contains: [f(e), y(e)], + }), + v = { + className: "string", + variants: [ + N(), + N("#"), + N("##"), + N("###"), + w(), + w("#"), + w("##"), + w("###"), + ], + }, + O = { + match: m(/`/, Be, /`/), + }, + x = [ + O, + { className: "variable", match: /\$\d+/ }, + { + className: "variable", + match: `\\$${Le}+`, + }, + ], + M = [ + { + match: /(@|#(un)?)available/, + className: "keyword", + starts: { + contains: [ + { + begin: /\(/, + end: /\)/, + keywords: ze, + contains: [...b, h, v], + }, + ], + }, + }, + { className: "keyword", match: m(/@/, p(...Fe)) }, + { + className: "meta", + match: m(/@/, Be), + }, + ], + k = { + match: g(/\b[A-Z]/), + relevance: 0, + contains: [ + { + className: "type", + match: m( + /(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/, + Le, + "+" + ), + }, + { className: "type", match: $e, relevance: 0 }, + { match: /[?!]+/, relevance: 0 }, + { + match: /\.\.\./, + relevance: 0, + }, + { match: m(/\s+&\s+/, g($e)), relevance: 0 }, + ], + }, + S = { + begin: //, + keywords: l, + contains: [...a, ...c, ...M, u, k], + } + k.contains.push(S) + const A = { + begin: /\(/, + end: /\)/, + relevance: 0, + keywords: l, + contains: [ + "self", + { + match: m(Be, /\s*:/), + keywords: "_|0", + relevance: 0, + }, + ...a, + ...c, + ...d, + ...b, + h, + v, + ...x, + ...M, + k, + ], + }, + C = { begin: //, contains: [...a, k] }, + T = { + begin: /\(/, + end: /\)/, + keywords: l, + contains: [ + { + begin: p(g(m(Be, /\s*:/)), g(m(Be, /\s+/, Be, /\s*:/))), + end: /:/, + relevance: 0, + contains: [ + { className: "keyword", match: /\b_\b/ }, + { className: "params", match: Be }, + ], + }, + ...a, + ...c, + ...b, + h, + v, + ...M, + k, + A, + ], + endsParent: !0, + illegal: /["']/, + }, + R = { + match: [/func/, /\s+/, p(O.match, Be, De)], + className: { 1: "keyword", 3: "title.function" }, + contains: [C, T, n], + illegal: [/\[/, /%/], + }, + D = { + match: [/\b(?:subscript|init[?!]?)/, /\s*(?=[<(])/], + className: { 1: "keyword" }, + contains: [C, T, n], + illegal: /\[|%/, + }, + I = { + match: [/operator/, /\s+/, De], + className: { + 1: "keyword", + 3: "title", + }, + }, + L = { + begin: [/precedencegroup/, /\s+/, $e], + className: { + 1: "keyword", + 3: "title", + }, + contains: [k], + keywords: [...Se, ...ke], + end: /}/, + } + for (const e of v.variants) { + const n = e.contains.find((e) => "interpol" === e.label) + n.keywords = l + const t = [...c, ...d, ...b, h, v, ...x] + n.contains = [ + ...t, + { begin: /\(/, end: /\)/, contains: ["self", ...t] }, + ] + } + return { + name: "Swift", + keywords: l, + contains: [ + ...a, + R, + D, + { + beginKeywords: "struct protocol class extension enum actor", + end: "\\{", + excludeEnd: !0, + keywords: l, + contains: [ + e.inherit(e.TITLE_MODE, { + className: "title.class", + begin: /[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/, + }), + ...c, + ], + }, + I, + L, + { beginKeywords: "import", end: /$/, contains: [...a], relevance: 0 }, + ...c, + ...d, + ...b, + h, + v, + ...x, + ...M, + k, + A, + ], + } + }, + grmr_typescript: (e) => { + const n = Ne(e), + t = [ + "any", + "void", + "number", + "boolean", + "string", + "object", + "never", + "enum", + ], + a = { + beginKeywords: "namespace", + end: /\{/, + excludeEnd: !0, + contains: [n.exports.CLASS_REFERENCE], + }, + i = { + beginKeywords: "interface", + end: /\{/, + excludeEnd: !0, + keywords: { keyword: "interface extends", built_in: t }, + contains: [n.exports.CLASS_REFERENCE], + }, + r = { + $pattern: be, + keyword: me.concat([ + "type", + "namespace", + "typedef", + "interface", + "public", + "private", + "protected", + "implements", + "declare", + "abstract", + "readonly", + ]), + literal: pe, + built_in: ye.concat(t), + "variable.language": Ee, + }, + s = { className: "meta", begin: "@[A-Za-z$_][0-9A-Za-z$_]*" }, + o = (e, n, t) => { + const a = e.contains.findIndex((e) => e.label === n) + if (-1 === a) throw Error("can not find mode to replace") + e.contains.splice(a, 1, t) + } + return ( + Object.assign(n.keywords, r), + n.exports.PARAMS_CONTAINS.push(s), + (n.contains = n.contains.concat([s, a, i])), + o(n, "shebang", e.SHEBANG()), + o(n, "use_strict", { + className: "meta", + relevance: 10, + begin: /^\s*['"]use strict['"]/, + }), + (n.contains.find((e) => "func.def" === e.label).relevance = 0), + Object.assign(n, { + name: "TypeScript", + aliases: ["ts", "tsx"], + }), + n + ) + }, + grmr_vbnet: (e) => { + const n = e.regex, + t = /\d{1,2}\/\d{1,2}\/\d{4}/, + a = /\d{4}-\d{1,2}-\d{1,2}/, + i = /(\d|1[012])(:\d+){0,2} *(AM|PM)/, + r = /\d{1,2}(:\d{1,2}){1,2}/, + s = { + className: "literal", + variants: [ + { begin: n.concat(/# */, n.either(a, t), / *#/) }, + { + begin: n.concat(/# */, r, / *#/), + }, + { begin: n.concat(/# */, i, / *#/) }, + { + begin: n.concat( + /# */, + n.either(a, t), + / +/, + n.either(i, r), + / *#/ + ), + }, + ], + }, + o = e.COMMENT(/'''/, /$/, { + contains: [{ className: "doctag", begin: /<\/?/, end: />/ }], + }), + l = e.COMMENT(null, /$/, { + variants: [{ begin: /'/ }, { begin: /([\t ]|^)REM(?=\s)/ }], + }) + return { + name: "Visual Basic .NET", + aliases: ["vb"], + case_insensitive: !0, + classNameAliases: { label: "symbol" }, + keywords: { + keyword: + "addhandler alias aggregate ansi as async assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into iterator join key let lib loop me mid module mustinherit mustoverride mybase myclass namespace narrowing new next notinheritable notoverridable of off on operator option optional order overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly yield", + built_in: + "addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort", + type: "boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort", + literal: "true false nothing", + }, + illegal: "//|\\{|\\}|endif|gosub|variant|wend|^\\$ ", + contains: [ + { + className: "string", + begin: /"(""|[^/n])"C\b/, + }, + { + className: "string", + begin: /"/, + end: /"/, + illegal: /\n/, + contains: [{ begin: /""/ }], + }, + s, + { + className: "number", + relevance: 0, + variants: [ + { + begin: + /\b\d[\d_]*((\.[\d_]+(E[+-]?[\d_]+)?)|(E[+-]?[\d_]+))[RFD@!#]?/, + }, + { begin: /\b\d[\d_]*((U?[SIL])|[%&])?/ }, + { begin: /&H[\dA-F_]+((U?[SIL])|[%&])?/ }, + { + begin: /&O[0-7_]+((U?[SIL])|[%&])?/, + }, + { begin: /&B[01_]+((U?[SIL])|[%&])?/ }, + ], + }, + { + className: "label", + begin: /^\w+:/, + }, + o, + l, + { + className: "meta", + begin: + /[\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\b/, + end: /$/, + keywords: { + keyword: + "const disable else elseif enable end externalsource if region then", + }, + contains: [l], + }, + ], + } + }, + grmr_yaml: (e) => { + const n = "true false yes no null", + t = "[\\w#;/?:@&=+$,.~*'()[\\]]+", + a = { + className: "string", + relevance: 0, + variants: [ + { begin: /'/, end: /'/ }, + { begin: /"/, end: /"/ }, + { begin: /\S+/ }, + ], + contains: [ + e.BACKSLASH_ESCAPE, + { + className: "template-variable", + variants: [ + { begin: /\{\{/, end: /\}\}/ }, + { begin: /%\{/, end: /\}/ }, + ], + }, + ], + }, + i = e.inherit(a, { + variants: [ + { begin: /'/, end: /'/ }, + { begin: /"/, end: /"/ }, + { begin: /[^\s,{}[\]]+/ }, + ], + }), + r = { + end: ",", + endsWithParent: !0, + excludeEnd: !0, + keywords: n, + relevance: 0, + }, + s = { + begin: /\{/, + end: /\}/, + contains: [r], + illegal: "\\n", + relevance: 0, + }, + o = { + begin: "\\[", + end: "\\]", + contains: [r], + illegal: "\\n", + relevance: 0, + }, + l = [ + { + className: "attr", + variants: [ + { + begin: "\\w[\\w :\\/.-]*:(?=[ \t]|$)", + }, + { begin: '"\\w[\\w :\\/.-]*":(?=[ \t]|$)' }, + { + begin: "'\\w[\\w :\\/.-]*':(?=[ \t]|$)", + }, + ], + }, + { className: "meta", begin: "^---\\s*$", relevance: 10 }, + { + className: "string", + begin: + "[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*", + }, + { + begin: "<%[%=-]?", + end: "[%-]?%>", + subLanguage: "ruby", + excludeBegin: !0, + excludeEnd: !0, + relevance: 0, + }, + { className: "type", begin: "!\\w+!" + t }, + { className: "type", begin: "!<" + t + ">" }, + { className: "type", begin: "!" + t }, + { className: "type", begin: "!!" + t }, + { className: "meta", begin: "&" + e.UNDERSCORE_IDENT_RE + "$" }, + { className: "meta", begin: "\\*" + e.UNDERSCORE_IDENT_RE + "$" }, + { className: "bullet", begin: "-(?=[ ]|$)", relevance: 0 }, + e.HASH_COMMENT_MODE, + { beginKeywords: n, keywords: { literal: n } }, + { + className: "number", + begin: + "\\b[0-9]{4}(-[0-9][0-9]){0,2}([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?(\\.[0-9]*)?([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?\\b", + }, + { className: "number", begin: e.C_NUMBER_RE + "\\b", relevance: 0 }, + s, + o, + a, + ], + c = [...l] + return ( + c.pop(), + c.push(i), + (r.contains = c), + { name: "YAML", case_insensitive: !0, aliases: ["yml"], contains: l } + ) + }, + }) + const je = ne + for (const e of Object.keys(Ue)) { + const n = e.replace("grmr_", "").replace("_", "-") + je.registerLanguage(n, Ue[e]) + } + return je +})() +"object" == typeof exports && + "undefined" != typeof module && + (module.exports = hljs) - export { - hljs - } \ No newline at end of file +export { hljs } diff --git a/src/components/index.ts b/src/components/index.ts index 92041f7..c527532 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -1,12 +1,12 @@ -export * from "./FullLoading"; -export * from "./SwitchColorMode"; -export * from "./SwitchLanguage"; -export * from "./Hello"; -export * from "./FolderTree"; -export * from "./Wether"; -export * from "./LinkWithBase"; -export * from "./ImageWithError"; -export * from "./Markdown"; -export * from "./ModalInput"; -export * from "./Base"; -export * from "./Paginator"; +export * from "./FullLoading" +export * from "./SwitchColorMode" +export * from "./SwitchLanguage" +export * from "./Hello" +export * from "./FolderTree" +export * from "./Wether" +export * from "./LinkWithBase" +export * from "./ImageWithError" +export * from "./Markdown" +export * from "./ModalInput" +export * from "./Base" +export * from "./Paginator" diff --git a/src/hooks/index.ts b/src/hooks/index.ts index 79c692d..923b387 100644 --- a/src/hooks/index.ts +++ b/src/hooks/index.ts @@ -1,8 +1,8 @@ -export * from "./useFetch"; -export * from "./useRouter"; -export * from "./useT"; -export * from "./useTitle"; -export * from "./usePath"; -export * from "./useLink"; -export * from "./useUtil"; -export * from "./useDownload"; +export * from "./useFetch" +export * from "./useRouter" +export * from "./useT" +export * from "./useTitle" +export * from "./usePath" +export * from "./useLink" +export * from "./useUtil" +export * from "./useDownload" diff --git a/src/hooks/useDownload.ts b/src/hooks/useDownload.ts index 3667b11..26d0464 100644 --- a/src/hooks/useDownload.ts +++ b/src/hooks/useDownload.ts @@ -1,25 +1,25 @@ -import axios from "axios"; -import { local, selectedObjs } from "~/store"; -import { notify } from "~/utils"; -import { useSelectedLink, useLink, useT } from "."; +import axios from "axios" +import { local, selectedObjs } from "~/store" +import { notify } from "~/utils" +import { useSelectedLink, useLink, useT } from "." export const useDownload = () => { - const { rawLinks } = useSelectedLink(); - const { rawLink } = useLink(); - const t = useT(); + const { rawLinks } = useSelectedLink() + const { rawLink } = useLink() + const t = useT() return { batchDownloadSelected: () => { - const urls = rawLinks(true); + const urls = rawLinks(true) urls.forEach((url) => { - window.open(url, "_blank"); - }); + window.open(url, "_blank") + }) }, sendToAria2: async () => { - const selectedFiles = selectedObjs().filter((obj) => !obj.is_dir); - const { aria2_rpc_url, aria2_rpc_secret, aria2_dir } = local; + const selectedFiles = selectedObjs().filter((obj) => !obj.is_dir) + const { aria2_rpc_url, aria2_rpc_secret, aria2_dir } = local if (!aria2_rpc_url) { - notify.warning(t("home.toolbar.aria2_not_set")); - return; + notify.warning(t("home.toolbar.aria2_not_set")) + return } try { for (const file of selectedFiles) { @@ -36,14 +36,14 @@ export const useDownload = () => { "check-certificate": "false", }, ], - }); - console.log(resp); + }) + console.log(resp) } - notify.success(t("home.toolbar.send_aria2_success")); + notify.success(t("home.toolbar.send_aria2_success")) } catch (e) { - console.error(e); - notify.error(`failed to send to aria2: ${e}`); + console.error(e) + notify.error(`failed to send to aria2: ${e}`) } }, - }; -}; + } +} diff --git a/src/hooks/useLink.ts b/src/hooks/useLink.ts index e4e5821..87e1a8e 100644 --- a/src/hooks/useLink.ts +++ b/src/hooks/useLink.ts @@ -1,15 +1,9 @@ -import { objStore, selectedObjs, State, me } from "~/store"; -import { Obj } from "~/types"; -import { - api, - encodePath, - pathDir, - pathJoin, - standardizePath, -} from "~/utils"; -import { useRouter, useUtil } from "."; +import { objStore, selectedObjs, State, me } from "~/store" +import { Obj } from "~/types" +import { api, encodePath, pathDir, pathJoin, standardizePath } from "~/utils" +import { useRouter, useUtil } from "." -type URLType = "preview" | "direct" | "proxy"; +type URLType = "preview" | "direct" | "proxy" // get download url by dir and obj export const getLinkByDirAndObj = ( @@ -18,81 +12,81 @@ export const getLinkByDirAndObj = ( type: URLType = "direct", encodeAll?: boolean ) => { - dir = standardizePath(pathJoin(me().base_path, dir), true); - let path = `${dir}/${obj.name}`; - path = encodePath(path, encodeAll); - let host = api; - let prefix = type === "direct" ? "/d" : "/p"; + dir = standardizePath(pathJoin(me().base_path, dir), true) + let path = `${dir}/${obj.name}` + path = encodePath(path, encodeAll) + let host = api + let prefix = type === "direct" ? "/d" : "/p" if (type === "preview") { - host = location.origin; - prefix = ""; + host = location.origin + prefix = "" } - let ans = `${host}${prefix}${path}`; + let ans = `${host}${prefix}${path}` if (type !== "preview" && obj.sign) { - ans += `?sign=${obj.sign}`; + ans += `?sign=${obj.sign}` } - return ans; -}; + return ans +} // get download link by current state and pathname export const useLink = () => { - const { pathname } = useRouter(); + const { pathname } = useRouter() const getLinkByObj = (obj: Obj, type?: URLType, encodeAll?: boolean) => { const dir = - objStore.state === State.Folder ? pathname() : pathDir(pathname()); - return getLinkByDirAndObj(dir, obj, type, encodeAll); - }; + objStore.state === State.Folder ? pathname() : pathDir(pathname()) + return getLinkByDirAndObj(dir, obj, type, encodeAll) + } const rawLink = (obj: Obj, encodeAll?: boolean) => { - return getLinkByObj(obj, "direct", encodeAll); - }; + return getLinkByObj(obj, "direct", encodeAll) + } return { getLinkByObj: getLinkByObj, rawLink: rawLink, proxyLink: (obj: Obj, encodeAll?: boolean) => { - return getLinkByObj(obj, "proxy", encodeAll); + return getLinkByObj(obj, "proxy", encodeAll) }, previewPage: (obj: Obj, encodeAll?: boolean) => { - return getLinkByObj(obj, "preview", encodeAll); + return getLinkByObj(obj, "preview", encodeAll) }, currentObjLink: (encodeAll?: boolean) => { - return rawLink(objStore.obj, encodeAll); + return rawLink(objStore.obj, encodeAll) }, - }; -}; + } +} export const useSelectedLink = () => { - const { previewPage, rawLink: rawUrl } = useLink(); + const { previewPage, rawLink: rawUrl } = useLink() const rawLinks = (encodeAll?: boolean) => { return selectedObjs() .filter((obj) => !obj.is_dir) - .map((obj) => rawUrl(obj, encodeAll)); - }; + .map((obj) => rawUrl(obj, encodeAll)) + } return { rawLinks: rawLinks, previewPagesText: () => { return selectedObjs() .map((obj) => previewPage(obj, true)) - .join("\n"); + .join("\n") }, rawLinksText: (encodeAll?: boolean) => { - return rawLinks(encodeAll).join("\n"); + return rawLinks(encodeAll).join("\n") }, - }; -}; + } +} export const useCopyLink = () => { - const { copy } = useUtil(); - const { previewPagesText, rawLinksText } = useSelectedLink(); - const { currentObjLink } = useLink(); + const { copy } = useUtil() + const { previewPagesText, rawLinksText } = useSelectedLink() + const { currentObjLink } = useLink() return { copySelectedPreviewPage: () => { - copy(previewPagesText()); + copy(previewPagesText()) }, copySelectedRawLink: (encodeAll?: boolean) => { - copy(rawLinksText(encodeAll)); + copy(rawLinksText(encodeAll)) }, copyCurrentRawLink: (encodeAll?: boolean) => { - copy(currentObjLink(encodeAll)); + copy(currentObjLink(encodeAll)) }, - }; -}; + } +} diff --git a/src/hooks/useT.ts b/src/hooks/useT.ts index 5257d68..816d9cf 100644 --- a/src/hooks/useT.ts +++ b/src/hooks/useT.ts @@ -1,25 +1,25 @@ -import { useI18n } from "@solid-primitives/i18n"; -import { firstUpperCase } from "~/utils"; +import { useI18n } from "@solid-primitives/i18n" +import { firstUpperCase } from "~/utils" const useT = () => { - const [t] = useI18n(); + const [t] = useI18n() return ( key: string, params?: Record | undefined, defaultValue?: string | undefined ) => { - const value = t(key, params, defaultValue); + const value = t(key, params, defaultValue) if (!value) { - if (import.meta.env.DEV) return key; - let lastDotIndex = key.lastIndexOf("."); + if (import.meta.env.DEV) return key + let lastDotIndex = key.lastIndexOf(".") if (lastDotIndex === key.length - 1) { - lastDotIndex = key.lastIndexOf(".", lastDotIndex - 1); + lastDotIndex = key.lastIndexOf(".", lastDotIndex - 1) } - const last = key.slice(lastDotIndex + 1); - return firstUpperCase(last).split("_").join(" "); + const last = key.slice(lastDotIndex + 1) + return firstUpperCase(last).split("_").join(" ") } - return value; - }; -}; + return value + } +} -export { useT }; +export { useT } diff --git a/src/hooks/useTitle.ts b/src/hooks/useTitle.ts index 6ef660d..ae7ee96 100644 --- a/src/hooks/useTitle.ts +++ b/src/hooks/useTitle.ts @@ -1,55 +1,55 @@ -import { createEffect, onCleanup } from "solid-js"; -import { getSetting } from "~/store"; -import { pathBase } from "~/utils"; -import { useRouter } from "./useRouter"; -import { useT } from "./useT"; +import { createEffect, onCleanup } from "solid-js" +import { getSetting } from "~/store" +import { pathBase } from "~/utils" +import { useRouter } from "./useRouter" +import { useT } from "./useT" -let id = 0; -const effects: Record = {}; +let id = 0 +const effects: Record = {} const useTitle = (title: string | (() => string)) => { - const cid = (id++).toString(); - const valids: string[] = []; + const cid = (id++).toString() + const valids: string[] = [] for (const key in effects) { if (effects[key]) { - valids.push(key); - effects[key] = false; + valids.push(key) + effects[key] = false } } - effects[cid] = true; - const pre = document.title; + effects[cid] = true + const pre = document.title if (typeof title === "function") { createEffect(() => { if (effects[cid]) { - document.title = title(); + document.title = title() } - }); + }) } else { - document.title = title; + document.title = title } onCleanup(() => { // document.title = pre; - delete effects[cid]; + delete effects[cid] for (const key in valids) { - effects[key] = true; + effects[key] = true } - }); -}; + }) +} export const useObjTitle = () => { - const t = useT(); - const { pathname } = useRouter(); + const t = useT() + const { pathname } = useRouter() useTitle( () => `${ pathname() === "/" ? t("manage.sidemenu.home") : pathBase(pathname()) } | ${getSetting("site_title")}` - ); -}; + ) +} export const useManageTitle = (title: string) => { - const t = useT(); - useTitle(() => `${t(title)} | ${t("manage.title")}`); -}; + const t = useT() + useTitle(() => `${t(title)} | ${t("manage.title")}`) +} -export { useTitle }; +export { useTitle } diff --git a/src/hooks/useUtil.ts b/src/hooks/useUtil.ts index a2ad980..6bcb813 100644 --- a/src/hooks/useUtil.ts +++ b/src/hooks/useUtil.ts @@ -1,34 +1,34 @@ -import copy from "copy-to-clipboard"; -import { createResource } from "solid-js"; -import { getHideFiles, objStore } from "~/store"; -import { Obj } from "~/types"; -import { fetchText, notify, pathJoin } from "~/utils"; -import { useT, useLink, useRouter } from "."; +import copy from "copy-to-clipboard" +import { createResource } from "solid-js" +import { getHideFiles, objStore } from "~/store" +import { Obj } from "~/types" +import { fetchText, notify, pathJoin } from "~/utils" +import { useT, useLink, useRouter } from "." export const useUtil = () => { - const t = useT(); - const { pathname } = useRouter(); + const t = useT() + const { pathname } = useRouter() return { copy: (text: string) => { - copy(text); - notify.success(t("global.copied")); + copy(text) + notify.success(t("global.copied")) }, isHide: (obj: Obj) => { - const hideFiles = getHideFiles(); + const hideFiles = getHideFiles() for (const reg of hideFiles) { if (reg.test(pathJoin(pathname(), obj.name))) { - return true; + return true } } - return false; + return false }, - }; -}; + } +} export const useFetchText = () => { - const { proxyLink } = useLink(); + const { proxyLink } = useLink() const fetchContent = async () => { - return fetchText(proxyLink(objStore.obj, true)); - }; - return createResource("", fetchContent); -}; + return fetchText(proxyLink(objStore.obj, true)) + } + return createResource("", fetchContent) +} diff --git a/src/index.d.ts b/src/index.d.ts index 15ce124..f9a80a5 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -1,7 +1,7 @@ -declare module "aplayer"; +declare module "aplayer" declare namespace aliyun { class Config { - setToken(token: { token: string }): any; + setToken(token: { token: string }): any } - function config(options: { mount: Element; url: string }): Config; -} \ No newline at end of file + function config(options: { mount: Element; url: string }): Config +} diff --git a/src/lang/en/drivers.json b/src/lang/en/drivers.json index 1035a7a..fe3a15c 100755 --- a/src/lang/en/drivers.json +++ b/src/lang/en/drivers.json @@ -417,4 +417,4 @@ "chunk_size": "Chunk size", "root_folder_path": "Root folder path" } -} \ No newline at end of file +} diff --git a/src/lang/en/entry.ts b/src/lang/en/entry.ts index 4c5403c..703482d 100644 --- a/src/lang/en/entry.ts +++ b/src/lang/en/entry.ts @@ -1,7 +1,7 @@ -const jsons = import.meta.glob("./*.json", { eager: true, import: "default" }); -const langs: any = {}; +const jsons = import.meta.glob("./*.json", { eager: true, import: "default" }) +const langs: any = {} for (const path in jsons) { - const name = path.split("/")[1].split(".")[0]; - langs[name] = jsons[path]; + const name = path.split("/")[1].split(".")[0] + langs[name] = jsons[path] } -export default langs; +export default langs diff --git a/src/lang/en/settings.json b/src/lang/en/settings.json index dd723a9..6dab1a1 100755 --- a/src/lang/en/settings.json +++ b/src/lang/en/settings.json @@ -47,4 +47,4 @@ "max_980px": "Max 980px", "hope_container": "Hope container" } -} \ No newline at end of file +} diff --git a/src/main.tsx b/src/main.tsx index b91d485..5f3df39 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -1,12 +1,12 @@ /* @refresh reload */ -import { Router } from "@solidjs/router"; -import { render } from "solid-js/web"; +import { Router } from "@solidjs/router" +import { render } from "solid-js/web" -import { Index } from "./app"; +import { Index } from "./app" declare global { interface Window { - [key: string]: any; + [key: string]: any } } render( @@ -16,4 +16,4 @@ render( ), document.getElementById("root") as HTMLElement -); +) diff --git a/src/pages/home/Body.tsx b/src/pages/home/Body.tsx index ff2b135..1c156fa 100644 --- a/src/pages/home/Body.tsx +++ b/src/pages/home/Body.tsx @@ -1,8 +1,8 @@ -import { VStack } from "@hope-ui/solid"; -import { Nav } from "./Nav"; -import { Obj } from "./Obj"; -import { Readme } from "./Readme"; -import { Container } from "./Container"; +import { VStack } from "@hope-ui/solid" +import { Nav } from "./Nav" +import { Obj } from "./Obj" +import { Readme } from "./Readme" +import { Container } from "./Container" export const Body = () => { return ( @@ -21,5 +21,5 @@ export const Body = () => { - ); -}; + ) +} diff --git a/src/pages/home/Container.tsx b/src/pages/home/Container.tsx index 61c1a05..bd2219d 100644 --- a/src/pages/home/Container.tsx +++ b/src/pages/home/Container.tsx @@ -1,14 +1,14 @@ -import { JSXElement, Match, Switch } from "solid-js"; -import { getSetting } from "~/store"; -import { Box, Container as HopeContainer } from "@hope-ui/solid"; +import { JSXElement, Match, Switch } from "solid-js" +import { getSetting } from "~/store" +import { Box, Container as HopeContainer } from "@hope-ui/solid" export const Container = (props: { children: JSXElement }) => { - const container = getSetting("home_container"); + const container = getSetting("home_container") return ( {props.children}}> {props.children} - ); -}; + ) +} diff --git a/src/pages/home/Footer.tsx b/src/pages/home/Footer.tsx index 756ca91..f559c9d 100644 --- a/src/pages/home/Footer.tsx +++ b/src/pages/home/Footer.tsx @@ -1,12 +1,12 @@ -import { Anchor, HStack, VStack } from "@hope-ui/solid"; -import { Link } from "@solidjs/router"; -import { AnchorWithBase } from "~/components"; -import { useT } from "~/hooks"; -import { me } from "~/store"; -import { UserMethods } from "~/types"; +import { Anchor, HStack, VStack } from "@hope-ui/solid" +import { Link } from "@solidjs/router" +import { AnchorWithBase } from "~/components" +import { useT } from "~/hooks" +import { me } from "~/store" +import { UserMethods } from "~/types" export const Footer = () => { - const t = useT(); + const t = useT() return ( @@ -18,11 +18,9 @@ export const Footer = () => { as={Link} href={UserMethods.is_guest(me()) ? "/@login" : "/@manage"} > - {t( - UserMethods.is_guest(me()) ? "login.login" : "home.footer.manage" - )} + {t(UserMethods.is_guest(me()) ? "login.login" : "home.footer.manage")} - ); -}; + ) +} diff --git a/src/pages/home/Layout.tsx b/src/pages/home/Layout.tsx index 48f9233..ea4aca5 100644 --- a/src/pages/home/Layout.tsx +++ b/src/pages/home/Layout.tsx @@ -1,17 +1,17 @@ -import { Markdown } from "~/components"; -import { useTitle } from "~/hooks"; -import { getSetting } from "~/store"; -import { notify } from "~/utils"; -import { Body } from "./Body"; -import { Footer } from "./Footer"; -import { Header } from "./Header"; -import { Toolbar } from "./toolbar/Toolbar"; +import { Markdown } from "~/components" +import { useTitle } from "~/hooks" +import { getSetting } from "~/store" +import { notify } from "~/utils" +import { Body } from "./Body" +import { Footer } from "./Footer" +import { Header } from "./Header" +import { Toolbar } from "./toolbar/Toolbar" const Index = () => { - useTitle(getSetting("site_title")); - const announcement = getSetting("announcement"); + useTitle(getSetting("site_title")) + const announcement = getSetting("announcement") if (announcement) { - notify.render(() => ); + notify.render(() => ) } return ( <> @@ -20,7 +20,7 @@ const Index = () => {