byterover-cli 3.13.0 → 3.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +60 -0
- package/dist/agent/infra/agent/cipher-agent.js +6 -0
- package/dist/agent/infra/agent/service-initializer.d.ts +13 -0
- package/dist/agent/infra/agent/service-initializer.js +2 -0
- package/dist/agent/infra/llm/agent-llm-service.js +2 -1
- package/dist/agent/infra/llm/generators/ai-sdk-abort-helper.d.ts +57 -0
- package/dist/agent/infra/llm/generators/ai-sdk-abort-helper.js +87 -0
- package/dist/agent/infra/llm/generators/ai-sdk-content-generator.d.ts +10 -0
- package/dist/agent/infra/llm/generators/ai-sdk-content-generator.js +90 -63
- package/dist/agent/infra/llm/providers/anthropic.js +1 -0
- package/dist/agent/infra/llm/providers/cerebras.js +1 -0
- package/dist/agent/infra/llm/providers/cohere.js +1 -0
- package/dist/agent/infra/llm/providers/deepinfra.js +1 -0
- package/dist/agent/infra/llm/providers/deepseek.js +1 -0
- package/dist/agent/infra/llm/providers/glm-coding-plan.js +1 -0
- package/dist/agent/infra/llm/providers/google.js +1 -0
- package/dist/agent/infra/llm/providers/groq.js +1 -0
- package/dist/agent/infra/llm/providers/minimax.js +1 -0
- package/dist/agent/infra/llm/providers/mistral.js +1 -0
- package/dist/agent/infra/llm/providers/openai-compatible.js +1 -0
- package/dist/agent/infra/llm/providers/openai.js +1 -0
- package/dist/agent/infra/llm/providers/perplexity.js +1 -0
- package/dist/agent/infra/llm/providers/togetherai.js +1 -0
- package/dist/agent/infra/llm/providers/types.d.ts +8 -1
- package/dist/agent/infra/llm/providers/xai.js +1 -0
- package/dist/agent/infra/session/session-manager.d.ts +2 -0
- package/dist/agent/infra/settings/agent-settings-snapshot.d.ts +17 -0
- package/dist/agent/infra/settings/agent-settings-snapshot.js +53 -0
- package/dist/oclif/commands/curate/index.js +7 -5
- package/dist/oclif/commands/dream.js +8 -7
- package/dist/oclif/commands/mcp.js +42 -17
- package/dist/oclif/commands/query.js +8 -4
- package/dist/oclif/commands/settings/get.d.ts +17 -0
- package/dist/oclif/commands/settings/get.js +96 -0
- package/dist/oclif/commands/settings/index.d.ts +13 -0
- package/dist/oclif/commands/settings/index.js +106 -0
- package/dist/oclif/commands/settings/list.d.ts +5 -0
- package/dist/oclif/commands/settings/list.js +8 -0
- package/dist/oclif/commands/settings/reset.d.ts +16 -0
- package/dist/oclif/commands/settings/reset.js +81 -0
- package/dist/oclif/commands/settings/set.d.ts +17 -0
- package/dist/oclif/commands/settings/set.js +131 -0
- package/dist/oclif/lib/mcp-cleanup.d.ts +10 -0
- package/dist/oclif/lib/mcp-cleanup.js +28 -0
- package/dist/oclif/lib/mcp-crash-handler.d.ts +23 -0
- package/dist/oclif/lib/mcp-crash-handler.js +69 -0
- package/dist/oclif/lib/task-client.d.ts +4 -6
- package/dist/oclif/lib/task-client.js +92 -20
- package/dist/oclif/lib/timeout-deprecation.d.ts +31 -0
- package/dist/oclif/lib/timeout-deprecation.js +33 -0
- package/dist/server/constants.d.ts +5 -0
- package/dist/server/constants.js +15 -0
- package/dist/server/core/domain/entities/settings.d.ts +55 -0
- package/dist/server/core/domain/entities/settings.js +71 -0
- package/dist/server/core/interfaces/storage/i-settings-store.d.ts +43 -0
- package/dist/server/core/interfaces/storage/i-settings-store.js +1 -0
- package/dist/server/infra/daemon/agent-process.js +9 -1
- package/dist/server/infra/daemon/brv-server.js +34 -21
- package/dist/server/infra/daemon/settings-bootstrap.d.ts +25 -0
- package/dist/server/infra/daemon/settings-bootstrap.js +23 -0
- package/dist/server/infra/git/isomorphic-git-service.d.ts +14 -1
- package/dist/server/infra/git/isomorphic-git-service.js +57 -9
- package/dist/server/infra/mcp/mcp-server.d.ts +5 -1
- package/dist/server/infra/mcp/mcp-server.js +10 -1
- package/dist/server/infra/process/feature-handlers.d.ts +3 -1
- package/dist/server/infra/process/feature-handlers.js +4 -3
- package/dist/server/infra/process/task-heartbeat-manager.d.ts +51 -0
- package/dist/server/infra/process/task-heartbeat-manager.js +83 -0
- package/dist/server/infra/process/task-history-store-cache.d.ts +8 -0
- package/dist/server/infra/process/task-history-store-cache.js +21 -1
- package/dist/server/infra/process/task-router.d.ts +10 -0
- package/dist/server/infra/process/task-router.js +13 -0
- package/dist/server/infra/process/transport-handlers.d.ts +6 -0
- package/dist/server/infra/process/transport-handlers.js +1 -0
- package/dist/server/infra/storage/file-settings-store.d.ts +28 -0
- package/dist/server/infra/storage/file-settings-store.js +132 -0
- package/dist/server/infra/storage/settings-validator.d.ts +56 -0
- package/dist/server/infra/storage/settings-validator.js +124 -0
- package/dist/server/infra/transport/handlers/index.d.ts +2 -0
- package/dist/server/infra/transport/handlers/index.js +1 -0
- package/dist/server/infra/transport/handlers/push-handler.js +3 -6
- package/dist/server/infra/transport/handlers/review-handler.d.ts +1 -0
- package/dist/server/infra/transport/handlers/review-handler.js +53 -8
- package/dist/server/infra/transport/handlers/settings-handler.d.ts +18 -0
- package/dist/server/infra/transport/handlers/settings-handler.js +94 -0
- package/dist/server/infra/transport/handlers/status-handler.js +3 -4
- package/dist/server/infra/transport/handlers/vc-handler.js +10 -4
- package/dist/server/templates/skill/SKILL.md +3 -3
- package/dist/server/utils/base64url.d.ts +2 -0
- package/dist/server/utils/base64url.js +6 -0
- package/dist/server/utils/build-review-url.d.ts +1 -0
- package/dist/server/utils/build-review-url.js +4 -0
- package/dist/shared/transport/events/context-tree-events.d.ts +4 -1
- package/dist/shared/transport/events/index.d.ts +8 -0
- package/dist/shared/transport/events/index.js +3 -0
- package/dist/shared/transport/events/review-events.d.ts +24 -1
- package/dist/shared/transport/events/review-events.js +1 -0
- package/dist/shared/transport/events/settings-events.d.ts +70 -0
- package/dist/shared/transport/events/settings-events.js +6 -0
- package/dist/shared/transport/events/task-events.d.ts +11 -0
- package/dist/shared/transport/events/task-events.js +1 -0
- package/dist/shared/types/settings-row.d.ts +28 -0
- package/dist/shared/types/settings-row.js +1 -0
- package/dist/shared/utils/format-duration.d.ts +43 -0
- package/dist/shared/utils/format-duration.js +108 -0
- package/dist/shared/utils/format-settings.d.ts +4 -0
- package/dist/shared/utils/format-settings.js +75 -0
- package/dist/tui/features/activity/hooks/use-activity-logs.js +1 -1
- package/dist/tui/features/commands/definitions/index.js +3 -0
- package/dist/tui/features/commands/definitions/settings.d.ts +2 -0
- package/dist/tui/features/commands/definitions/settings.js +11 -0
- package/dist/tui/features/settings/api/settings-api.d.ts +30 -0
- package/dist/tui/features/settings/api/settings-api.js +49 -0
- package/dist/tui/features/settings/components/settings-page.d.ts +3 -0
- package/dist/tui/features/settings/components/settings-page.js +152 -0
- package/dist/tui/features/settings/utils/format-settings.d.ts +12 -0
- package/dist/tui/features/settings/utils/format-settings.js +59 -0
- package/dist/tui/features/tasks/stores/tasks-store.d.ts +1 -1
- package/dist/webui/assets/antigravity-connector-DgAQAdn3.svg +1 -0
- package/dist/webui/assets/hermes-connector-CgLB73DY.svg +1 -0
- package/dist/webui/assets/index-7dsrsbU1.js +130 -0
- package/dist/webui/assets/index-r3wVsmem.css +1 -0
- package/dist/webui/assets/qoder-connector-Dy7h8E12.svg +1 -0
- package/dist/webui/index.html +2 -2
- package/dist/webui/sw.js +1 -1
- package/node_modules/@campfirein/byterover-packages/package.json +9 -0
- package/node_modules/@campfirein/byterover-packages/ui/package.json +11 -1
- package/node_modules/@campfirein/byterover-packages/{scripts → ui/scripts}/sync-deps.js +11 -4
- package/node_modules/@campfirein/byterover-packages/ui/src/components/badge.tsx +12 -12
- package/node_modules/@campfirein/byterover-packages/ui/src/components/collapsible.tsx +21 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/contexts/detail-body.tsx +12 -7
- package/node_modules/@campfirein/byterover-packages/ui/src/components/contexts/folder-detail.tsx +2 -6
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/diff-line.tsx +68 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/file-block.tsx +287 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/highlight-words.ts +53 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/hunk-header.tsx +111 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/hunk-pair.tsx +98 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/hunk-unified.tsx +114 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/index.tsx +90 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/is-prose-file.ts +9 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/styles.ts +20 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/types.ts +68 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/use-expand-state.ts +177 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view.tsx +10 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/switch.tsx +2 -2
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-callout.tsx +82 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-fact.tsx +30 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-flow.tsx +10 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-pattern.tsx +19 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-rule.tsx +41 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-section.tsx +33 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-task.tsx +10 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-topic.tsx +318 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/code-block.tsx +71 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/dom-utils.ts +51 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/editorial.css +773 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/group.ts +55 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/index.ts +3 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/mermaid.tsx +62 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/prose.css +124 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/topic-editor.tsx +75 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/topic-viewer.tsx +285 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/types.ts +44 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/hooks/use-is-mac.ts +23 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/lib/initials.ts +19 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/lib/syntax-highlighter.ts +59 -0
- package/node_modules/@campfirein/byterover-packages/ui/src/styles/globals.css +96 -1
- package/node_modules/@types/hast/LICENSE +21 -0
- package/node_modules/@types/hast/README.md +15 -0
- package/node_modules/@types/hast/index.d.ts +282 -0
- package/node_modules/@types/hast/package.json +42 -0
- package/node_modules/@types/prismjs/LICENSE +21 -0
- package/node_modules/@types/prismjs/README.md +15 -0
- package/node_modules/@types/prismjs/components/index.d.ts +19 -0
- package/node_modules/@types/prismjs/components.d.ts +4 -0
- package/node_modules/@types/prismjs/dependencies.d.ts +35 -0
- package/node_modules/@types/prismjs/index.d.ts +402 -0
- package/node_modules/@types/prismjs/package.json +46 -0
- package/node_modules/@types/unist/LICENSE +21 -0
- package/node_modules/@types/unist/README.md +15 -0
- package/node_modules/@types/unist/index.d.ts +119 -0
- package/node_modules/@types/unist/package.json +60 -0
- package/node_modules/character-entities/index.d.ts +6 -0
- package/node_modules/character-entities/index.js +2132 -0
- package/node_modules/character-entities/license +22 -0
- package/node_modules/character-entities/package.json +78 -0
- package/node_modules/character-entities/readme.md +152 -0
- package/node_modules/character-entities-legacy/index.d.ts +6 -0
- package/node_modules/character-entities-legacy/index.js +113 -0
- package/node_modules/character-entities-legacy/license +22 -0
- package/node_modules/character-entities-legacy/package.json +77 -0
- package/node_modules/character-entities-legacy/readme.md +157 -0
- package/node_modules/character-reference-invalid/index.d.ts +6 -0
- package/node_modules/character-reference-invalid/index.js +35 -0
- package/node_modules/character-reference-invalid/license +22 -0
- package/node_modules/character-reference-invalid/package.json +83 -0
- package/node_modules/character-reference-invalid/readme.md +156 -0
- package/node_modules/comma-separated-tokens/index.d.ts +52 -0
- package/node_modules/comma-separated-tokens/index.js +74 -0
- package/node_modules/comma-separated-tokens/license +22 -0
- package/node_modules/comma-separated-tokens/package.json +72 -0
- package/node_modules/comma-separated-tokens/readme.md +167 -0
- package/node_modules/decode-named-character-reference/index.d.ts +13 -0
- package/node_modules/decode-named-character-reference/index.d.ts.map +1 -0
- package/node_modules/decode-named-character-reference/index.dom.d.ts +6 -0
- package/node_modules/decode-named-character-reference/index.dom.d.ts.map +1 -0
- package/node_modules/decode-named-character-reference/index.dom.js +36 -0
- package/node_modules/decode-named-character-reference/index.js +19 -0
- package/node_modules/decode-named-character-reference/license +22 -0
- package/node_modules/decode-named-character-reference/package.json +89 -0
- package/node_modules/decode-named-character-reference/readme.md +136 -0
- package/node_modules/diff/CONTRIBUTING.md +28 -0
- package/node_modules/diff/LICENSE +29 -0
- package/node_modules/diff/README.md +468 -0
- package/node_modules/diff/dist/diff.js +2313 -0
- package/node_modules/diff/dist/diff.min.js +1 -0
- package/node_modules/diff/eslint.config.mjs +182 -0
- package/node_modules/diff/libcjs/convert/dmp.d.ts +8 -0
- package/node_modules/diff/libcjs/convert/dmp.d.ts.map +1 -0
- package/node_modules/diff/libcjs/convert/dmp.js +24 -0
- package/node_modules/diff/libcjs/convert/xml.d.ts +6 -0
- package/node_modules/diff/libcjs/convert/xml.d.ts.map +1 -0
- package/node_modules/diff/libcjs/convert/xml.js +34 -0
- package/node_modules/diff/libcjs/diff/array.d.ts +19 -0
- package/node_modules/diff/libcjs/diff/array.d.ts.map +1 -0
- package/node_modules/diff/libcjs/diff/array.js +23 -0
- package/node_modules/diff/libcjs/diff/base.d.ts +20 -0
- package/node_modules/diff/libcjs/diff/base.d.ts.map +1 -0
- package/node_modules/diff/libcjs/diff/base.js +256 -0
- package/node_modules/diff/libcjs/diff/character.d.ts +19 -0
- package/node_modules/diff/libcjs/diff/character.d.ts.map +1 -0
- package/node_modules/diff/libcjs/diff/character.js +14 -0
- package/node_modules/diff/libcjs/diff/css.d.ts +18 -0
- package/node_modules/diff/libcjs/diff/css.d.ts.map +1 -0
- package/node_modules/diff/libcjs/diff/css.js +17 -0
- package/node_modules/diff/libcjs/diff/json.d.ts +24 -0
- package/node_modules/diff/libcjs/diff/json.d.ts.map +1 -0
- package/node_modules/diff/libcjs/diff/json.js +86 -0
- package/node_modules/diff/libcjs/diff/line.d.ts +24 -0
- package/node_modules/diff/libcjs/diff/line.d.ts.map +1 -0
- package/node_modules/diff/libcjs/diff/line.js +74 -0
- package/node_modules/diff/libcjs/diff/sentence.d.ts +21 -0
- package/node_modules/diff/libcjs/diff/sentence.d.ts.map +1 -0
- package/node_modules/diff/libcjs/diff/sentence.js +50 -0
- package/node_modules/diff/libcjs/diff/word.d.ts +35 -0
- package/node_modules/diff/libcjs/diff/word.d.ts.map +1 -0
- package/node_modules/diff/libcjs/diff/word.js +289 -0
- package/node_modules/diff/libcjs/index.d.ts +20 -0
- package/node_modules/diff/libcjs/index.d.ts.map +1 -0
- package/node_modules/diff/libcjs/index.js +67 -0
- package/node_modules/diff/libcjs/package.json +1 -0
- package/node_modules/diff/libcjs/patch/apply.d.ts +62 -0
- package/node_modules/diff/libcjs/patch/apply.d.ts.map +1 -0
- package/node_modules/diff/libcjs/patch/apply.js +264 -0
- package/node_modules/diff/libcjs/patch/create.d.ts +131 -0
- package/node_modules/diff/libcjs/patch/create.d.ts.map +1 -0
- package/node_modules/diff/libcjs/patch/create.js +364 -0
- package/node_modules/diff/libcjs/patch/line-endings.d.ts +17 -0
- package/node_modules/diff/libcjs/patch/line-endings.d.ts.map +1 -0
- package/node_modules/diff/libcjs/patch/line-endings.js +50 -0
- package/node_modules/diff/libcjs/patch/parse.d.ts +16 -0
- package/node_modules/diff/libcjs/patch/parse.d.ts.map +1 -0
- package/node_modules/diff/libcjs/patch/parse.js +515 -0
- package/node_modules/diff/libcjs/patch/reverse.d.ts +22 -0
- package/node_modules/diff/libcjs/patch/reverse.d.ts.map +1 -0
- package/node_modules/diff/libcjs/patch/reverse.js +63 -0
- package/node_modules/diff/libcjs/types.d.ts +260 -0
- package/node_modules/diff/libcjs/types.d.ts.map +1 -0
- package/node_modules/diff/libcjs/types.js +2 -0
- package/node_modules/diff/libcjs/util/array.d.ts +3 -0
- package/node_modules/diff/libcjs/util/array.d.ts.map +1 -0
- package/node_modules/diff/libcjs/util/array.js +21 -0
- package/node_modules/diff/libcjs/util/distance-iterator.d.ts +2 -0
- package/node_modules/diff/libcjs/util/distance-iterator.d.ts.map +1 -0
- package/node_modules/diff/libcjs/util/distance-iterator.js +40 -0
- package/node_modules/diff/libcjs/util/params.d.ts +4 -0
- package/node_modules/diff/libcjs/util/params.d.ts.map +1 -0
- package/node_modules/diff/libcjs/util/params.js +17 -0
- package/node_modules/diff/libcjs/util/string.d.ts +30 -0
- package/node_modules/diff/libcjs/util/string.d.ts.map +1 -0
- package/node_modules/diff/libcjs/util/string.js +199 -0
- package/node_modules/diff/libesm/convert/dmp.d.ts +8 -0
- package/node_modules/diff/libesm/convert/dmp.d.ts.map +1 -0
- package/node_modules/diff/libesm/convert/dmp.js +21 -0
- package/node_modules/diff/libesm/convert/xml.d.ts +6 -0
- package/node_modules/diff/libesm/convert/xml.d.ts.map +1 -0
- package/node_modules/diff/libesm/convert/xml.js +31 -0
- package/node_modules/diff/libesm/diff/array.d.ts +19 -0
- package/node_modules/diff/libesm/diff/array.d.ts.map +1 -0
- package/node_modules/diff/libesm/diff/array.js +16 -0
- package/node_modules/diff/libesm/diff/base.d.ts +20 -0
- package/node_modules/diff/libesm/diff/base.d.ts.map +1 -0
- package/node_modules/diff/libesm/diff/base.js +253 -0
- package/node_modules/diff/libesm/diff/character.d.ts +19 -0
- package/node_modules/diff/libesm/diff/character.d.ts.map +1 -0
- package/node_modules/diff/libesm/diff/character.js +7 -0
- package/node_modules/diff/libesm/diff/css.d.ts +18 -0
- package/node_modules/diff/libesm/diff/css.d.ts.map +1 -0
- package/node_modules/diff/libesm/diff/css.js +10 -0
- package/node_modules/diff/libesm/diff/json.d.ts +24 -0
- package/node_modules/diff/libesm/diff/json.d.ts.map +1 -0
- package/node_modules/diff/libesm/diff/json.js +78 -0
- package/node_modules/diff/libesm/diff/line.d.ts +24 -0
- package/node_modules/diff/libesm/diff/line.d.ts.map +1 -0
- package/node_modules/diff/libesm/diff/line.js +65 -0
- package/node_modules/diff/libesm/diff/sentence.d.ts +21 -0
- package/node_modules/diff/libesm/diff/sentence.d.ts.map +1 -0
- package/node_modules/diff/libesm/diff/sentence.js +43 -0
- package/node_modules/diff/libesm/diff/word.d.ts +35 -0
- package/node_modules/diff/libesm/diff/word.d.ts.map +1 -0
- package/node_modules/diff/libesm/diff/word.js +281 -0
- package/node_modules/diff/libesm/index.d.ts +20 -0
- package/node_modules/diff/libesm/index.d.ts.map +1 -0
- package/node_modules/diff/libesm/index.js +30 -0
- package/node_modules/diff/libesm/package.json +1 -0
- package/node_modules/diff/libesm/patch/apply.d.ts +62 -0
- package/node_modules/diff/libesm/patch/apply.d.ts.map +1 -0
- package/node_modules/diff/libesm/patch/apply.js +257 -0
- package/node_modules/diff/libesm/patch/create.d.ts +131 -0
- package/node_modules/diff/libesm/patch/create.d.ts.map +1 -0
- package/node_modules/diff/libesm/patch/create.js +357 -0
- package/node_modules/diff/libesm/patch/line-endings.d.ts +17 -0
- package/node_modules/diff/libesm/patch/line-endings.d.ts.map +1 -0
- package/node_modules/diff/libesm/patch/line-endings.js +44 -0
- package/node_modules/diff/libesm/patch/parse.d.ts +16 -0
- package/node_modules/diff/libesm/patch/parse.d.ts.map +1 -0
- package/node_modules/diff/libesm/patch/parse.js +512 -0
- package/node_modules/diff/libesm/patch/reverse.d.ts +22 -0
- package/node_modules/diff/libesm/patch/reverse.d.ts.map +1 -0
- package/node_modules/diff/libesm/patch/reverse.js +60 -0
- package/node_modules/diff/libesm/types.d.ts +260 -0
- package/node_modules/diff/libesm/types.d.ts.map +1 -0
- package/node_modules/diff/libesm/types.js +1 -0
- package/node_modules/diff/libesm/util/array.d.ts +3 -0
- package/node_modules/diff/libesm/util/array.d.ts.map +1 -0
- package/node_modules/diff/libesm/util/array.js +17 -0
- package/node_modules/diff/libesm/util/distance-iterator.d.ts +2 -0
- package/node_modules/diff/libesm/util/distance-iterator.d.ts.map +1 -0
- package/node_modules/diff/libesm/util/distance-iterator.js +37 -0
- package/node_modules/diff/libesm/util/params.d.ts +4 -0
- package/node_modules/diff/libesm/util/params.d.ts.map +1 -0
- package/node_modules/diff/libesm/util/params.js +14 -0
- package/node_modules/diff/libesm/util/string.d.ts +30 -0
- package/node_modules/diff/libesm/util/string.d.ts.map +1 -0
- package/node_modules/diff/libesm/util/string.js +184 -0
- package/node_modules/diff/package.json +130 -0
- package/node_modules/diff/release-notes.md +474 -0
- package/node_modules/format/.npmignore +1 -0
- package/node_modules/format/Makefile +13 -0
- package/node_modules/format/Readme.md +46 -0
- package/node_modules/format/component.json +9 -0
- package/node_modules/format/format-min.js +2 -0
- package/node_modules/format/format.js +128 -0
- package/node_modules/format/package.json +27 -0
- package/node_modules/format/test_format.js +54 -0
- package/node_modules/hast-util-parse-selector/index.d.ts +1 -0
- package/node_modules/hast-util-parse-selector/index.js +1 -0
- package/node_modules/hast-util-parse-selector/lib/index.d.ts +27 -0
- package/node_modules/hast-util-parse-selector/lib/index.js +87 -0
- package/node_modules/hast-util-parse-selector/license +22 -0
- package/node_modules/hast-util-parse-selector/package.json +79 -0
- package/node_modules/hast-util-parse-selector/readme.md +203 -0
- package/node_modules/hastscript/index.d.ts +5 -0
- package/node_modules/hastscript/index.d.ts.map +1 -0
- package/node_modules/hastscript/index.js +7 -0
- package/node_modules/hastscript/lib/automatic-runtime-html.d.ts +36 -0
- package/node_modules/hastscript/lib/automatic-runtime-html.js +9 -0
- package/node_modules/hastscript/lib/automatic-runtime-svg.d.ts +36 -0
- package/node_modules/hastscript/lib/automatic-runtime-svg.d.ts.map +1 -0
- package/node_modules/hastscript/lib/automatic-runtime-svg.js +7 -0
- package/node_modules/hastscript/lib/create-automatic-runtime.d.ts +237 -0
- package/node_modules/hastscript/lib/create-automatic-runtime.d.ts.map +1 -0
- package/node_modules/hastscript/lib/create-automatic-runtime.js +52 -0
- package/node_modules/hastscript/lib/create-h.d.ts +148 -0
- package/node_modules/hastscript/lib/create-h.d.ts.map +1 -0
- package/node_modules/hastscript/lib/create-h.js +365 -0
- package/node_modules/hastscript/lib/index.d.ts +22 -0
- package/node_modules/hastscript/lib/index.d.ts.map +1 -0
- package/node_modules/hastscript/lib/index.js +27 -0
- package/node_modules/hastscript/lib/jsx-automatic.d.ts +43 -0
- package/node_modules/hastscript/lib/jsx-automatic.js +2 -0
- package/node_modules/hastscript/lib/jsx-classic.d.ts +47 -0
- package/node_modules/hastscript/lib/jsx-classic.js +2 -0
- package/node_modules/hastscript/lib/svg-case-sensitive-tag-names.d.ts +7 -0
- package/node_modules/hastscript/lib/svg-case-sensitive-tag-names.d.ts.map +1 -0
- package/node_modules/hastscript/lib/svg-case-sensitive-tag-names.js +46 -0
- package/node_modules/hastscript/license +22 -0
- package/node_modules/hastscript/package.json +126 -0
- package/node_modules/hastscript/readme.md +477 -0
- package/node_modules/highlight.js/LICENSE +29 -0
- package/node_modules/highlight.js/README.md +371 -0
- package/node_modules/highlight.js/lib/core.js +2517 -0
- package/node_modules/highlight.js/lib/highlight.js +2 -0
- package/node_modules/highlight.js/lib/index.js +195 -0
- package/node_modules/highlight.js/lib/languages/1c.js +521 -0
- package/node_modules/highlight.js/lib/languages/abnf.js +103 -0
- package/node_modules/highlight.js/lib/languages/accesslog.js +127 -0
- package/node_modules/highlight.js/lib/languages/actionscript.js +113 -0
- package/node_modules/highlight.js/lib/languages/ada.js +194 -0
- package/node_modules/highlight.js/lib/languages/angelscript.js +123 -0
- package/node_modules/highlight.js/lib/languages/apache.js +89 -0
- package/node_modules/highlight.js/lib/languages/applescript.js +189 -0
- package/node_modules/highlight.js/lib/languages/arcade.js +165 -0
- package/node_modules/highlight.js/lib/languages/arduino.js +576 -0
- package/node_modules/highlight.js/lib/languages/armasm.js +131 -0
- package/node_modules/highlight.js/lib/languages/asciidoc.js +303 -0
- package/node_modules/highlight.js/lib/languages/aspectj.js +186 -0
- package/node_modules/highlight.js/lib/languages/autohotkey.js +84 -0
- package/node_modules/highlight.js/lib/languages/autoit.js +183 -0
- package/node_modules/highlight.js/lib/languages/avrasm.js +80 -0
- package/node_modules/highlight.js/lib/languages/awk.js +73 -0
- package/node_modules/highlight.js/lib/languages/axapta.js +179 -0
- package/node_modules/highlight.js/lib/languages/bash.js +169 -0
- package/node_modules/highlight.js/lib/languages/basic.js +65 -0
- package/node_modules/highlight.js/lib/languages/bnf.js +38 -0
- package/node_modules/highlight.js/lib/languages/brainfuck.js +46 -0
- package/node_modules/highlight.js/lib/languages/c-like.js +501 -0
- package/node_modules/highlight.js/lib/languages/c.js +309 -0
- package/node_modules/highlight.js/lib/languages/cal.js +104 -0
- package/node_modules/highlight.js/lib/languages/capnproto.js +64 -0
- package/node_modules/highlight.js/lib/languages/ceylon.js +82 -0
- package/node_modules/highlight.js/lib/languages/clean.js +40 -0
- package/node_modules/highlight.js/lib/languages/clojure-repl.js +27 -0
- package/node_modules/highlight.js/lib/languages/clojure.js +158 -0
- package/node_modules/highlight.js/lib/languages/cmake.js +64 -0
- package/node_modules/highlight.js/lib/languages/coffeescript.js +356 -0
- package/node_modules/highlight.js/lib/languages/coq.js +79 -0
- package/node_modules/highlight.js/lib/languages/cos.js +138 -0
- package/node_modules/highlight.js/lib/languages/cpp.js +464 -0
- package/node_modules/highlight.js/lib/languages/crmsh.js +102 -0
- package/node_modules/highlight.js/lib/languages/crystal.js +326 -0
- package/node_modules/highlight.js/lib/languages/csharp.js +441 -0
- package/node_modules/highlight.js/lib/languages/csp.js +37 -0
- package/node_modules/highlight.js/lib/languages/css.js +608 -0
- package/node_modules/highlight.js/lib/languages/d.js +271 -0
- package/node_modules/highlight.js/lib/languages/dart.js +199 -0
- package/node_modules/highlight.js/lib/languages/delphi.js +126 -0
- package/node_modules/highlight.js/lib/languages/diff.js +85 -0
- package/node_modules/highlight.js/lib/languages/django.js +77 -0
- package/node_modules/highlight.js/lib/languages/dns.js +46 -0
- package/node_modules/highlight.js/lib/languages/dockerfile.js +34 -0
- package/node_modules/highlight.js/lib/languages/dos.js +70 -0
- package/node_modules/highlight.js/lib/languages/dsconfig.js +66 -0
- package/node_modules/highlight.js/lib/languages/dts.js +153 -0
- package/node_modules/highlight.js/lib/languages/dust.js +45 -0
- package/node_modules/highlight.js/lib/languages/ebnf.js +53 -0
- package/node_modules/highlight.js/lib/languages/elixir.js +259 -0
- package/node_modules/highlight.js/lib/languages/elm.js +129 -0
- package/node_modules/highlight.js/lib/languages/erb.js +29 -0
- package/node_modules/highlight.js/lib/languages/erlang-repl.js +86 -0
- package/node_modules/highlight.js/lib/languages/erlang.js +199 -0
- package/node_modules/highlight.js/lib/languages/excel.js +64 -0
- package/node_modules/highlight.js/lib/languages/fix.js +37 -0
- package/node_modules/highlight.js/lib/languages/flix.js +54 -0
- package/node_modules/highlight.js/lib/languages/fortran.js +159 -0
- package/node_modules/highlight.js/lib/languages/fsharp.js +86 -0
- package/node_modules/highlight.js/lib/languages/gams.js +208 -0
- package/node_modules/highlight.js/lib/languages/gauss.js +316 -0
- package/node_modules/highlight.js/lib/languages/gcode.js +88 -0
- package/node_modules/highlight.js/lib/languages/gherkin.js +49 -0
- package/node_modules/highlight.js/lib/languages/glsl.js +128 -0
- package/node_modules/highlight.js/lib/languages/gml.js +885 -0
- package/node_modules/highlight.js/lib/languages/go.js +74 -0
- package/node_modules/highlight.js/lib/languages/golo.js +33 -0
- package/node_modules/highlight.js/lib/languages/gradle.js +44 -0
- package/node_modules/highlight.js/lib/languages/groovy.js +174 -0
- package/node_modules/highlight.js/lib/languages/haml.js +117 -0
- package/node_modules/highlight.js/lib/languages/handlebars.js +324 -0
- package/node_modules/highlight.js/lib/languages/haskell.js +173 -0
- package/node_modules/highlight.js/lib/languages/haxe.js +157 -0
- package/node_modules/highlight.js/lib/languages/hsp.js +65 -0
- package/node_modules/highlight.js/lib/languages/htmlbars.js +352 -0
- package/node_modules/highlight.js/lib/languages/http.js +121 -0
- package/node_modules/highlight.js/lib/languages/hy.js +109 -0
- package/node_modules/highlight.js/lib/languages/inform7.js +70 -0
- package/node_modules/highlight.js/lib/languages/ini.js +173 -0
- package/node_modules/highlight.js/lib/languages/irpf90.js +141 -0
- package/node_modules/highlight.js/lib/languages/isbl.js +3207 -0
- package/node_modules/highlight.js/lib/languages/java.js +181 -0
- package/node_modules/highlight.js/lib/languages/javascript.js +604 -0
- package/node_modules/highlight.js/lib/languages/jboss-cli.js +63 -0
- package/node_modules/highlight.js/lib/languages/json.js +63 -0
- package/node_modules/highlight.js/lib/languages/julia-repl.js +50 -0
- package/node_modules/highlight.js/lib/languages/julia.js +416 -0
- package/node_modules/highlight.js/lib/languages/kotlin.js +284 -0
- package/node_modules/highlight.js/lib/languages/lasso.js +187 -0
- package/node_modules/highlight.js/lib/languages/latex.js +276 -0
- package/node_modules/highlight.js/lib/languages/ldif.js +42 -0
- package/node_modules/highlight.js/lib/languages/leaf.js +49 -0
- package/node_modules/highlight.js/lib/languages/less.js +666 -0
- package/node_modules/highlight.js/lib/languages/lisp.js +111 -0
- package/node_modules/highlight.js/lib/languages/livecodeserver.js +189 -0
- package/node_modules/highlight.js/lib/languages/livescript.js +374 -0
- package/node_modules/highlight.js/lib/languages/llvm.js +154 -0
- package/node_modules/highlight.js/lib/languages/lsl.js +95 -0
- package/node_modules/highlight.js/lib/languages/lua.js +82 -0
- package/node_modules/highlight.js/lib/languages/makefile.js +92 -0
- package/node_modules/highlight.js/lib/languages/markdown.js +258 -0
- package/node_modules/highlight.js/lib/languages/mathematica.js +6797 -0
- package/node_modules/highlight.js/lib/languages/matlab.js +106 -0
- package/node_modules/highlight.js/lib/languages/maxima.js +417 -0
- package/node_modules/highlight.js/lib/languages/mel.js +236 -0
- package/node_modules/highlight.js/lib/languages/mercury.js +121 -0
- package/node_modules/highlight.js/lib/languages/mipsasm.js +109 -0
- package/node_modules/highlight.js/lib/languages/mizar.js +29 -0
- package/node_modules/highlight.js/lib/languages/mojolicious.js +36 -0
- package/node_modules/highlight.js/lib/languages/monkey.js +89 -0
- package/node_modules/highlight.js/lib/languages/moonscript.js +147 -0
- package/node_modules/highlight.js/lib/languages/n1ql.js +77 -0
- package/node_modules/highlight.js/lib/languages/nginx.js +140 -0
- package/node_modules/highlight.js/lib/languages/nim.js +79 -0
- package/node_modules/highlight.js/lib/languages/nix.js +65 -0
- package/node_modules/highlight.js/lib/languages/node-repl.js +37 -0
- package/node_modules/highlight.js/lib/languages/nsis.js +119 -0
- package/node_modules/highlight.js/lib/languages/objectivec.js +121 -0
- package/node_modules/highlight.js/lib/languages/ocaml.js +82 -0
- package/node_modules/highlight.js/lib/languages/openscad.js +81 -0
- package/node_modules/highlight.js/lib/languages/oxygene.js +101 -0
- package/node_modules/highlight.js/lib/languages/parser3.js +57 -0
- package/node_modules/highlight.js/lib/languages/perl.js +515 -0
- package/node_modules/highlight.js/lib/languages/pf.js +59 -0
- package/node_modules/highlight.js/lib/languages/pgsql.js +630 -0
- package/node_modules/highlight.js/lib/languages/php-template.js +54 -0
- package/node_modules/highlight.js/lib/languages/php.js +204 -0
- package/node_modules/highlight.js/lib/languages/plaintext.js +19 -0
- package/node_modules/highlight.js/lib/languages/pony.js +89 -0
- package/node_modules/highlight.js/lib/languages/powershell.js +331 -0
- package/node_modules/highlight.js/lib/languages/processing.js +58 -0
- package/node_modules/highlight.js/lib/languages/profile.js +43 -0
- package/node_modules/highlight.js/lib/languages/prolog.js +102 -0
- package/node_modules/highlight.js/lib/languages/properties.js +85 -0
- package/node_modules/highlight.js/lib/languages/protobuf.js +47 -0
- package/node_modules/highlight.js/lib/languages/puppet.js +147 -0
- package/node_modules/highlight.js/lib/languages/purebasic.js +101 -0
- package/node_modules/highlight.js/lib/languages/python-repl.js +36 -0
- package/node_modules/highlight.js/lib/languages/python.js +446 -0
- package/node_modules/highlight.js/lib/languages/q.js +37 -0
- package/node_modules/highlight.js/lib/languages/qml.js +225 -0
- package/node_modules/highlight.js/lib/languages/r.js +231 -0
- package/node_modules/highlight.js/lib/languages/reasonml.js +321 -0
- package/node_modules/highlight.js/lib/languages/rib.js +37 -0
- package/node_modules/highlight.js/lib/languages/roboconf.js +82 -0
- package/node_modules/highlight.js/lib/languages/routeros.js +172 -0
- package/node_modules/highlight.js/lib/languages/rsl.js +49 -0
- package/node_modules/highlight.js/lib/languages/ruby.js +387 -0
- package/node_modules/highlight.js/lib/languages/ruleslanguage.js +78 -0
- package/node_modules/highlight.js/lib/languages/rust.js +146 -0
- package/node_modules/highlight.js/lib/languages/sas.js +133 -0
- package/node_modules/highlight.js/lib/languages/scala.js +140 -0
- package/node_modules/highlight.js/lib/languages/scheme.js +207 -0
- package/node_modules/highlight.js/lib/languages/scilab.js +73 -0
- package/node_modules/highlight.js/lib/languages/scss.js +545 -0
- package/node_modules/highlight.js/lib/languages/shell.js +30 -0
- package/node_modules/highlight.js/lib/languages/smali.js +135 -0
- package/node_modules/highlight.js/lib/languages/smalltalk.js +63 -0
- package/node_modules/highlight.js/lib/languages/sml.js +81 -0
- package/node_modules/highlight.js/lib/languages/sqf.js +448 -0
- package/node_modules/highlight.js/lib/languages/sql.js +699 -0
- package/node_modules/highlight.js/lib/languages/sql_more.js +183 -0
- package/node_modules/highlight.js/lib/languages/stan.js +548 -0
- package/node_modules/highlight.js/lib/languages/stata.js +60 -0
- package/node_modules/highlight.js/lib/languages/step21.js +66 -0
- package/node_modules/highlight.js/lib/languages/stylus.js +609 -0
- package/node_modules/highlight.js/lib/languages/subunit.js +51 -0
- package/node_modules/highlight.js/lib/languages/swift.js +873 -0
- package/node_modules/highlight.js/lib/languages/taggerscript.js +52 -0
- package/node_modules/highlight.js/lib/languages/tap.js +55 -0
- package/node_modules/highlight.js/lib/languages/tcl.js +115 -0
- package/node_modules/highlight.js/lib/languages/thrift.js +51 -0
- package/node_modules/highlight.js/lib/languages/tp.js +95 -0
- package/node_modules/highlight.js/lib/languages/twig.js +77 -0
- package/node_modules/highlight.js/lib/languages/typescript.js +697 -0
- package/node_modules/highlight.js/lib/languages/vala.js +61 -0
- package/node_modules/highlight.js/lib/languages/vbnet.js +214 -0
- package/node_modules/highlight.js/lib/languages/vbscript-html.js +24 -0
- package/node_modules/highlight.js/lib/languages/vbscript.js +109 -0
- package/node_modules/highlight.js/lib/languages/verilog.js +131 -0
- package/node_modules/highlight.js/lib/languages/vhdl.js +71 -0
- package/node_modules/highlight.js/lib/languages/vim.js +123 -0
- package/node_modules/highlight.js/lib/languages/x86asm.js +163 -0
- package/node_modules/highlight.js/lib/languages/xl.js +92 -0
- package/node_modules/highlight.js/lib/languages/xml.js +287 -0
- package/node_modules/highlight.js/lib/languages/xquery.js +197 -0
- package/node_modules/highlight.js/lib/languages/yaml.js +176 -0
- package/node_modules/highlight.js/lib/languages/zephir.js +140 -0
- package/node_modules/highlight.js/package.json +86 -0
- package/node_modules/highlight.js/scss/a11y-dark.scss +99 -0
- package/node_modules/highlight.js/scss/a11y-light.scss +99 -0
- package/node_modules/highlight.js/scss/agate.scss +108 -0
- package/node_modules/highlight.js/scss/an-old-hope.scss +89 -0
- package/node_modules/highlight.js/scss/androidstudio.scss +66 -0
- package/node_modules/highlight.js/scss/arduino-light.scss +87 -0
- package/node_modules/highlight.js/scss/arta.scss +73 -0
- package/node_modules/highlight.js/scss/ascetic.scss +45 -0
- package/node_modules/highlight.js/scss/atelier-cave-dark.scss +83 -0
- package/node_modules/highlight.js/scss/atelier-cave-light.scss +85 -0
- package/node_modules/highlight.js/scss/atelier-dune-dark.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-dune-light.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-estuary-dark.scss +84 -0
- package/node_modules/highlight.js/scss/atelier-estuary-light.scss +84 -0
- package/node_modules/highlight.js/scss/atelier-forest-dark.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-forest-light.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-heath-dark.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-heath-light.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-lakeside-dark.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-lakeside-light.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-plateau-dark.scss +84 -0
- package/node_modules/highlight.js/scss/atelier-plateau-light.scss +84 -0
- package/node_modules/highlight.js/scss/atelier-savanna-dark.scss +84 -0
- package/node_modules/highlight.js/scss/atelier-savanna-light.scss +84 -0
- package/node_modules/highlight.js/scss/atelier-seaside-dark.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-seaside-light.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-sulphurpool-dark.scss +69 -0
- package/node_modules/highlight.js/scss/atelier-sulphurpool-light.scss +69 -0
- package/node_modules/highlight.js/scss/atom-one-dark-reasonable.scss +75 -0
- package/node_modules/highlight.js/scss/atom-one-dark.scss +96 -0
- package/node_modules/highlight.js/scss/atom-one-light.scss +96 -0
- package/node_modules/highlight.js/scss/brown-paper.scss +64 -0
- package/node_modules/highlight.js/scss/brown-papersq.png +0 -0
- package/node_modules/highlight.js/scss/codepen-embed.scss +60 -0
- package/node_modules/highlight.js/scss/color-brewer.scss +71 -0
- package/node_modules/highlight.js/scss/darcula.scss +74 -0
- package/node_modules/highlight.js/scss/dark.scss +63 -0
- package/node_modules/highlight.js/scss/default.scss +99 -0
- package/node_modules/highlight.js/scss/docco.scss +97 -0
- package/node_modules/highlight.js/scss/dracula.scss +76 -0
- package/node_modules/highlight.js/scss/far.scss +71 -0
- package/node_modules/highlight.js/scss/foundation.scss +89 -0
- package/node_modules/highlight.js/scss/github-gist.scss +79 -0
- package/node_modules/highlight.js/scss/github.scss +99 -0
- package/node_modules/highlight.js/scss/gml.scss +78 -0
- package/node_modules/highlight.js/scss/googlecode.scss +89 -0
- package/node_modules/highlight.js/scss/gradient-dark.scss +122 -0
- package/node_modules/highlight.js/scss/gradient-light.scss +130 -0
- package/node_modules/highlight.js/scss/grayscale.scss +101 -0
- package/node_modules/highlight.js/scss/gruvbox-dark.scss +108 -0
- package/node_modules/highlight.js/scss/gruvbox-light.scss +108 -0
- package/node_modules/highlight.js/scss/hopscotch.scss +84 -0
- package/node_modules/highlight.js/scss/hybrid.scss +102 -0
- package/node_modules/highlight.js/scss/idea.scss +97 -0
- package/node_modules/highlight.js/scss/ir-black.scss +73 -0
- package/node_modules/highlight.js/scss/isbl-editor-dark.scss +112 -0
- package/node_modules/highlight.js/scss/isbl-editor-light.scss +111 -0
- package/node_modules/highlight.js/scss/kimbie.dark.scss +74 -0
- package/node_modules/highlight.js/scss/kimbie.light.scss +74 -0
- package/node_modules/highlight.js/scss/lightfair.scss +88 -0
- package/node_modules/highlight.js/scss/lioshi.scss +88 -0
- package/node_modules/highlight.js/scss/magula.scss +70 -0
- package/node_modules/highlight.js/scss/mono-blue.scss +56 -0
- package/node_modules/highlight.js/scss/monokai-sublime.scss +83 -0
- package/node_modules/highlight.js/scss/monokai.scss +71 -0
- package/node_modules/highlight.js/scss/night-owl.scss +182 -0
- package/node_modules/highlight.js/scss/nnfx-dark.scss +106 -0
- package/node_modules/highlight.js/scss/nnfx.scss +106 -0
- package/node_modules/highlight.js/scss/nord.scss +309 -0
- package/node_modules/highlight.js/scss/obsidian.scss +88 -0
- package/node_modules/highlight.js/scss/ocean.scss +74 -0
- package/node_modules/highlight.js/scss/paraiso-dark.scss +72 -0
- package/node_modules/highlight.js/scss/paraiso-light.scss +72 -0
- package/node_modules/highlight.js/scss/pojoaque.jpg +0 -0
- package/node_modules/highlight.js/scss/pojoaque.scss +83 -0
- package/node_modules/highlight.js/scss/purebasic.scss +96 -0
- package/node_modules/highlight.js/scss/qtcreator_dark.scss +83 -0
- package/node_modules/highlight.js/scss/qtcreator_light.scss +83 -0
- package/node_modules/highlight.js/scss/railscasts.scss +106 -0
- package/node_modules/highlight.js/scss/rainbow.scss +85 -0
- package/node_modules/highlight.js/scss/routeros.scss +108 -0
- package/node_modules/highlight.js/scss/school-book.png +0 -0
- package/node_modules/highlight.js/scss/school-book.scss +69 -0
- package/node_modules/highlight.js/scss/shades-of-purple.scss +96 -0
- package/node_modules/highlight.js/scss/solarized-dark.scss +84 -0
- package/node_modules/highlight.js/scss/solarized-light.scss +84 -0
- package/node_modules/highlight.js/scss/srcery.scss +78 -0
- package/node_modules/highlight.js/scss/stackoverflow-dark.scss +78 -0
- package/node_modules/highlight.js/scss/stackoverflow-light.scss +78 -0
- package/node_modules/highlight.js/scss/sunburst.scss +102 -0
- package/node_modules/highlight.js/scss/tomorrow-night-blue.scss +75 -0
- package/node_modules/highlight.js/scss/tomorrow-night-bright.scss +74 -0
- package/node_modules/highlight.js/scss/tomorrow-night-eighties.scss +74 -0
- package/node_modules/highlight.js/scss/tomorrow-night.scss +75 -0
- package/node_modules/highlight.js/scss/tomorrow.scss +72 -0
- package/node_modules/highlight.js/scss/vs.scss +68 -0
- package/node_modules/highlight.js/scss/vs2015.scss +115 -0
- package/node_modules/highlight.js/scss/xcode.scss +104 -0
- package/node_modules/highlight.js/scss/xt256.scss +92 -0
- package/node_modules/highlight.js/scss/zenburn.scss +80 -0
- package/node_modules/highlight.js/styles/a11y-dark.css +99 -0
- package/node_modules/highlight.js/styles/a11y-light.css +99 -0
- package/node_modules/highlight.js/styles/agate.css +108 -0
- package/node_modules/highlight.js/styles/an-old-hope.css +89 -0
- package/node_modules/highlight.js/styles/androidstudio.css +66 -0
- package/node_modules/highlight.js/styles/arduino-light.css +87 -0
- package/node_modules/highlight.js/styles/arta.css +73 -0
- package/node_modules/highlight.js/styles/ascetic.css +45 -0
- package/node_modules/highlight.js/styles/atelier-cave-dark.css +83 -0
- package/node_modules/highlight.js/styles/atelier-cave-light.css +85 -0
- package/node_modules/highlight.js/styles/atelier-dune-dark.css +69 -0
- package/node_modules/highlight.js/styles/atelier-dune-light.css +69 -0
- package/node_modules/highlight.js/styles/atelier-estuary-dark.css +84 -0
- package/node_modules/highlight.js/styles/atelier-estuary-light.css +84 -0
- package/node_modules/highlight.js/styles/atelier-forest-dark.css +69 -0
- package/node_modules/highlight.js/styles/atelier-forest-light.css +69 -0
- package/node_modules/highlight.js/styles/atelier-heath-dark.css +69 -0
- package/node_modules/highlight.js/styles/atelier-heath-light.css +69 -0
- package/node_modules/highlight.js/styles/atelier-lakeside-dark.css +69 -0
- package/node_modules/highlight.js/styles/atelier-lakeside-light.css +69 -0
- package/node_modules/highlight.js/styles/atelier-plateau-dark.css +84 -0
- package/node_modules/highlight.js/styles/atelier-plateau-light.css +84 -0
- package/node_modules/highlight.js/styles/atelier-savanna-dark.css +84 -0
- package/node_modules/highlight.js/styles/atelier-savanna-light.css +84 -0
- package/node_modules/highlight.js/styles/atelier-seaside-dark.css +69 -0
- package/node_modules/highlight.js/styles/atelier-seaside-light.css +69 -0
- package/node_modules/highlight.js/styles/atelier-sulphurpool-dark.css +69 -0
- package/node_modules/highlight.js/styles/atelier-sulphurpool-light.css +69 -0
- package/node_modules/highlight.js/styles/atom-one-dark-reasonable.css +75 -0
- package/node_modules/highlight.js/styles/atom-one-dark.css +96 -0
- package/node_modules/highlight.js/styles/atom-one-light.css +96 -0
- package/node_modules/highlight.js/styles/brown-paper.css +64 -0
- package/node_modules/highlight.js/styles/brown-papersq.png +0 -0
- package/node_modules/highlight.js/styles/codepen-embed.css +60 -0
- package/node_modules/highlight.js/styles/color-brewer.css +71 -0
- package/node_modules/highlight.js/styles/darcula.css +74 -0
- package/node_modules/highlight.js/styles/dark.css +63 -0
- package/node_modules/highlight.js/styles/default.css +99 -0
- package/node_modules/highlight.js/styles/docco.css +97 -0
- package/node_modules/highlight.js/styles/dracula.css +76 -0
- package/node_modules/highlight.js/styles/far.css +71 -0
- package/node_modules/highlight.js/styles/foundation.css +89 -0
- package/node_modules/highlight.js/styles/github-gist.css +79 -0
- package/node_modules/highlight.js/styles/github.css +99 -0
- package/node_modules/highlight.js/styles/gml.css +78 -0
- package/node_modules/highlight.js/styles/googlecode.css +89 -0
- package/node_modules/highlight.js/styles/gradient-dark.css +122 -0
- package/node_modules/highlight.js/styles/gradient-light.css +130 -0
- package/node_modules/highlight.js/styles/grayscale.css +101 -0
- package/node_modules/highlight.js/styles/gruvbox-dark.css +108 -0
- package/node_modules/highlight.js/styles/gruvbox-light.css +108 -0
- package/node_modules/highlight.js/styles/hopscotch.css +84 -0
- package/node_modules/highlight.js/styles/hybrid.css +102 -0
- package/node_modules/highlight.js/styles/idea.css +97 -0
- package/node_modules/highlight.js/styles/ir-black.css +73 -0
- package/node_modules/highlight.js/styles/isbl-editor-dark.css +112 -0
- package/node_modules/highlight.js/styles/isbl-editor-light.css +111 -0
- package/node_modules/highlight.js/styles/kimbie.dark.css +74 -0
- package/node_modules/highlight.js/styles/kimbie.light.css +74 -0
- package/node_modules/highlight.js/styles/lightfair.css +88 -0
- package/node_modules/highlight.js/styles/lioshi.css +88 -0
- package/node_modules/highlight.js/styles/magula.css +70 -0
- package/node_modules/highlight.js/styles/mono-blue.css +56 -0
- package/node_modules/highlight.js/styles/monokai-sublime.css +83 -0
- package/node_modules/highlight.js/styles/monokai.css +71 -0
- package/node_modules/highlight.js/styles/night-owl.css +182 -0
- package/node_modules/highlight.js/styles/nnfx-dark.css +106 -0
- package/node_modules/highlight.js/styles/nnfx.css +106 -0
- package/node_modules/highlight.js/styles/nord.css +309 -0
- package/node_modules/highlight.js/styles/obsidian.css +88 -0
- package/node_modules/highlight.js/styles/ocean.css +74 -0
- package/node_modules/highlight.js/styles/paraiso-dark.css +72 -0
- package/node_modules/highlight.js/styles/paraiso-light.css +72 -0
- package/node_modules/highlight.js/styles/pojoaque.css +83 -0
- package/node_modules/highlight.js/styles/pojoaque.jpg +0 -0
- package/node_modules/highlight.js/styles/purebasic.css +96 -0
- package/node_modules/highlight.js/styles/qtcreator_dark.css +83 -0
- package/node_modules/highlight.js/styles/qtcreator_light.css +83 -0
- package/node_modules/highlight.js/styles/railscasts.css +106 -0
- package/node_modules/highlight.js/styles/rainbow.css +85 -0
- package/node_modules/highlight.js/styles/routeros.css +108 -0
- package/node_modules/highlight.js/styles/school-book.css +69 -0
- package/node_modules/highlight.js/styles/school-book.png +0 -0
- package/node_modules/highlight.js/styles/shades-of-purple.css +96 -0
- package/node_modules/highlight.js/styles/solarized-dark.css +84 -0
- package/node_modules/highlight.js/styles/solarized-light.css +84 -0
- package/node_modules/highlight.js/styles/srcery.css +78 -0
- package/node_modules/highlight.js/styles/stackoverflow-dark.css +78 -0
- package/node_modules/highlight.js/styles/stackoverflow-light.css +78 -0
- package/node_modules/highlight.js/styles/sunburst.css +102 -0
- package/node_modules/highlight.js/styles/tomorrow-night-blue.css +75 -0
- package/node_modules/highlight.js/styles/tomorrow-night-bright.css +74 -0
- package/node_modules/highlight.js/styles/tomorrow-night-eighties.css +74 -0
- package/node_modules/highlight.js/styles/tomorrow-night.css +75 -0
- package/node_modules/highlight.js/styles/tomorrow.css +72 -0
- package/node_modules/highlight.js/styles/vs.css +68 -0
- package/node_modules/highlight.js/styles/vs2015.css +115 -0
- package/node_modules/highlight.js/styles/xcode.css +104 -0
- package/node_modules/highlight.js/styles/xt256.css +92 -0
- package/node_modules/highlight.js/styles/zenburn.css +80 -0
- package/node_modules/highlight.js/types/index.d.ts +261 -0
- package/node_modules/highlightjs-vue/README.md +33 -0
- package/node_modules/highlightjs-vue/dist/highlightjs-vue.cjs.js +61 -0
- package/node_modules/highlightjs-vue/dist/highlightjs-vue.esm.js +59 -0
- package/node_modules/highlightjs-vue/dist/highlightjs-vue.umd.js +66 -0
- package/node_modules/highlightjs-vue/dist/highlightjs-vue.umd.min.js +1 -0
- package/node_modules/highlightjs-vue/package.json +40 -0
- package/node_modules/is-alphabetical/index.d.ts +8 -0
- package/node_modules/is-alphabetical/index.js +16 -0
- package/node_modules/is-alphabetical/license +22 -0
- package/node_modules/is-alphabetical/package.json +73 -0
- package/node_modules/is-alphabetical/readme.md +141 -0
- package/node_modules/is-alphanumerical/index.d.ts +8 -0
- package/node_modules/is-alphanumerical/index.js +13 -0
- package/node_modules/is-alphanumerical/license +22 -0
- package/node_modules/is-alphanumerical/package.json +79 -0
- package/node_modules/is-alphanumerical/readme.md +142 -0
- package/node_modules/is-decimal/index.d.ts +8 -0
- package/node_modules/is-decimal/index.js +13 -0
- package/node_modules/is-decimal/license +22 -0
- package/node_modules/is-decimal/package.json +73 -0
- package/node_modules/is-decimal/readme.md +139 -0
- package/node_modules/is-hexadecimal/index.d.ts +8 -0
- package/node_modules/is-hexadecimal/index.js +17 -0
- package/node_modules/is-hexadecimal/license +22 -0
- package/node_modules/is-hexadecimal/package.json +73 -0
- package/node_modules/is-hexadecimal/readme.md +141 -0
- package/node_modules/lowlight/index.js +299 -0
- package/node_modules/lowlight/lib/core.js +207 -0
- package/node_modules/lowlight/license +22 -0
- package/node_modules/lowlight/node_modules/fault/index.js +31 -0
- package/node_modules/lowlight/node_modules/fault/license +22 -0
- package/node_modules/lowlight/node_modules/fault/package.json +79 -0
- package/node_modules/lowlight/node_modules/fault/readme.md +138 -0
- package/node_modules/lowlight/package.json +91 -0
- package/node_modules/lowlight/readme.md +339 -0
- package/node_modules/parse-entities/index.d.ts +126 -0
- package/node_modules/parse-entities/index.js +3 -0
- package/node_modules/parse-entities/lib/index.d.ts +9 -0
- package/node_modules/parse-entities/lib/index.d.ts.map +1 -0
- package/node_modules/parse-entities/lib/index.js +407 -0
- package/node_modules/parse-entities/license +22 -0
- package/node_modules/parse-entities/node_modules/@types/unist/LICENSE +21 -0
- package/node_modules/parse-entities/node_modules/@types/unist/README.md +122 -0
- package/node_modules/parse-entities/node_modules/@types/unist/index.d.ts +103 -0
- package/node_modules/parse-entities/node_modules/@types/unist/package.json +55 -0
- package/node_modules/parse-entities/package.json +91 -0
- package/node_modules/parse-entities/readme.md +266 -0
- package/node_modules/prismjs/CHANGELOG.md +3068 -0
- package/node_modules/prismjs/LICENSE +21 -0
- package/node_modules/prismjs/README.md +51 -0
- package/node_modules/prismjs/_headers +2 -0
- package/node_modules/prismjs/components/index.js +56 -0
- package/node_modules/prismjs/components/prism-abap.js +48 -0
- package/node_modules/prismjs/components/prism-abap.min.js +1 -0
- package/node_modules/prismjs/components/prism-abnf.js +54 -0
- package/node_modules/prismjs/components/prism-abnf.min.js +1 -0
- package/node_modules/prismjs/components/prism-actionscript.js +19 -0
- package/node_modules/prismjs/components/prism-actionscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-ada.js +22 -0
- package/node_modules/prismjs/components/prism-ada.min.js +1 -0
- package/node_modules/prismjs/components/prism-agda.js +24 -0
- package/node_modules/prismjs/components/prism-agda.min.js +1 -0
- package/node_modules/prismjs/components/prism-al.js +25 -0
- package/node_modules/prismjs/components/prism-al.min.js +1 -0
- package/node_modules/prismjs/components/prism-antlr4.js +65 -0
- package/node_modules/prismjs/components/prism-antlr4.min.js +1 -0
- package/node_modules/prismjs/components/prism-apacheconf.js +47 -0
- package/node_modules/prismjs/components/prism-apacheconf.min.js +1 -0
- package/node_modules/prismjs/components/prism-apex.js +65 -0
- package/node_modules/prismjs/components/prism-apex.min.js +1 -0
- package/node_modules/prismjs/components/prism-apl.js +32 -0
- package/node_modules/prismjs/components/prism-apl.min.js +1 -0
- package/node_modules/prismjs/components/prism-applescript.js +17 -0
- package/node_modules/prismjs/components/prism-applescript.min.js +1 -0
- package/node_modules/prismjs/components/prism-aql.js +49 -0
- package/node_modules/prismjs/components/prism-aql.min.js +1 -0
- package/node_modules/prismjs/components/prism-arduino.js +7 -0
- package/node_modules/prismjs/components/prism-arduino.min.js +1 -0
- package/node_modules/prismjs/components/prism-arff.js +10 -0
- package/node_modules/prismjs/components/prism-arff.min.js +1 -0
- package/node_modules/prismjs/components/prism-armasm.js +49 -0
- package/node_modules/prismjs/components/prism-armasm.min.js +1 -0
- package/node_modules/prismjs/components/prism-arturo.js +105 -0
- package/node_modules/prismjs/components/prism-arturo.min.js +1 -0
- package/node_modules/prismjs/components/prism-asciidoc.js +234 -0
- package/node_modules/prismjs/components/prism-asciidoc.min.js +1 -0
- package/node_modules/prismjs/components/prism-asm6502.js +29 -0
- package/node_modules/prismjs/components/prism-asm6502.min.js +1 -0
- package/node_modules/prismjs/components/prism-asmatmel.js +43 -0
- package/node_modules/prismjs/components/prism-asmatmel.min.js +1 -0
- package/node_modules/prismjs/components/prism-aspnet.js +48 -0
- package/node_modules/prismjs/components/prism-aspnet.min.js +1 -0
- package/node_modules/prismjs/components/prism-autohotkey.js +44 -0
- package/node_modules/prismjs/components/prism-autohotkey.min.js +1 -0
- package/node_modules/prismjs/components/prism-autoit.js +34 -0
- package/node_modules/prismjs/components/prism-autoit.min.js +1 -0
- package/node_modules/prismjs/components/prism-avisynth.js +188 -0
- package/node_modules/prismjs/components/prism-avisynth.min.js +1 -0
- package/node_modules/prismjs/components/prism-avro-idl.js +50 -0
- package/node_modules/prismjs/components/prism-avro-idl.min.js +1 -0
- package/node_modules/prismjs/components/prism-awk.js +32 -0
- package/node_modules/prismjs/components/prism-awk.min.js +1 -0
- package/node_modules/prismjs/components/prism-bash.js +235 -0
- package/node_modules/prismjs/components/prism-bash.min.js +1 -0
- package/node_modules/prismjs/components/prism-basic.js +17 -0
- package/node_modules/prismjs/components/prism-basic.min.js +1 -0
- package/node_modules/prismjs/components/prism-batch.js +99 -0
- package/node_modules/prismjs/components/prism-batch.min.js +1 -0
- package/node_modules/prismjs/components/prism-bbcode.js +29 -0
- package/node_modules/prismjs/components/prism-bbcode.min.js +1 -0
- package/node_modules/prismjs/components/prism-bbj.js +19 -0
- package/node_modules/prismjs/components/prism-bbj.min.js +1 -0
- package/node_modules/prismjs/components/prism-bicep.js +77 -0
- package/node_modules/prismjs/components/prism-bicep.min.js +1 -0
- package/node_modules/prismjs/components/prism-birb.js +23 -0
- package/node_modules/prismjs/components/prism-birb.min.js +1 -0
- package/node_modules/prismjs/components/prism-bison.js +39 -0
- package/node_modules/prismjs/components/prism-bison.min.js +1 -0
- package/node_modules/prismjs/components/prism-bnf.js +21 -0
- package/node_modules/prismjs/components/prism-bnf.min.js +1 -0
- package/node_modules/prismjs/components/prism-bqn.js +63 -0
- package/node_modules/prismjs/components/prism-bqn.min.js +1 -0
- package/node_modules/prismjs/components/prism-brainfuck.js +20 -0
- package/node_modules/prismjs/components/prism-brainfuck.min.js +1 -0
- package/node_modules/prismjs/components/prism-brightscript.js +44 -0
- package/node_modules/prismjs/components/prism-brightscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-bro.js +37 -0
- package/node_modules/prismjs/components/prism-bro.min.js +1 -0
- package/node_modules/prismjs/components/prism-bsl.js +75 -0
- package/node_modules/prismjs/components/prism-bsl.min.js +1 -0
- package/node_modules/prismjs/components/prism-c.js +80 -0
- package/node_modules/prismjs/components/prism-c.min.js +1 -0
- package/node_modules/prismjs/components/prism-cfscript.js +44 -0
- package/node_modules/prismjs/components/prism-cfscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-chaiscript.js +60 -0
- package/node_modules/prismjs/components/prism-chaiscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-cil.js +27 -0
- package/node_modules/prismjs/components/prism-cil.min.js +1 -0
- package/node_modules/prismjs/components/prism-cilkc.js +8 -0
- package/node_modules/prismjs/components/prism-cilkc.min.js +1 -0
- package/node_modules/prismjs/components/prism-cilkcpp.js +9 -0
- package/node_modules/prismjs/components/prism-cilkcpp.min.js +1 -0
- package/node_modules/prismjs/components/prism-clike.js +31 -0
- package/node_modules/prismjs/components/prism-clike.min.js +1 -0
- package/node_modules/prismjs/components/prism-clojure.js +31 -0
- package/node_modules/prismjs/components/prism-clojure.min.js +1 -0
- package/node_modules/prismjs/components/prism-cmake.js +29 -0
- package/node_modules/prismjs/components/prism-cmake.min.js +1 -0
- package/node_modules/prismjs/components/prism-cobol.js +53 -0
- package/node_modules/prismjs/components/prism-cobol.min.js +1 -0
- package/node_modules/prismjs/components/prism-coffeescript.js +96 -0
- package/node_modules/prismjs/components/prism-coffeescript.min.js +1 -0
- package/node_modules/prismjs/components/prism-concurnas.js +61 -0
- package/node_modules/prismjs/components/prism-concurnas.min.js +1 -0
- package/node_modules/prismjs/components/prism-cooklang.js +146 -0
- package/node_modules/prismjs/components/prism-cooklang.min.js +1 -0
- package/node_modules/prismjs/components/prism-coq.js +54 -0
- package/node_modules/prismjs/components/prism-coq.min.js +1 -0
- package/node_modules/prismjs/components/prism-core.js +1263 -0
- package/node_modules/prismjs/components/prism-core.min.js +1 -0
- package/node_modules/prismjs/components/prism-cpp.js +99 -0
- package/node_modules/prismjs/components/prism-cpp.min.js +1 -0
- package/node_modules/prismjs/components/prism-crystal.js +57 -0
- package/node_modules/prismjs/components/prism-crystal.min.js +1 -0
- package/node_modules/prismjs/components/prism-csharp.js +366 -0
- package/node_modules/prismjs/components/prism-csharp.min.js +1 -0
- package/node_modules/prismjs/components/prism-cshtml.js +199 -0
- package/node_modules/prismjs/components/prism-cshtml.min.js +1 -0
- package/node_modules/prismjs/components/prism-csp.js +76 -0
- package/node_modules/prismjs/components/prism-csp.min.js +1 -0
- package/node_modules/prismjs/components/prism-css-extras.js +120 -0
- package/node_modules/prismjs/components/prism-css-extras.min.js +1 -0
- package/node_modules/prismjs/components/prism-css.js +64 -0
- package/node_modules/prismjs/components/prism-css.min.js +1 -0
- package/node_modules/prismjs/components/prism-csv.js +6 -0
- package/node_modules/prismjs/components/prism-csv.min.js +1 -0
- package/node_modules/prismjs/components/prism-cue.js +84 -0
- package/node_modules/prismjs/components/prism-cue.min.js +1 -0
- package/node_modules/prismjs/components/prism-cypher.js +36 -0
- package/node_modules/prismjs/components/prism-cypher.min.js +1 -0
- package/node_modules/prismjs/components/prism-d.js +84 -0
- package/node_modules/prismjs/components/prism-d.min.js +1 -0
- package/node_modules/prismjs/components/prism-dart.js +79 -0
- package/node_modules/prismjs/components/prism-dart.min.js +1 -0
- package/node_modules/prismjs/components/prism-dataweave.js +41 -0
- package/node_modules/prismjs/components/prism-dataweave.min.js +1 -0
- package/node_modules/prismjs/components/prism-dax.js +27 -0
- package/node_modules/prismjs/components/prism-dax.min.js +1 -0
- package/node_modules/prismjs/components/prism-dhall.js +69 -0
- package/node_modules/prismjs/components/prism-dhall.min.js +1 -0
- package/node_modules/prismjs/components/prism-diff.js +64 -0
- package/node_modules/prismjs/components/prism-diff.min.js +1 -0
- package/node_modules/prismjs/components/prism-django.js +60 -0
- package/node_modules/prismjs/components/prism-django.min.js +1 -0
- package/node_modules/prismjs/components/prism-dns-zone-file.js +33 -0
- package/node_modules/prismjs/components/prism-dns-zone-file.min.js +1 -0
- package/node_modules/prismjs/components/prism-docker.js +98 -0
- package/node_modules/prismjs/components/prism-docker.min.js +1 -0
- package/node_modules/prismjs/components/prism-dot.js +76 -0
- package/node_modules/prismjs/components/prism-dot.min.js +1 -0
- package/node_modules/prismjs/components/prism-ebnf.js +22 -0
- package/node_modules/prismjs/components/prism-ebnf.min.js +1 -0
- package/node_modules/prismjs/components/prism-editorconfig.js +26 -0
- package/node_modules/prismjs/components/prism-editorconfig.min.js +1 -0
- package/node_modules/prismjs/components/prism-eiffel.js +34 -0
- package/node_modules/prismjs/components/prism-eiffel.min.js +1 -0
- package/node_modules/prismjs/components/prism-ejs.js +26 -0
- package/node_modules/prismjs/components/prism-ejs.min.js +1 -0
- package/node_modules/prismjs/components/prism-elixir.js +98 -0
- package/node_modules/prismjs/components/prism-elixir.min.js +1 -0
- package/node_modules/prismjs/components/prism-elm.js +45 -0
- package/node_modules/prismjs/components/prism-elm.min.js +1 -0
- package/node_modules/prismjs/components/prism-erb.js +25 -0
- package/node_modules/prismjs/components/prism-erb.min.js +1 -0
- package/node_modules/prismjs/components/prism-erlang.js +44 -0
- package/node_modules/prismjs/components/prism-erlang.min.js +1 -0
- package/node_modules/prismjs/components/prism-etlua.js +23 -0
- package/node_modules/prismjs/components/prism-etlua.min.js +1 -0
- package/node_modules/prismjs/components/prism-excel-formula.js +66 -0
- package/node_modules/prismjs/components/prism-excel-formula.min.js +1 -0
- package/node_modules/prismjs/components/prism-factor.js +403 -0
- package/node_modules/prismjs/components/prism-factor.min.js +1 -0
- package/node_modules/prismjs/components/prism-false.js +32 -0
- package/node_modules/prismjs/components/prism-false.min.js +1 -0
- package/node_modules/prismjs/components/prism-firestore-security-rules.js +35 -0
- package/node_modules/prismjs/components/prism-firestore-security-rules.min.js +1 -0
- package/node_modules/prismjs/components/prism-flow.js +35 -0
- package/node_modules/prismjs/components/prism-flow.min.js +1 -0
- package/node_modules/prismjs/components/prism-fortran.js +40 -0
- package/node_modules/prismjs/components/prism-fortran.min.js +1 -0
- package/node_modules/prismjs/components/prism-fsharp.js +75 -0
- package/node_modules/prismjs/components/prism-fsharp.min.js +1 -0
- package/node_modules/prismjs/components/prism-ftl.js +98 -0
- package/node_modules/prismjs/components/prism-ftl.min.js +1 -0
- package/node_modules/prismjs/components/prism-gap.js +54 -0
- package/node_modules/prismjs/components/prism-gap.min.js +1 -0
- package/node_modules/prismjs/components/prism-gcode.js +16 -0
- package/node_modules/prismjs/components/prism-gcode.min.js +1 -0
- package/node_modules/prismjs/components/prism-gdscript.js +27 -0
- package/node_modules/prismjs/components/prism-gdscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-gedcom.js +28 -0
- package/node_modules/prismjs/components/prism-gedcom.min.js +1 -0
- package/node_modules/prismjs/components/prism-gettext.js +43 -0
- package/node_modules/prismjs/components/prism-gettext.min.js +1 -0
- package/node_modules/prismjs/components/prism-gherkin.js +85 -0
- package/node_modules/prismjs/components/prism-gherkin.min.js +1 -0
- package/node_modules/prismjs/components/prism-git.js +68 -0
- package/node_modules/prismjs/components/prism-git.min.js +1 -0
- package/node_modules/prismjs/components/prism-glsl.js +3 -0
- package/node_modules/prismjs/components/prism-glsl.min.js +1 -0
- package/node_modules/prismjs/components/prism-gml.js +7 -0
- package/node_modules/prismjs/components/prism-gml.min.js +1 -0
- package/node_modules/prismjs/components/prism-gn.js +51 -0
- package/node_modules/prismjs/components/prism-gn.min.js +1 -0
- package/node_modules/prismjs/components/prism-go-module.js +24 -0
- package/node_modules/prismjs/components/prism-go-module.min.js +1 -0
- package/node_modules/prismjs/components/prism-go.js +28 -0
- package/node_modules/prismjs/components/prism-go.min.js +1 -0
- package/node_modules/prismjs/components/prism-gradle.js +63 -0
- package/node_modules/prismjs/components/prism-gradle.min.js +1 -0
- package/node_modules/prismjs/components/prism-graphql.js +211 -0
- package/node_modules/prismjs/components/prism-graphql.min.js +1 -0
- package/node_modules/prismjs/components/prism-groovy.js +65 -0
- package/node_modules/prismjs/components/prism-groovy.min.js +1 -0
- package/node_modules/prismjs/components/prism-haml.js +149 -0
- package/node_modules/prismjs/components/prism-haml.min.js +1 -0
- package/node_modules/prismjs/components/prism-handlebars.js +40 -0
- package/node_modules/prismjs/components/prism-handlebars.min.js +1 -0
- package/node_modules/prismjs/components/prism-haskell.js +66 -0
- package/node_modules/prismjs/components/prism-haskell.min.js +1 -0
- package/node_modules/prismjs/components/prism-haxe.js +78 -0
- package/node_modules/prismjs/components/prism-haxe.min.js +1 -0
- package/node_modules/prismjs/components/prism-hcl.js +63 -0
- package/node_modules/prismjs/components/prism-hcl.min.js +1 -0
- package/node_modules/prismjs/components/prism-hlsl.js +20 -0
- package/node_modules/prismjs/components/prism-hlsl.min.js +1 -0
- package/node_modules/prismjs/components/prism-hoon.js +14 -0
- package/node_modules/prismjs/components/prism-hoon.min.js +1 -0
- package/node_modules/prismjs/components/prism-hpkp.js +14 -0
- package/node_modules/prismjs/components/prism-hpkp.min.js +1 -0
- package/node_modules/prismjs/components/prism-hsts.js +14 -0
- package/node_modules/prismjs/components/prism-hsts.min.js +1 -0
- package/node_modules/prismjs/components/prism-http.js +151 -0
- package/node_modules/prismjs/components/prism-http.min.js +1 -0
- package/node_modules/prismjs/components/prism-ichigojam.js +15 -0
- package/node_modules/prismjs/components/prism-ichigojam.min.js +1 -0
- package/node_modules/prismjs/components/prism-icon.js +20 -0
- package/node_modules/prismjs/components/prism-icon.min.js +1 -0
- package/node_modules/prismjs/components/prism-icu-message-format.js +148 -0
- package/node_modules/prismjs/components/prism-icu-message-format.min.js +1 -0
- package/node_modules/prismjs/components/prism-idris.js +19 -0
- package/node_modules/prismjs/components/prism-idris.min.js +1 -0
- package/node_modules/prismjs/components/prism-iecst.js +32 -0
- package/node_modules/prismjs/components/prism-iecst.min.js +1 -0
- package/node_modules/prismjs/components/prism-ignore.js +23 -0
- package/node_modules/prismjs/components/prism-ignore.min.js +1 -0
- package/node_modules/prismjs/components/prism-inform7.js +61 -0
- package/node_modules/prismjs/components/prism-inform7.min.js +1 -0
- package/node_modules/prismjs/components/prism-ini.js +42 -0
- package/node_modules/prismjs/components/prism-ini.min.js +1 -0
- package/node_modules/prismjs/components/prism-io.js +22 -0
- package/node_modules/prismjs/components/prism-io.min.js +1 -0
- package/node_modules/prismjs/components/prism-j.js +28 -0
- package/node_modules/prismjs/components/prism-j.min.js +1 -0
- package/node_modules/prismjs/components/prism-java.js +124 -0
- package/node_modules/prismjs/components/prism-java.min.js +1 -0
- package/node_modules/prismjs/components/prism-javadoc.js +82 -0
- package/node_modules/prismjs/components/prism-javadoc.min.js +1 -0
- package/node_modules/prismjs/components/prism-javadoclike.js +87 -0
- package/node_modules/prismjs/components/prism-javadoclike.min.js +1 -0
- package/node_modules/prismjs/components/prism-javascript.js +172 -0
- package/node_modules/prismjs/components/prism-javascript.min.js +1 -0
- package/node_modules/prismjs/components/prism-javastacktrace.js +142 -0
- package/node_modules/prismjs/components/prism-javastacktrace.min.js +1 -0
- package/node_modules/prismjs/components/prism-jexl.js +14 -0
- package/node_modules/prismjs/components/prism-jexl.min.js +1 -0
- package/node_modules/prismjs/components/prism-jolie.js +41 -0
- package/node_modules/prismjs/components/prism-jolie.min.js +1 -0
- package/node_modules/prismjs/components/prism-jq.js +69 -0
- package/node_modules/prismjs/components/prism-jq.min.js +1 -0
- package/node_modules/prismjs/components/prism-js-extras.js +135 -0
- package/node_modules/prismjs/components/prism-js-extras.min.js +1 -0
- package/node_modules/prismjs/components/prism-js-templates.js +349 -0
- package/node_modules/prismjs/components/prism-js-templates.min.js +1 -0
- package/node_modules/prismjs/components/prism-jsdoc.js +78 -0
- package/node_modules/prismjs/components/prism-jsdoc.min.js +1 -0
- package/node_modules/prismjs/components/prism-json.js +27 -0
- package/node_modules/prismjs/components/prism-json.min.js +1 -0
- package/node_modules/prismjs/components/prism-json5.js +23 -0
- package/node_modules/prismjs/components/prism-json5.min.js +1 -0
- package/node_modules/prismjs/components/prism-jsonp.js +7 -0
- package/node_modules/prismjs/components/prism-jsonp.min.js +1 -0
- package/node_modules/prismjs/components/prism-jsstacktrace.js +49 -0
- package/node_modules/prismjs/components/prism-jsstacktrace.min.js +1 -0
- package/node_modules/prismjs/components/prism-jsx.js +145 -0
- package/node_modules/prismjs/components/prism-jsx.min.js +1 -0
- package/node_modules/prismjs/components/prism-julia.js +35 -0
- package/node_modules/prismjs/components/prism-julia.min.js +1 -0
- package/node_modules/prismjs/components/prism-keepalived.js +51 -0
- package/node_modules/prismjs/components/prism-keepalived.min.js +1 -0
- package/node_modules/prismjs/components/prism-keyman.js +44 -0
- package/node_modules/prismjs/components/prism-keyman.min.js +1 -0
- package/node_modules/prismjs/components/prism-kotlin.js +88 -0
- package/node_modules/prismjs/components/prism-kotlin.min.js +1 -0
- package/node_modules/prismjs/components/prism-kumir.js +106 -0
- package/node_modules/prismjs/components/prism-kumir.min.js +1 -0
- package/node_modules/prismjs/components/prism-kusto.js +44 -0
- package/node_modules/prismjs/components/prism-kusto.min.js +1 -0
- package/node_modules/prismjs/components/prism-latex.js +64 -0
- package/node_modules/prismjs/components/prism-latex.min.js +1 -0
- package/node_modules/prismjs/components/prism-latte.js +63 -0
- package/node_modules/prismjs/components/prism-latte.min.js +1 -0
- package/node_modules/prismjs/components/prism-less.js +54 -0
- package/node_modules/prismjs/components/prism-less.min.js +1 -0
- package/node_modules/prismjs/components/prism-lilypond.js +69 -0
- package/node_modules/prismjs/components/prism-lilypond.min.js +1 -0
- package/node_modules/prismjs/components/prism-linker-script.js +30 -0
- package/node_modules/prismjs/components/prism-linker-script.min.js +1 -0
- package/node_modules/prismjs/components/prism-liquid.js +66 -0
- package/node_modules/prismjs/components/prism-liquid.min.js +1 -0
- package/node_modules/prismjs/components/prism-lisp.js +197 -0
- package/node_modules/prismjs/components/prism-lisp.min.js +1 -0
- package/node_modules/prismjs/components/prism-livescript.js +119 -0
- package/node_modules/prismjs/components/prism-livescript.min.js +1 -0
- package/node_modules/prismjs/components/prism-llvm.js +19 -0
- package/node_modules/prismjs/components/prism-llvm.min.js +1 -0
- package/node_modules/prismjs/components/prism-log.js +120 -0
- package/node_modules/prismjs/components/prism-log.min.js +1 -0
- package/node_modules/prismjs/components/prism-lolcode.js +55 -0
- package/node_modules/prismjs/components/prism-lolcode.min.js +1 -0
- package/node_modules/prismjs/components/prism-lua.js +20 -0
- package/node_modules/prismjs/components/prism-lua.min.js +1 -0
- package/node_modules/prismjs/components/prism-magma.js +35 -0
- package/node_modules/prismjs/components/prism-magma.min.js +1 -0
- package/node_modules/prismjs/components/prism-makefile.js +34 -0
- package/node_modules/prismjs/components/prism-makefile.min.js +1 -0
- package/node_modules/prismjs/components/prism-markdown.js +415 -0
- package/node_modules/prismjs/components/prism-markdown.min.js +1 -0
- package/node_modules/prismjs/components/prism-markup-templating.js +124 -0
- package/node_modules/prismjs/components/prism-markup-templating.min.js +1 -0
- package/node_modules/prismjs/components/prism-markup.js +186 -0
- package/node_modules/prismjs/components/prism-markup.min.js +1 -0
- package/node_modules/prismjs/components/prism-mata.js +50 -0
- package/node_modules/prismjs/components/prism-mata.min.js +1 -0
- package/node_modules/prismjs/components/prism-matlab.js +16 -0
- package/node_modules/prismjs/components/prism-matlab.min.js +1 -0
- package/node_modules/prismjs/components/prism-maxscript.js +91 -0
- package/node_modules/prismjs/components/prism-maxscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-mel.js +46 -0
- package/node_modules/prismjs/components/prism-mel.min.js +1 -0
- package/node_modules/prismjs/components/prism-mermaid.js +113 -0
- package/node_modules/prismjs/components/prism-mermaid.min.js +1 -0
- package/node_modules/prismjs/components/prism-metafont.js +84 -0
- package/node_modules/prismjs/components/prism-metafont.min.js +1 -0
- package/node_modules/prismjs/components/prism-mizar.js +12 -0
- package/node_modules/prismjs/components/prism-mizar.min.js +1 -0
- package/node_modules/prismjs/components/prism-mongodb.js +97 -0
- package/node_modules/prismjs/components/prism-mongodb.min.js +1 -0
- package/node_modules/prismjs/components/prism-monkey.js +29 -0
- package/node_modules/prismjs/components/prism-monkey.min.js +1 -0
- package/node_modules/prismjs/components/prism-moonscript.js +57 -0
- package/node_modules/prismjs/components/prism-moonscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-n1ql.js +24 -0
- package/node_modules/prismjs/components/prism-n1ql.min.js +1 -0
- package/node_modules/prismjs/components/prism-n4js.js +14 -0
- package/node_modules/prismjs/components/prism-n4js.min.js +1 -0
- package/node_modules/prismjs/components/prism-nand2tetris-hdl.js +9 -0
- package/node_modules/prismjs/components/prism-nand2tetris-hdl.min.js +1 -0
- package/node_modules/prismjs/components/prism-naniscript.js +170 -0
- package/node_modules/prismjs/components/prism-naniscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-nasm.js +24 -0
- package/node_modules/prismjs/components/prism-nasm.min.js +1 -0
- package/node_modules/prismjs/components/prism-neon.js +40 -0
- package/node_modules/prismjs/components/prism-neon.min.js +1 -0
- package/node_modules/prismjs/components/prism-nevod.js +125 -0
- package/node_modules/prismjs/components/prism-nevod.min.js +1 -0
- package/node_modules/prismjs/components/prism-nginx.js +54 -0
- package/node_modules/prismjs/components/prism-nginx.min.js +1 -0
- package/node_modules/prismjs/components/prism-nim.js +44 -0
- package/node_modules/prismjs/components/prism-nim.min.js +1 -0
- package/node_modules/prismjs/components/prism-nix.js +37 -0
- package/node_modules/prismjs/components/prism-nix.min.js +1 -0
- package/node_modules/prismjs/components/prism-nsis.js +30 -0
- package/node_modules/prismjs/components/prism-nsis.min.js +1 -0
- package/node_modules/prismjs/components/prism-objectivec.js +12 -0
- package/node_modules/prismjs/components/prism-objectivec.min.js +1 -0
- package/node_modules/prismjs/components/prism-ocaml.js +58 -0
- package/node_modules/prismjs/components/prism-ocaml.min.js +1 -0
- package/node_modules/prismjs/components/prism-odin.js +99 -0
- package/node_modules/prismjs/components/prism-odin.min.js +1 -0
- package/node_modules/prismjs/components/prism-opencl.js +61 -0
- package/node_modules/prismjs/components/prism-opencl.min.js +1 -0
- package/node_modules/prismjs/components/prism-openqasm.js +23 -0
- package/node_modules/prismjs/components/prism-openqasm.min.js +1 -0
- package/node_modules/prismjs/components/prism-oz.js +28 -0
- package/node_modules/prismjs/components/prism-oz.min.js +1 -0
- package/node_modules/prismjs/components/prism-parigp.js +30 -0
- package/node_modules/prismjs/components/prism-parigp.min.js +1 -0
- package/node_modules/prismjs/components/prism-parser.js +73 -0
- package/node_modules/prismjs/components/prism-parser.min.js +1 -0
- package/node_modules/prismjs/components/prism-pascal.js +71 -0
- package/node_modules/prismjs/components/prism-pascal.min.js +1 -0
- package/node_modules/prismjs/components/prism-pascaligo.js +62 -0
- package/node_modules/prismjs/components/prism-pascaligo.min.js +1 -0
- package/node_modules/prismjs/components/prism-pcaxis.js +53 -0
- package/node_modules/prismjs/components/prism-pcaxis.min.js +1 -0
- package/node_modules/prismjs/components/prism-peoplecode.js +42 -0
- package/node_modules/prismjs/components/prism-peoplecode.min.js +1 -0
- package/node_modules/prismjs/components/prism-perl.js +156 -0
- package/node_modules/prismjs/components/prism-perl.min.js +1 -0
- package/node_modules/prismjs/components/prism-php-extras.js +14 -0
- package/node_modules/prismjs/components/prism-php-extras.min.js +1 -0
- package/node_modules/prismjs/components/prism-php.js +342 -0
- package/node_modules/prismjs/components/prism-php.min.js +1 -0
- package/node_modules/prismjs/components/prism-phpdoc.js +27 -0
- package/node_modules/prismjs/components/prism-phpdoc.min.js +1 -0
- package/node_modules/prismjs/components/prism-plant-uml.js +103 -0
- package/node_modules/prismjs/components/prism-plant-uml.min.js +1 -0
- package/node_modules/prismjs/components/prism-plsql.js +17 -0
- package/node_modules/prismjs/components/prism-plsql.min.js +1 -0
- package/node_modules/prismjs/components/prism-powerquery.js +55 -0
- package/node_modules/prismjs/components/prism-powerquery.min.js +1 -0
- package/node_modules/prismjs/components/prism-powershell.js +58 -0
- package/node_modules/prismjs/components/prism-powershell.min.js +1 -0
- package/node_modules/prismjs/components/prism-processing.js +15 -0
- package/node_modules/prismjs/components/prism-processing.min.js +1 -0
- package/node_modules/prismjs/components/prism-prolog.js +19 -0
- package/node_modules/prismjs/components/prism-prolog.min.js +1 -0
- package/node_modules/prismjs/components/prism-promql.js +99 -0
- package/node_modules/prismjs/components/prism-promql.min.js +1 -0
- package/node_modules/prismjs/components/prism-properties.js +13 -0
- package/node_modules/prismjs/components/prism-properties.min.js +1 -0
- package/node_modules/prismjs/components/prism-protobuf.js +43 -0
- package/node_modules/prismjs/components/prism-protobuf.min.js +1 -0
- package/node_modules/prismjs/components/prism-psl.js +35 -0
- package/node_modules/prismjs/components/prism-psl.min.js +1 -0
- package/node_modules/prismjs/components/prism-pug.js +188 -0
- package/node_modules/prismjs/components/prism-pug.min.js +1 -0
- package/node_modules/prismjs/components/prism-puppet.js +136 -0
- package/node_modules/prismjs/components/prism-puppet.min.js +1 -0
- package/node_modules/prismjs/components/prism-pure.js +82 -0
- package/node_modules/prismjs/components/prism-pure.min.js +1 -0
- package/node_modules/prismjs/components/prism-purebasic.js +70 -0
- package/node_modules/prismjs/components/prism-purebasic.min.js +1 -0
- package/node_modules/prismjs/components/prism-purescript.js +31 -0
- package/node_modules/prismjs/components/prism-purescript.min.js +1 -0
- package/node_modules/prismjs/components/prism-python.js +65 -0
- package/node_modules/prismjs/components/prism-python.min.js +1 -0
- package/node_modules/prismjs/components/prism-q.js +51 -0
- package/node_modules/prismjs/components/prism-q.min.js +1 -0
- package/node_modules/prismjs/components/prism-qml.js +61 -0
- package/node_modules/prismjs/components/prism-qml.min.js +1 -0
- package/node_modules/prismjs/components/prism-qore.js +20 -0
- package/node_modules/prismjs/components/prism-qore.min.js +1 -0
- package/node_modules/prismjs/components/prism-qsharp.js +132 -0
- package/node_modules/prismjs/components/prism-qsharp.min.js +1 -0
- package/node_modules/prismjs/components/prism-r.js +22 -0
- package/node_modules/prismjs/components/prism-r.min.js +1 -0
- package/node_modules/prismjs/components/prism-racket.js +18 -0
- package/node_modules/prismjs/components/prism-racket.min.js +1 -0
- package/node_modules/prismjs/components/prism-reason.js +25 -0
- package/node_modules/prismjs/components/prism-reason.min.js +1 -0
- package/node_modules/prismjs/components/prism-regex.js +104 -0
- package/node_modules/prismjs/components/prism-regex.min.js +1 -0
- package/node_modules/prismjs/components/prism-rego.js +30 -0
- package/node_modules/prismjs/components/prism-rego.min.js +1 -0
- package/node_modules/prismjs/components/prism-renpy.js +29 -0
- package/node_modules/prismjs/components/prism-renpy.min.js +1 -0
- package/node_modules/prismjs/components/prism-rescript.js +60 -0
- package/node_modules/prismjs/components/prism-rescript.min.js +1 -0
- package/node_modules/prismjs/components/prism-rest.js +205 -0
- package/node_modules/prismjs/components/prism-rest.min.js +1 -0
- package/node_modules/prismjs/components/prism-rip.js +38 -0
- package/node_modules/prismjs/components/prism-rip.min.js +1 -0
- package/node_modules/prismjs/components/prism-roboconf.js +27 -0
- package/node_modules/prismjs/components/prism-roboconf.min.js +1 -0
- package/node_modules/prismjs/components/prism-robotframework.js +104 -0
- package/node_modules/prismjs/components/prism-robotframework.min.js +1 -0
- package/node_modules/prismjs/components/prism-ruby.js +189 -0
- package/node_modules/prismjs/components/prism-ruby.min.js +1 -0
- package/node_modules/prismjs/components/prism-rust.js +128 -0
- package/node_modules/prismjs/components/prism-rust.min.js +1 -0
- package/node_modules/prismjs/components/prism-sas.js +326 -0
- package/node_modules/prismjs/components/prism-sas.min.js +1 -0
- package/node_modules/prismjs/components/prism-sass.js +77 -0
- package/node_modules/prismjs/components/prism-sass.min.js +1 -0
- package/node_modules/prismjs/components/prism-scala.js +50 -0
- package/node_modules/prismjs/components/prism-scala.min.js +1 -0
- package/node_modules/prismjs/components/prism-scheme.js +120 -0
- package/node_modules/prismjs/components/prism-scheme.min.js +1 -0
- package/node_modules/prismjs/components/prism-scss.js +81 -0
- package/node_modules/prismjs/components/prism-scss.min.js +1 -0
- package/node_modules/prismjs/components/prism-shell-session.js +70 -0
- package/node_modules/prismjs/components/prism-shell-session.min.js +1 -0
- package/node_modules/prismjs/components/prism-smali.js +87 -0
- package/node_modules/prismjs/components/prism-smali.min.js +1 -0
- package/node_modules/prismjs/components/prism-smalltalk.js +38 -0
- package/node_modules/prismjs/components/prism-smalltalk.min.js +1 -0
- package/node_modules/prismjs/components/prism-smarty.js +131 -0
- package/node_modules/prismjs/components/prism-smarty.min.js +1 -0
- package/node_modules/prismjs/components/prism-sml.js +68 -0
- package/node_modules/prismjs/components/prism-sml.min.js +1 -0
- package/node_modules/prismjs/components/prism-solidity.js +22 -0
- package/node_modules/prismjs/components/prism-solidity.min.js +1 -0
- package/node_modules/prismjs/components/prism-solution-file.js +51 -0
- package/node_modules/prismjs/components/prism-solution-file.min.js +1 -0
- package/node_modules/prismjs/components/prism-soy.js +96 -0
- package/node_modules/prismjs/components/prism-soy.min.js +1 -0
- package/node_modules/prismjs/components/prism-sparql.js +18 -0
- package/node_modules/prismjs/components/prism-sparql.min.js +1 -0
- package/node_modules/prismjs/components/prism-splunk-spl.js +24 -0
- package/node_modules/prismjs/components/prism-splunk-spl.min.js +1 -0
- package/node_modules/prismjs/components/prism-sqf.js +34 -0
- package/node_modules/prismjs/components/prism-sqf.min.js +1 -0
- package/node_modules/prismjs/components/prism-sql.js +32 -0
- package/node_modules/prismjs/components/prism-sql.min.js +1 -0
- package/node_modules/prismjs/components/prism-squirrel.js +47 -0
- package/node_modules/prismjs/components/prism-squirrel.min.js +1 -0
- package/node_modules/prismjs/components/prism-stan.js +65 -0
- package/node_modules/prismjs/components/prism-stan.min.js +1 -0
- package/node_modules/prismjs/components/prism-stata.js +76 -0
- package/node_modules/prismjs/components/prism-stata.min.js +1 -0
- package/node_modules/prismjs/components/prism-stylus.js +143 -0
- package/node_modules/prismjs/components/prism-stylus.min.js +1 -0
- package/node_modules/prismjs/components/prism-supercollider.js +36 -0
- package/node_modules/prismjs/components/prism-supercollider.min.js +1 -0
- package/node_modules/prismjs/components/prism-swift.js +148 -0
- package/node_modules/prismjs/components/prism-swift.min.js +1 -0
- package/node_modules/prismjs/components/prism-systemd.js +74 -0
- package/node_modules/prismjs/components/prism-systemd.min.js +1 -0
- package/node_modules/prismjs/components/prism-t4-cs.js +1 -0
- package/node_modules/prismjs/components/prism-t4-cs.min.js +1 -0
- package/node_modules/prismjs/components/prism-t4-templating.js +49 -0
- package/node_modules/prismjs/components/prism-t4-templating.min.js +1 -0
- package/node_modules/prismjs/components/prism-t4-vb.js +1 -0
- package/node_modules/prismjs/components/prism-t4-vb.min.js +1 -0
- package/node_modules/prismjs/components/prism-tap.js +22 -0
- package/node_modules/prismjs/components/prism-tap.min.js +1 -0
- package/node_modules/prismjs/components/prism-tcl.js +46 -0
- package/node_modules/prismjs/components/prism-tcl.min.js +1 -0
- package/node_modules/prismjs/components/prism-textile.js +286 -0
- package/node_modules/prismjs/components/prism-textile.min.js +1 -0
- package/node_modules/prismjs/components/prism-toml.js +49 -0
- package/node_modules/prismjs/components/prism-toml.min.js +1 -0
- package/node_modules/prismjs/components/prism-tremor.js +72 -0
- package/node_modules/prismjs/components/prism-tremor.min.js +1 -0
- package/node_modules/prismjs/components/prism-tsx.js +15 -0
- package/node_modules/prismjs/components/prism-tsx.min.js +1 -0
- package/node_modules/prismjs/components/prism-tt2.js +53 -0
- package/node_modules/prismjs/components/prism-tt2.min.js +1 -0
- package/node_modules/prismjs/components/prism-turtle.js +54 -0
- package/node_modules/prismjs/components/prism-turtle.min.js +1 -0
- package/node_modules/prismjs/components/prism-twig.js +44 -0
- package/node_modules/prismjs/components/prism-twig.min.js +1 -0
- package/node_modules/prismjs/components/prism-typescript.js +60 -0
- package/node_modules/prismjs/components/prism-typescript.min.js +1 -0
- package/node_modules/prismjs/components/prism-typoscript.js +80 -0
- package/node_modules/prismjs/components/prism-typoscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-unrealscript.js +42 -0
- package/node_modules/prismjs/components/prism-unrealscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-uorazor.js +48 -0
- package/node_modules/prismjs/components/prism-uorazor.min.js +1 -0
- package/node_modules/prismjs/components/prism-uri.js +96 -0
- package/node_modules/prismjs/components/prism-uri.min.js +1 -0
- package/node_modules/prismjs/components/prism-v.js +81 -0
- package/node_modules/prismjs/components/prism-v.min.js +1 -0
- package/node_modules/prismjs/components/prism-vala.js +84 -0
- package/node_modules/prismjs/components/prism-vala.min.js +1 -0
- package/node_modules/prismjs/components/prism-vbnet.js +22 -0
- package/node_modules/prismjs/components/prism-vbnet.min.js +1 -0
- package/node_modules/prismjs/components/prism-velocity.js +72 -0
- package/node_modules/prismjs/components/prism-velocity.min.js +1 -0
- package/node_modules/prismjs/components/prism-verilog.js +26 -0
- package/node_modules/prismjs/components/prism-verilog.min.js +1 -0
- package/node_modules/prismjs/components/prism-vhdl.js +26 -0
- package/node_modules/prismjs/components/prism-vhdl.min.js +1 -0
- package/node_modules/prismjs/components/prism-vim.js +10 -0
- package/node_modules/prismjs/components/prism-vim.min.js +1 -0
- package/node_modules/prismjs/components/prism-visual-basic.js +29 -0
- package/node_modules/prismjs/components/prism-visual-basic.min.js +1 -0
- package/node_modules/prismjs/components/prism-warpscript.js +21 -0
- package/node_modules/prismjs/components/prism-warpscript.min.js +1 -0
- package/node_modules/prismjs/components/prism-wasm.js +31 -0
- package/node_modules/prismjs/components/prism-wasm.min.js +1 -0
- package/node_modules/prismjs/components/prism-web-idl.js +101 -0
- package/node_modules/prismjs/components/prism-web-idl.min.js +1 -0
- package/node_modules/prismjs/components/prism-wgsl.js +69 -0
- package/node_modules/prismjs/components/prism-wgsl.min.js +1 -0
- package/node_modules/prismjs/components/prism-wiki.js +82 -0
- package/node_modules/prismjs/components/prism-wiki.min.js +1 -0
- package/node_modules/prismjs/components/prism-wolfram.js +29 -0
- package/node_modules/prismjs/components/prism-wolfram.min.js +1 -0
- package/node_modules/prismjs/components/prism-wren.js +100 -0
- package/node_modules/prismjs/components/prism-wren.min.js +1 -0
- package/node_modules/prismjs/components/prism-xeora.js +114 -0
- package/node_modules/prismjs/components/prism-xeora.min.js +1 -0
- package/node_modules/prismjs/components/prism-xml-doc.js +40 -0
- package/node_modules/prismjs/components/prism-xml-doc.min.js +1 -0
- package/node_modules/prismjs/components/prism-xojo.js +21 -0
- package/node_modules/prismjs/components/prism-xojo.min.js +1 -0
- package/node_modules/prismjs/components/prism-xquery.js +162 -0
- package/node_modules/prismjs/components/prism-xquery.min.js +1 -0
- package/node_modules/prismjs/components/prism-yaml.js +83 -0
- package/node_modules/prismjs/components/prism-yaml.min.js +1 -0
- package/node_modules/prismjs/components/prism-yang.js +20 -0
- package/node_modules/prismjs/components/prism-yang.min.js +1 -0
- package/node_modules/prismjs/components/prism-zig.js +101 -0
- package/node_modules/prismjs/components/prism-zig.min.js +1 -0
- package/node_modules/prismjs/components.js +2 -0
- package/node_modules/prismjs/components.json +1766 -0
- package/node_modules/prismjs/dependencies.js +452 -0
- package/node_modules/prismjs/package.json +89 -0
- package/node_modules/prismjs/plugins/autolinker/prism-autolinker.css +3 -0
- package/node_modules/prismjs/plugins/autolinker/prism-autolinker.js +76 -0
- package/node_modules/prismjs/plugins/autolinker/prism-autolinker.min.css +1 -0
- package/node_modules/prismjs/plugins/autolinker/prism-autolinker.min.js +1 -0
- package/node_modules/prismjs/plugins/autoloader/prism-autoloader.js +541 -0
- package/node_modules/prismjs/plugins/autoloader/prism-autoloader.min.js +1 -0
- package/node_modules/prismjs/plugins/command-line/prism-command-line.css +43 -0
- package/node_modules/prismjs/plugins/command-line/prism-command-line.js +239 -0
- package/node_modules/prismjs/plugins/command-line/prism-command-line.min.css +1 -0
- package/node_modules/prismjs/plugins/command-line/prism-command-line.min.js +1 -0
- package/node_modules/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js +160 -0
- package/node_modules/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.min.js +1 -0
- package/node_modules/prismjs/plugins/custom-class/prism-custom-class.js +110 -0
- package/node_modules/prismjs/plugins/custom-class/prism-custom-class.min.js +1 -0
- package/node_modules/prismjs/plugins/data-uri-highlight/prism-data-uri-highlight.js +94 -0
- package/node_modules/prismjs/plugins/data-uri-highlight/prism-data-uri-highlight.min.js +1 -0
- package/node_modules/prismjs/plugins/diff-highlight/prism-diff-highlight.css +13 -0
- package/node_modules/prismjs/plugins/diff-highlight/prism-diff-highlight.js +90 -0
- package/node_modules/prismjs/plugins/diff-highlight/prism-diff-highlight.min.css +1 -0
- package/node_modules/prismjs/plugins/diff-highlight/prism-diff-highlight.min.js +1 -0
- package/node_modules/prismjs/plugins/download-button/prism-download-button.js +20 -0
- package/node_modules/prismjs/plugins/download-button/prism-download-button.min.js +1 -0
- package/node_modules/prismjs/plugins/file-highlight/prism-file-highlight.js +195 -0
- package/node_modules/prismjs/plugins/file-highlight/prism-file-highlight.min.js +1 -0
- package/node_modules/prismjs/plugins/filter-highlight-all/prism-filter-highlight-all.js +127 -0
- package/node_modules/prismjs/plugins/filter-highlight-all/prism-filter-highlight-all.min.js +1 -0
- package/node_modules/prismjs/plugins/highlight-keywords/prism-highlight-keywords.js +14 -0
- package/node_modules/prismjs/plugins/highlight-keywords/prism-highlight-keywords.min.js +1 -0
- package/node_modules/prismjs/plugins/inline-color/prism-inline-color.css +33 -0
- package/node_modules/prismjs/plugins/inline-color/prism-inline-color.js +105 -0
- package/node_modules/prismjs/plugins/inline-color/prism-inline-color.min.css +1 -0
- package/node_modules/prismjs/plugins/inline-color/prism-inline-color.min.js +1 -0
- package/node_modules/prismjs/plugins/jsonp-highlight/prism-jsonp-highlight.js +303 -0
- package/node_modules/prismjs/plugins/jsonp-highlight/prism-jsonp-highlight.min.js +1 -0
- package/node_modules/prismjs/plugins/keep-markup/prism-keep-markup.js +126 -0
- package/node_modules/prismjs/plugins/keep-markup/prism-keep-markup.min.js +1 -0
- package/node_modules/prismjs/plugins/line-highlight/prism-line-highlight.css +70 -0
- package/node_modules/prismjs/plugins/line-highlight/prism-line-highlight.js +346 -0
- package/node_modules/prismjs/plugins/line-highlight/prism-line-highlight.min.css +1 -0
- package/node_modules/prismjs/plugins/line-highlight/prism-line-highlight.min.js +1 -0
- package/node_modules/prismjs/plugins/line-numbers/prism-line-numbers.css +40 -0
- package/node_modules/prismjs/plugins/line-numbers/prism-line-numbers.js +252 -0
- package/node_modules/prismjs/plugins/line-numbers/prism-line-numbers.min.css +1 -0
- package/node_modules/prismjs/plugins/line-numbers/prism-line-numbers.min.js +1 -0
- package/node_modules/prismjs/plugins/match-braces/prism-match-braces.css +29 -0
- package/node_modules/prismjs/plugins/match-braces/prism-match-braces.js +190 -0
- package/node_modules/prismjs/plugins/match-braces/prism-match-braces.min.css +1 -0
- package/node_modules/prismjs/plugins/match-braces/prism-match-braces.min.js +1 -0
- package/node_modules/prismjs/plugins/normalize-whitespace/prism-normalize-whitespace.js +229 -0
- package/node_modules/prismjs/plugins/normalize-whitespace/prism-normalize-whitespace.min.js +1 -0
- package/node_modules/prismjs/plugins/previewers/prism-previewers.css +243 -0
- package/node_modules/prismjs/plugins/previewers/prism-previewers.js +712 -0
- package/node_modules/prismjs/plugins/previewers/prism-previewers.min.css +1 -0
- package/node_modules/prismjs/plugins/previewers/prism-previewers.min.js +1 -0
- package/node_modules/prismjs/plugins/remove-initial-line-feed/prism-remove-initial-line-feed.js +21 -0
- package/node_modules/prismjs/plugins/remove-initial-line-feed/prism-remove-initial-line-feed.min.js +1 -0
- package/node_modules/prismjs/plugins/show-invisibles/prism-show-invisibles.css +34 -0
- package/node_modules/prismjs/plugins/show-invisibles/prism-show-invisibles.js +83 -0
- package/node_modules/prismjs/plugins/show-invisibles/prism-show-invisibles.min.css +1 -0
- package/node_modules/prismjs/plugins/show-invisibles/prism-show-invisibles.min.js +1 -0
- package/node_modules/prismjs/plugins/show-language/prism-show-language.js +325 -0
- package/node_modules/prismjs/plugins/show-language/prism-show-language.min.js +1 -0
- package/node_modules/prismjs/plugins/toolbar/prism-toolbar.css +65 -0
- package/node_modules/prismjs/plugins/toolbar/prism-toolbar.js +179 -0
- package/node_modules/prismjs/plugins/toolbar/prism-toolbar.min.css +1 -0
- package/node_modules/prismjs/plugins/toolbar/prism-toolbar.min.js +1 -0
- package/node_modules/prismjs/plugins/treeview/prism-treeview.css +168 -0
- package/node_modules/prismjs/plugins/treeview/prism-treeview.js +70 -0
- package/node_modules/prismjs/plugins/treeview/prism-treeview.min.css +1 -0
- package/node_modules/prismjs/plugins/treeview/prism-treeview.min.js +1 -0
- package/node_modules/prismjs/plugins/unescaped-markup/prism-unescaped-markup.css +10 -0
- package/node_modules/prismjs/plugins/unescaped-markup/prism-unescaped-markup.js +62 -0
- package/node_modules/prismjs/plugins/unescaped-markup/prism-unescaped-markup.min.css +1 -0
- package/node_modules/prismjs/plugins/unescaped-markup/prism-unescaped-markup.min.js +1 -0
- package/node_modules/prismjs/plugins/wpd/prism-wpd.css +11 -0
- package/node_modules/prismjs/plugins/wpd/prism-wpd.js +154 -0
- package/node_modules/prismjs/plugins/wpd/prism-wpd.min.css +1 -0
- package/node_modules/prismjs/plugins/wpd/prism-wpd.min.js +1 -0
- package/node_modules/prismjs/prism.js +1946 -0
- package/node_modules/prismjs/themes/prism-coy.css +219 -0
- package/node_modules/prismjs/themes/prism-coy.min.css +1 -0
- package/node_modules/prismjs/themes/prism-dark.css +129 -0
- package/node_modules/prismjs/themes/prism-dark.min.css +1 -0
- package/node_modules/prismjs/themes/prism-funky.css +130 -0
- package/node_modules/prismjs/themes/prism-funky.min.css +1 -0
- package/node_modules/prismjs/themes/prism-okaidia.css +123 -0
- package/node_modules/prismjs/themes/prism-okaidia.min.css +1 -0
- package/node_modules/prismjs/themes/prism-solarizedlight.css +150 -0
- package/node_modules/prismjs/themes/prism-solarizedlight.min.css +1 -0
- package/node_modules/prismjs/themes/prism-tomorrow.css +122 -0
- package/node_modules/prismjs/themes/prism-tomorrow.min.css +1 -0
- package/node_modules/prismjs/themes/prism-twilight.css +169 -0
- package/node_modules/prismjs/themes/prism-twilight.min.css +1 -0
- package/node_modules/prismjs/themes/prism.css +140 -0
- package/node_modules/prismjs/themes/prism.min.css +1 -0
- package/node_modules/property-information/index.d.ts +118 -0
- package/node_modules/property-information/index.js +17 -0
- package/node_modules/property-information/lib/aria.d.ts +2 -0
- package/node_modules/property-information/lib/aria.d.ts.map +1 -0
- package/node_modules/property-information/lib/aria.js +61 -0
- package/node_modules/property-information/lib/find.d.ts +34 -0
- package/node_modules/property-information/lib/find.d.ts.map +1 -0
- package/node_modules/property-information/lib/find.js +97 -0
- package/node_modules/property-information/lib/hast-to-react.d.ts +13 -0
- package/node_modules/property-information/lib/hast-to-react.d.ts.map +1 -0
- package/node_modules/property-information/lib/hast-to-react.js +30 -0
- package/node_modules/property-information/lib/html.d.ts +2 -0
- package/node_modules/property-information/lib/html.d.ts.map +1 -0
- package/node_modules/property-information/lib/html.js +322 -0
- package/node_modules/property-information/lib/normalize.d.ts +11 -0
- package/node_modules/property-information/lib/normalize.d.ts.map +1 -0
- package/node_modules/property-information/lib/normalize.js +12 -0
- package/node_modules/property-information/lib/svg.d.ts +2 -0
- package/node_modules/property-information/lib/svg.d.ts.map +1 -0
- package/node_modules/property-information/lib/svg.js +567 -0
- package/node_modules/property-information/lib/util/case-insensitive-transform.d.ts +10 -0
- package/node_modules/property-information/lib/util/case-insensitive-transform.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/case-insensitive-transform.js +13 -0
- package/node_modules/property-information/lib/util/case-sensitive-transform.d.ts +10 -0
- package/node_modules/property-information/lib/util/case-sensitive-transform.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/case-sensitive-transform.js +11 -0
- package/node_modules/property-information/lib/util/create.d.ts +39 -0
- package/node_modules/property-information/lib/util/create.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/create.js +69 -0
- package/node_modules/property-information/lib/util/defined-info.d.ts +19 -0
- package/node_modules/property-information/lib/util/defined-info.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/defined-info.js +60 -0
- package/node_modules/property-information/lib/util/info.d.ts +28 -0
- package/node_modules/property-information/lib/util/info.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/info.js +32 -0
- package/node_modules/property-information/lib/util/merge.d.ts +12 -0
- package/node_modules/property-information/lib/util/merge.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/merge.js +27 -0
- package/node_modules/property-information/lib/util/schema.d.ts +23 -0
- package/node_modules/property-information/lib/util/schema.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/schema.js +29 -0
- package/node_modules/property-information/lib/util/types.d.ts +8 -0
- package/node_modules/property-information/lib/util/types.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/types.js +13 -0
- package/node_modules/property-information/lib/xlink.d.ts +2 -0
- package/node_modules/property-information/lib/xlink.d.ts.map +1 -0
- package/node_modules/property-information/lib/xlink.js +17 -0
- package/node_modules/property-information/lib/xml.d.ts +2 -0
- package/node_modules/property-information/lib/xml.d.ts.map +1 -0
- package/node_modules/property-information/lib/xml.js +9 -0
- package/node_modules/property-information/lib/xmlns.d.ts +2 -0
- package/node_modules/property-information/lib/xmlns.d.ts.map +1 -0
- package/node_modules/property-information/lib/xmlns.js +9 -0
- package/node_modules/property-information/license +22 -0
- package/node_modules/property-information/package.json +121 -0
- package/node_modules/property-information/readme.md +1062 -0
- package/node_modules/react-syntax-highlighter/.codecov.yml +3 -0
- package/node_modules/react-syntax-highlighter/.eslintignore +8 -0
- package/node_modules/react-syntax-highlighter/.eslintrc.js +37 -0
- package/node_modules/react-syntax-highlighter/.github/FUNDING.yml +3 -0
- package/node_modules/react-syntax-highlighter/.github/ISSUE_TEMPLATE/bug_report.md +35 -0
- package/node_modules/react-syntax-highlighter/.github/ISSUE_TEMPLATE/feature_request.md +17 -0
- package/node_modules/react-syntax-highlighter/.github/workflows/codeql-analysis.yml +72 -0
- package/node_modules/react-syntax-highlighter/.github/workflows/nodejs.yml +25 -0
- package/node_modules/react-syntax-highlighter/.prettierignore +8 -0
- package/node_modules/react-syntax-highlighter/.prettierrc +3 -0
- package/node_modules/react-syntax-highlighter/AVAILABLE_LANGUAGES_HLJS.MD +192 -0
- package/node_modules/react-syntax-highlighter/AVAILABLE_LANGUAGES_PRISM.MD +298 -0
- package/node_modules/react-syntax-highlighter/AVAILABLE_STYLES_HLJS.MD +98 -0
- package/node_modules/react-syntax-highlighter/AVAILABLE_STYLES_PRISM.MD +45 -0
- package/node_modules/react-syntax-highlighter/CHANGELOG.MD +612 -0
- package/node_modules/react-syntax-highlighter/CODE_OF_CONDUCT.md +46 -0
- package/node_modules/react-syntax-highlighter/LICENSE +21 -0
- package/node_modules/react-syntax-highlighter/README.md +208 -0
- package/node_modules/react-syntax-highlighter/create-element.js +1 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/async-languages/create-language-async-loader.js +32 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/async-languages/hljs.js +967 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/async-languages/prism.js +1497 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/async-syntax-highlighter.js +164 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/checkForListedLanguage.js +10 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/create-element.js +116 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/default-highlight.js +14 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/highlight.js +392 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/index.js +62 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/1c.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/abnf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/accesslog.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/actionscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ada.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/angelscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/apache.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/applescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/arcade.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/arduino.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/armasm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/asciidoc.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/aspectj.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/autohotkey.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/autoit.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/avrasm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/awk.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/axapta.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/bash.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/basic.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/bnf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/brainfuck.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/c-like.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/c.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/cal.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/capnproto.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ceylon.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/clean.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/clojure-repl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/clojure.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/cmake.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/coffeescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/coq.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/cos.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/cpp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/crmsh.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/crystal.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/cs.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/csharp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/csp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/css.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/d.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dart.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/delphi.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/diff.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/django.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dns.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dockerfile.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dos.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dsconfig.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dts.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dust.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ebnf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/elixir.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/elm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/erb.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/erlang-repl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/erlang.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/excel.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/fix.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/flix.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/fortran.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/fsharp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/gams.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/gauss.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/gcode.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/gherkin.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/glsl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/gml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/go.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/golo.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/gradle.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/groovy.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/haml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/handlebars.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/haskell.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/haxe.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/hsp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/htmlbars.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/http.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/hy.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/index.js +1343 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/inform7.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ini.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/irpf90.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/isbl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/java.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/javascript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/jboss-cli.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/json.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/julia-repl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/julia.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/kotlin.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/lasso.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/latex.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ldif.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/leaf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/less.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/lisp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/livecodeserver.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/livescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/llvm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/lsl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/lua.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/makefile.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/markdown.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/mathematica.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/matlab.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/maxima.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/mel.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/mercury.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/mipsasm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/mizar.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/mojolicious.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/monkey.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/moonscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/n1ql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/nginx.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/nim.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/nimrod.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/nix.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/node-repl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/nsis.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/objectivec.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ocaml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/openscad.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/oxygene.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/parser3.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/perl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/pf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/pgsql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/php-template.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/php.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/plaintext.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/pony.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/powershell.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/processing.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/profile.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/prolog.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/properties.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/protobuf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/puppet.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/purebasic.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/python-repl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/python.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/q.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/qml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/r.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/reasonml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/rib.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/roboconf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/routeros.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/rsl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ruby.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ruleslanguage.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/rust.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/sas.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/scala.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/scheme.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/scilab.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/scss.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/shell.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/smali.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/smalltalk.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/sml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/sqf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/sql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/sql_more.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/stan.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/stata.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/step21.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/stylus.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/subunit.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/supported-languages.js +10 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/swift.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/taggerscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/tap.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/tcl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/tex.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/thrift.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/tp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/twig.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/typescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vala.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vbnet.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vbscript-html.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vbscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/verilog.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vhdl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vim.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vue.js +13 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/x86asm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/xl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/xml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/xquery.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/yaml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/zephir.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/abap.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/abnf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/actionscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ada.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/agda.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/al.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/antlr4.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/apacheconf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/apex.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/apl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/applescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/aql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/arduino.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/arff.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/armasm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/arturo.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/asciidoc.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/asm6502.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/asmatmel.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/aspnet.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/autohotkey.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/autoit.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/avisynth.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/avro-idl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/awk.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bash.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/basic.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/batch.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bbcode.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bbj.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bicep.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/birb.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bison.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bnf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bqn.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/brainfuck.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/brightscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bro.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bsl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/c.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cfscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/chaiscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cil.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cilkc.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cilkcpp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/clike.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/clojure.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cmake.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cobol.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/coffeescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/concurnas.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cooklang.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/coq.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/core.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cpp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/crystal.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/csharp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cshtml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/csp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/css-extras.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/css.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/csv.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cue.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cypher.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/d.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/dart.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/dataweave.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/dax.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/dhall.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/diff.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/django.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/dns-zone-file.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/docker.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/dot.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ebnf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/editorconfig.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/eiffel.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ejs.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/elixir.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/elm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/erb.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/erlang.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/etlua.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/excel-formula.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/factor.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/false.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/firestore-security-rules.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/flow.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/fortran.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/fsharp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ftl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gap.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gcode.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gdscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gedcom.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gettext.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gherkin.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/git.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/glsl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gn.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/go-module.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/go.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gradle.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/graphql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/groovy.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/haml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/handlebars.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/haskell.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/haxe.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/hcl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/hlsl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/hoon.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/hpkp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/hsts.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/http.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ichigojam.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/icon.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/icu-message-format.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/idris.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/iecst.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ignore.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/index.js +2085 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/inform7.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ini.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/io.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/j.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/java.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/javadoc.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/javadoclike.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/javascript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/javastacktrace.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jexl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jolie.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jq.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/js-extras.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/js-templates.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jsdoc.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/json.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/json5.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jsonp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jsstacktrace.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jsx.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/julia.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/keepalived.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/keyman.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/kotlin.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/kumir.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/kusto.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/latex.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/latte.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/less.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/lilypond.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/linker-script.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/liquid.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/lisp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/livescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/llvm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/log.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/lolcode.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/lua.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/magma.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/makefile.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/markdown.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/markup-templating.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/markup.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/mata.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/matlab.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/maxscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/mel.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/mermaid.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/metafont.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/mizar.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/mongodb.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/monkey.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/moonscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/n1ql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/n4js.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nand2tetris-hdl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/naniscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nasm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/neon.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nevod.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nginx.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nim.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nix.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nsis.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/objectivec.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ocaml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/odin.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/opencl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/openqasm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/oz.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/parigp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/parser.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/pascal.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/pascaligo.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/pcaxis.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/peoplecode.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/perl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/php-extras.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/php.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/phpdoc.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/plant-uml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/plsql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/powerquery.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/powershell.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/processing.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/prolog.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/promql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/properties.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/protobuf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/psl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/pug.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/puppet.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/pure.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/purebasic.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/purescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/python.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/q.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/qml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/qore.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/qsharp.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/r.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/racket.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/reason.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/regex.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/rego.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/renpy.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/rescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/rest.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/rip.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/roboconf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/robotframework.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ruby.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/rust.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/sas.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/sass.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/scala.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/scheme.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/scss.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/shell-session.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/smali.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/smalltalk.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/smarty.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/sml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/solidity.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/solution-file.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/soy.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/sparql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/splunk-spl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/sqf.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/sql.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/squirrel.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/stan.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/stata.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/stylus.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/supercollider.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/supported-languages.js +10 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/swift.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/systemd.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/t4-cs.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/t4-templating.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/t4-vb.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/tap.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/tcl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/textile.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/toml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/tremor.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/tsx.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/tt2.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/turtle.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/twig.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/typescript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/typoscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/unrealscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/uorazor.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/uri.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/v.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/vala.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/vbnet.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/velocity.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/verilog.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/vhdl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/vim.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/visual-basic.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/warpscript.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/wasm.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/web-idl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/wgsl.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/wiki.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/wolfram.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/wren.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/xeora.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/xml-doc.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/xojo.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/xquery.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/yaml.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/yang.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/zig.js +9 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/light-async.js +30 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/light.js +12 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/prism-async-light.js +28 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/prism-async.js +24 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/prism-light.js +17 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/prism.js +14 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/a11y-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/a11y-light.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/agate.js +105 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/an-old-hope.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/androidstudio.js +87 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/arduino-light.js +119 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/arta.js +106 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/ascetic.js +73 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-cave-dark.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-cave-light.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-dune-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-dune-light.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-estuary-dark.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-estuary-light.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-forest-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-forest-light.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-heath-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-heath-light.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-lakeside-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-lakeside-light.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-plateau-dark.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-plateau-light.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-savanna-dark.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-savanna-light.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-seaside-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-seaside-light.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-sulphurpool-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-sulphurpool-light.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atom-one-dark-reasonable.js +147 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atom-one-dark.js +120 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atom-one-light.js +120 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/brown-paper.js +97 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/codepen-embed.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/color-brewer.js +105 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/darcula.js +112 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/dark.js +97 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/darkula.js +7 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/default-style.js +119 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/docco.js +115 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/dracula.js +97 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/far.js +109 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/foundation.js +104 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/github-gist.js +101 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/github.js +122 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/gml.js +118 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/googlecode.js +119 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/gradient-dark.js +137 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/gradient-light.js +137 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/grayscale.js +122 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/gruvbox-dark.js +149 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/gruvbox-light.js +149 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/hopscotch.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/hybrid.js +132 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/idea.js +125 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/index.js +685 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/ir-black.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/isbl-editor-dark.js +134 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/isbl-editor-light.js +134 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/kimbie.dark.js +105 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/kimbie.light.js +105 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/lightfair.js +123 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/lioshi.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/magula.js +107 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/mono-blue.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/monokai-sublime.js +122 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/monokai.js +120 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/night-owl.js +150 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/nnfx-dark.js +122 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/nnfx.js +122 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/nord.js +242 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/obsidian.js +123 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/ocean.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/paraiso-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/paraiso-light.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/pojoaque.js +110 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/purebasic.js +124 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/qtcreator_dark.js +125 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/qtcreator_light.js +125 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/railscasts.js +114 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/rainbow.js +115 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/routeros.js +125 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/school-book.js +106 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/shades-of-purple.js +109 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/solarized-dark.js +120 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/solarized-light.js +120 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/srcery.js +115 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/stackoverflow-dark.js +117 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/stackoverflow-light.js +117 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/sunburst.js +111 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night-blue.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night-bright.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night-eighties.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/vs.js +99 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/vs2015.js +142 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/xcode.js +127 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/xt256.js +107 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/zenburn.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/a11y-dark.js +152 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/a11y-one-light.js +506 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/atom-dark.js +159 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/base16-ateliersulphurpool.light.js +203 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/cb.js +167 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/coldark-cold.js +392 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/coldark-dark.js +392 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/coy-without-shadows.js +188 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/coy.js +255 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/darcula.js +207 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/dark.js +160 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/dracula.js +160 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/duotone-dark.js +224 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/duotone-earth.js +224 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/duotone-forest.js +224 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/duotone-light.js +224 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/duotone-sea.js +224 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/duotone-space.js +224 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/funky.js +167 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/ghcolors.js +184 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/gruvbox-dark.js +183 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/gruvbox-light.js +183 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/holi-theme.js +200 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/hopscotch.js +154 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/index.js +314 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/lucario.js +160 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/material-dark.js +201 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/material-light.js +209 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/material-oceanic.js +205 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/night-owl.js +198 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/nord.js +158 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/okaidia.js +162 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/one-dark.js +507 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/one-light.js +495 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/pojoaque.js +167 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/prism.js +198 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/shades-of-purple.js +240 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/solarized-dark-atom.js +159 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/solarizedlight.js +174 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/synthwave84.js +189 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/tomorrow.js +159 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/twilight.js +220 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/vs-dark.js +161 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/vs.js +212 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/vsc-dark-plus.js +288 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/xonokai.js +186 -0
- package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/z-touch.js +202 -0
- package/node_modules/react-syntax-highlighter/dist/esm/async-languages/create-language-async-loader.js +25 -0
- package/node_modules/react-syntax-highlighter/dist/esm/async-languages/hljs.js +576 -0
- package/node_modules/react-syntax-highlighter/dist/esm/async-languages/prism.js +894 -0
- package/node_modules/react-syntax-highlighter/dist/esm/async-syntax-highlighter.js +157 -0
- package/node_modules/react-syntax-highlighter/dist/esm/checkForListedLanguage.js +4 -0
- package/node_modules/react-syntax-highlighter/dist/esm/create-element.js +107 -0
- package/node_modules/react-syntax-highlighter/dist/esm/default-highlight.js +7 -0
- package/node_modules/react-syntax-highlighter/dist/esm/highlight.js +385 -0
- package/node_modules/react-syntax-highlighter/dist/esm/index.js +8 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/1c.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/abnf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/accesslog.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/actionscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ada.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/angelscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/apache.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/applescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/arcade.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/arduino.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/armasm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/asciidoc.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/aspectj.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/autohotkey.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/autoit.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/avrasm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/awk.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/axapta.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/bash.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/basic.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/bnf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/brainfuck.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/c-like.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/c.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/cal.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/capnproto.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ceylon.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/clean.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/clojure-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/clojure.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/cmake.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/coffeescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/coq.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/cos.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/cpp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/crmsh.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/crystal.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/cs.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/csharp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/csp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/css.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/d.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dart.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/delphi.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/diff.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/django.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dns.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dockerfile.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dos.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dsconfig.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dts.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dust.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ebnf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/elixir.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/elm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/erb.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/erlang-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/erlang.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/excel.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/fix.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/flix.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/fortran.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/fsharp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/gams.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/gauss.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/gcode.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/gherkin.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/glsl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/gml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/go.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/golo.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/gradle.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/groovy.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/haml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/handlebars.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/haskell.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/haxe.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/hsp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/htmlbars.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/http.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/hy.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/index.js +191 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/inform7.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ini.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/irpf90.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/isbl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/java.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/javascript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/jboss-cli.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/json.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/julia-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/julia.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/kotlin.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/lasso.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/latex.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ldif.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/leaf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/less.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/lisp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/livecodeserver.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/livescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/llvm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/lsl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/lua.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/makefile.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/markdown.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/mathematica.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/matlab.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/maxima.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/mel.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/mercury.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/mipsasm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/mizar.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/mojolicious.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/monkey.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/moonscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/n1ql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/nginx.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/nim.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/nimrod.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/nix.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/node-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/nsis.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/objectivec.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ocaml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/openscad.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/oxygene.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/parser3.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/perl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/pf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/pgsql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/php-template.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/php.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/plaintext.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/pony.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/powershell.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/processing.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/profile.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/prolog.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/properties.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/protobuf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/puppet.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/purebasic.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/python-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/python.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/q.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/qml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/r.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/reasonml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/rib.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/roboconf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/routeros.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/rsl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ruby.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ruleslanguage.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/rust.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/sas.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/scala.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/scheme.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/scilab.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/scss.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/shell.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/smali.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/smalltalk.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/sml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/sqf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/sql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/sql_more.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/stan.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/stata.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/step21.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/stylus.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/subunit.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/supported-languages.js +5 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/swift.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/taggerscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/tap.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/tcl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/tex.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/thrift.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/tp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/twig.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/typescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vala.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vbnet.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vbscript-html.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vbscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/verilog.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vhdl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vim.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vue.js +4 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/x86asm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/xl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/xml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/xquery.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/yaml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/zephir.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/abap.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/abnf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/actionscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ada.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/agda.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/al.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/antlr4.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/apacheconf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/apex.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/apl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/applescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/aql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/arduino.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/arff.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/armasm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/arturo.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/asciidoc.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/asm6502.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/asmatmel.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/aspnet.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/autohotkey.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/autoit.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/avisynth.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/avro-idl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/awk.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bash.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/basic.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/batch.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bbcode.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bbj.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bicep.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/birb.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bison.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bnf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bqn.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/brainfuck.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/brightscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bro.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bsl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/c.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cfscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/chaiscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cil.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cilkc.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cilkcpp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/clike.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/clojure.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cmake.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cobol.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/coffeescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/concurnas.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cooklang.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/coq.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/core.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cpp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/crystal.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/csharp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cshtml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/csp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/css-extras.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/css.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/csv.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cue.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cypher.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/d.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/dart.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/dataweave.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/dax.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/dhall.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/diff.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/django.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/dns-zone-file.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/docker.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/dot.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ebnf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/editorconfig.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/eiffel.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ejs.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/elixir.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/elm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/erb.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/erlang.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/etlua.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/excel-formula.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/factor.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/false.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/firestore-security-rules.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/flow.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/fortran.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/fsharp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ftl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gap.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gcode.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gdscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gedcom.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gettext.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gherkin.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/git.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/glsl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gn.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/go-module.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/go.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gradle.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/graphql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/groovy.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/haml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/handlebars.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/haskell.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/haxe.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/hcl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/hlsl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/hoon.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/hpkp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/hsts.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/http.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ichigojam.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/icon.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/icu-message-format.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/idris.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/iecst.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ignore.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/index.js +297 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/inform7.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ini.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/io.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/j.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/java.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/javadoc.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/javadoclike.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/javascript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/javastacktrace.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jexl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jolie.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jq.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/js-extras.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/js-templates.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jsdoc.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/json.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/json5.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jsonp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jsstacktrace.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jsx.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/julia.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/keepalived.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/keyman.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/kotlin.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/kumir.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/kusto.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/latex.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/latte.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/less.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/lilypond.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/linker-script.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/liquid.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/lisp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/livescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/llvm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/log.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/lolcode.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/lua.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/magma.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/makefile.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/markdown.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/markup-templating.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/markup.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/mata.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/matlab.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/maxscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/mel.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/mermaid.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/metafont.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/mizar.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/mongodb.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/monkey.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/moonscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/n1ql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/n4js.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nand2tetris-hdl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/naniscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nasm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/neon.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nevod.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nginx.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nim.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nix.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nsis.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/objectivec.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ocaml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/odin.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/opencl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/openqasm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/oz.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/parigp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/parser.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/pascal.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/pascaligo.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/pcaxis.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/peoplecode.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/perl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/php-extras.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/php.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/phpdoc.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/plant-uml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/plsql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/powerquery.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/powershell.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/processing.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/prolog.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/promql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/properties.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/protobuf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/psl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/pug.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/puppet.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/pure.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/purebasic.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/purescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/python.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/q.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/qml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/qore.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/qsharp.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/r.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/racket.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/reason.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/regex.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/rego.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/renpy.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/rescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/rest.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/rip.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/roboconf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/robotframework.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ruby.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/rust.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/sas.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/sass.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/scala.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/scheme.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/scss.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/shell-session.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/smali.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/smalltalk.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/smarty.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/sml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/solidity.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/solution-file.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/soy.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/sparql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/splunk-spl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/sqf.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/sql.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/squirrel.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/stan.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/stata.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/stylus.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/supercollider.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/supported-languages.js +5 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/swift.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/systemd.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/t4-cs.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/t4-templating.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/t4-vb.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/tap.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/tcl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/textile.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/toml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/tremor.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/tsx.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/tt2.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/turtle.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/twig.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/typescript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/typoscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/unrealscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/uorazor.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/uri.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/v.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/vala.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/vbnet.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/velocity.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/verilog.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/vhdl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/vim.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/visual-basic.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/warpscript.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/wasm.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/web-idl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/wgsl.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/wiki.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/wolfram.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/wren.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/xeora.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/xml-doc.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/xojo.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/xquery.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/yaml.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/yang.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/zig.js +2 -0
- package/node_modules/react-syntax-highlighter/dist/esm/light-async.js +19 -0
- package/node_modules/react-syntax-highlighter/dist/esm/light.js +5 -0
- package/node_modules/react-syntax-highlighter/dist/esm/prism-async-light.js +17 -0
- package/node_modules/react-syntax-highlighter/dist/esm/prism-async.js +13 -0
- package/node_modules/react-syntax-highlighter/dist/esm/prism-light.js +10 -0
- package/node_modules/react-syntax-highlighter/dist/esm/prism.js +7 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/a11y-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/a11y-light.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/agate.js +99 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/an-old-hope.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/androidstudio.js +81 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/arduino-light.js +113 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/arta.js +100 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/ascetic.js +67 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-cave-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-cave-light.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-dune-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-dune-light.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-estuary-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-estuary-light.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-forest-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-forest-light.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-heath-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-heath-light.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-lakeside-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-lakeside-light.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-plateau-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-plateau-light.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-savanna-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-savanna-light.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-seaside-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-seaside-light.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-sulphurpool-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-sulphurpool-light.js +90 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atom-one-dark-reasonable.js +141 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atom-one-dark.js +114 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atom-one-light.js +114 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/brown-paper.js +91 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/codepen-embed.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/color-brewer.js +99 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/darcula.js +106 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/dark.js +91 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/darkula.js +1 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/default-style.js +113 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/docco.js +109 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/dracula.js +91 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/far.js +103 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/foundation.js +98 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/github-gist.js +95 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/github.js +116 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/gml.js +112 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/googlecode.js +113 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/gradient-dark.js +131 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/gradient-light.js +131 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/grayscale.js +116 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/gruvbox-dark.js +143 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/gruvbox-light.js +143 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/hopscotch.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/hybrid.js +126 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/idea.js +119 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/index.js +97 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/ir-black.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/isbl-editor-dark.js +128 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/isbl-editor-light.js +128 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/kimbie.dark.js +99 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/kimbie.light.js +99 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/lightfair.js +117 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/lioshi.js +102 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/magula.js +101 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/mono-blue.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/monokai-sublime.js +116 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/monokai.js +114 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/night-owl.js +144 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/nnfx-dark.js +116 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/nnfx.js +116 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/nord.js +236 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/obsidian.js +117 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/ocean.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/paraiso-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/paraiso-light.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/pojoaque.js +104 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/purebasic.js +118 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/qtcreator_dark.js +119 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/qtcreator_light.js +119 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/railscasts.js +108 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/rainbow.js +109 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/routeros.js +119 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/school-book.js +100 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/shades-of-purple.js +103 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/solarized-dark.js +114 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/solarized-light.js +114 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/srcery.js +109 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/stackoverflow-dark.js +111 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/stackoverflow-light.js +111 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/sunburst.js +105 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night-blue.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night-bright.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night-eighties.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/tomorrow.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/vs.js +93 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/vs2015.js +136 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/xcode.js +121 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/xt256.js +101 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/zenburn.js +96 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/a11y-dark.js +146 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/a11y-one-light.js +500 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/atom-dark.js +153 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/base16-ateliersulphurpool.light.js +197 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/cb.js +161 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/coldark-cold.js +386 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/coldark-dark.js +386 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/coy-without-shadows.js +182 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/coy.js +249 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/darcula.js +201 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/dark.js +154 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/dracula.js +154 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/duotone-dark.js +218 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/duotone-earth.js +218 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/duotone-forest.js +218 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/duotone-light.js +218 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/duotone-sea.js +218 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/duotone-space.js +218 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/funky.js +161 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/ghcolors.js +178 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/gruvbox-dark.js +177 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/gruvbox-light.js +177 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/holi-theme.js +194 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/hopscotch.js +148 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/index.js +44 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/lucario.js +154 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/material-dark.js +195 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/material-light.js +203 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/material-oceanic.js +199 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/night-owl.js +192 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/nord.js +152 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/okaidia.js +156 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/one-dark.js +501 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/one-light.js +489 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/pojoaque.js +161 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/prism.js +192 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/shades-of-purple.js +234 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/solarized-dark-atom.js +153 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/solarizedlight.js +168 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/synthwave84.js +183 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/tomorrow.js +153 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/twilight.js +214 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/vs-dark.js +155 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/vs.js +206 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/vsc-dark-plus.js +282 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/xonokai.js +180 -0
- package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/z-touch.js +196 -0
- package/node_modules/react-syntax-highlighter/package.json +130 -0
- package/node_modules/react-syntax-highlighter/scripts/build-languages-highlightjs.js +127 -0
- package/node_modules/react-syntax-highlighter/scripts/build-languages-refractor.js +132 -0
- package/node_modules/react-syntax-highlighter/scripts/build-stylesheets-highlightjs.js +131 -0
- package/node_modules/react-syntax-highlighter/scripts/build-stylesheets-refractor.js +153 -0
- package/node_modules/react-syntax-highlighter/src/async-languages/create-language-async-loader.js +6 -0
- package/node_modules/react-syntax-highlighter/src/async-languages/hljs.js +194 -0
- package/node_modules/react-syntax-highlighter/src/async-languages/prism.js +300 -0
- package/node_modules/react-syntax-highlighter/src/async-syntax-highlighter.js +155 -0
- package/node_modules/react-syntax-highlighter/src/checkForListedLanguage.js +4 -0
- package/node_modules/react-syntax-highlighter/src/create-element.js +212 -0
- package/node_modules/react-syntax-highlighter/src/default-highlight.js +9 -0
- package/node_modules/react-syntax-highlighter/src/highlight.js +439 -0
- package/node_modules/react-syntax-highlighter/src/index.js +11 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/1c.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/abnf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/accesslog.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/actionscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/ada.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/angelscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/apache.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/applescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/arcade.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/arduino.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/armasm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/asciidoc.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/aspectj.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/autohotkey.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/autoit.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/avrasm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/awk.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/axapta.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/bash.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/basic.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/bnf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/brainfuck.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/c-like.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/c.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/cal.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/capnproto.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/ceylon.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/clean.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/clojure-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/clojure.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/cmake.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/coffeescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/coq.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/cos.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/cpp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/crmsh.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/crystal.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/csharp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/csp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/css.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/d.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/dart.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/delphi.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/diff.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/django.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/dns.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/dockerfile.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/dos.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/dsconfig.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/dts.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/dust.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/ebnf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/elixir.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/elm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/erb.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/erlang-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/erlang.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/excel.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/fix.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/flix.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/fortran.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/fsharp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/gams.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/gauss.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/gcode.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/gherkin.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/glsl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/gml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/go.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/golo.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/gradle.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/groovy.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/haml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/handlebars.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/haskell.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/haxe.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/hsp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/htmlbars.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/http.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/hy.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/index.js +191 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/inform7.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/ini.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/irpf90.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/isbl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/java.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/javascript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/jboss-cli.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/json.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/julia-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/julia.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/kotlin.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/lasso.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/latex.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/ldif.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/leaf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/less.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/lisp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/livecodeserver.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/livescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/llvm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/lsl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/lua.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/makefile.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/markdown.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/mathematica.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/matlab.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/maxima.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/mel.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/mercury.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/mipsasm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/mizar.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/mojolicious.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/monkey.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/moonscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/n1ql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/nginx.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/nim.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/nix.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/node-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/nsis.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/objectivec.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/ocaml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/openscad.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/oxygene.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/parser3.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/perl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/pf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/pgsql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/php-template.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/php.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/plaintext.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/pony.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/powershell.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/processing.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/profile.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/prolog.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/properties.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/protobuf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/puppet.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/purebasic.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/python-repl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/python.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/q.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/qml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/r.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/reasonml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/rib.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/roboconf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/routeros.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/rsl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/ruby.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/ruleslanguage.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/rust.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/sas.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/scala.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/scheme.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/scilab.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/scss.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/shell.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/smali.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/smalltalk.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/sml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/sqf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/sql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/sql_more.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/stan.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/stata.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/step21.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/stylus.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/subunit.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/supported-languages.js +197 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/swift.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/taggerscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/tap.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/tcl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/thrift.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/tp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/twig.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/typescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/vala.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/vbnet.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/vbscript-html.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/vbscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/verilog.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/vhdl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/vim.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/vue.js +4 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/x86asm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/xl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/xml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/xquery.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/yaml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/hljs/zephir.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/abap.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/abnf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/actionscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/ada.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/agda.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/al.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/antlr4.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/apacheconf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/apex.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/apl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/applescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/aql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/arduino.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/arff.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/armasm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/arturo.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/asciidoc.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/asm6502.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/asmatmel.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/aspnet.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/autohotkey.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/autoit.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/avisynth.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/avro-idl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/awk.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/bash.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/basic.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/batch.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/bbcode.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/bbj.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/bicep.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/birb.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/bison.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/bnf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/bqn.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/brainfuck.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/brightscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/bro.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/bsl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/c.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cfscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/chaiscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cil.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cilkc.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cilkcpp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/clike.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/clojure.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cmake.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cobol.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/coffeescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/concurnas.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cooklang.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/coq.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/core.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cpp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/crystal.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/csharp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cshtml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/csp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/css-extras.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/css.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/csv.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cue.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/cypher.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/d.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/dart.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/dataweave.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/dax.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/dhall.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/diff.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/django.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/dns-zone-file.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/docker.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/dot.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/ebnf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/editorconfig.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/eiffel.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/ejs.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/elixir.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/elm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/erb.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/erlang.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/etlua.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/excel-formula.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/factor.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/false.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/firestore-security-rules.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/flow.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/fortran.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/fsharp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/ftl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/gap.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/gcode.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/gdscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/gedcom.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/gettext.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/gherkin.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/git.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/glsl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/gml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/gn.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/go-module.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/go.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/gradle.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/graphql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/groovy.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/haml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/handlebars.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/haskell.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/haxe.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/hcl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/hlsl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/hoon.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/hpkp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/hsts.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/http.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/ichigojam.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/icon.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/icu-message-format.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/idris.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/iecst.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/ignore.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/index.js +297 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/inform7.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/ini.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/io.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/j.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/java.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/javadoc.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/javadoclike.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/javascript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/javastacktrace.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/jexl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/jolie.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/jq.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/js-extras.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/js-templates.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/jsdoc.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/json.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/json5.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/jsonp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/jsstacktrace.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/jsx.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/julia.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/keepalived.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/keyman.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/kotlin.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/kumir.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/kusto.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/latex.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/latte.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/less.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/lilypond.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/linker-script.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/liquid.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/lisp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/livescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/llvm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/log.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/lolcode.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/lua.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/magma.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/makefile.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/markdown.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/markup-templating.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/markup.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/mata.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/matlab.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/maxscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/mel.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/mermaid.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/metafont.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/mizar.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/mongodb.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/monkey.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/moonscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/n1ql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/n4js.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/nand2tetris-hdl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/naniscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/nasm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/neon.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/nevod.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/nginx.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/nim.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/nix.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/nsis.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/objectivec.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/ocaml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/odin.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/opencl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/openqasm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/oz.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/parigp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/parser.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/pascal.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/pascaligo.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/pcaxis.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/peoplecode.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/perl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/php-extras.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/php.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/phpdoc.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/plant-uml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/plsql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/powerquery.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/powershell.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/processing.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/prolog.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/promql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/properties.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/protobuf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/psl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/pug.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/puppet.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/pure.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/purebasic.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/purescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/python.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/q.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/qml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/qore.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/qsharp.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/r.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/racket.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/reason.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/regex.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/rego.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/renpy.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/rescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/rest.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/rip.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/roboconf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/robotframework.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/ruby.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/rust.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/sas.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/sass.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/scala.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/scheme.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/scss.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/shell-session.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/smali.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/smalltalk.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/smarty.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/sml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/solidity.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/solution-file.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/soy.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/sparql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/splunk-spl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/sqf.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/sql.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/squirrel.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/stan.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/stata.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/stylus.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/supercollider.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/supported-languages.js +303 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/swift.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/systemd.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/t4-cs.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/t4-templating.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/t4-vb.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/tap.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/tcl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/textile.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/toml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/tremor.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/tsx.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/tt2.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/turtle.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/twig.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/typescript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/typoscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/unrealscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/uorazor.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/uri.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/v.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/vala.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/vbnet.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/velocity.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/verilog.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/vhdl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/vim.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/visual-basic.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/warpscript.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/wasm.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/web-idl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/wgsl.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/wiki.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/wolfram.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/wren.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/xeora.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/xml-doc.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/xojo.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/xquery.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/yaml.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/yang.js +2 -0
- package/node_modules/react-syntax-highlighter/src/languages/prism/zig.js +2 -0
- package/node_modules/react-syntax-highlighter/src/light-async.js +21 -0
- package/node_modules/react-syntax-highlighter/src/light.js +7 -0
- package/node_modules/react-syntax-highlighter/src/prism-async-light.js +19 -0
- package/node_modules/react-syntax-highlighter/src/prism-async.js +14 -0
- package/node_modules/react-syntax-highlighter/src/prism-light.js +10 -0
- package/node_modules/react-syntax-highlighter/src/prism.js +9 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/a11y-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/a11y-light.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/agate.js +99 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/an-old-hope.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/androidstudio.js +81 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/arduino-light.js +113 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/arta.js +100 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/ascetic.js +67 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-cave-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-cave-light.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-dune-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-dune-light.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-estuary-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-estuary-light.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-forest-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-forest-light.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-heath-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-heath-light.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-lakeside-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-lakeside-light.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-plateau-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-plateau-light.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-savanna-dark.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-savanna-light.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-seaside-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-seaside-light.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-sulphurpool-dark.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-sulphurpool-light.js +90 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atom-one-dark-reasonable.js +141 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atom-one-dark.js +114 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/atom-one-light.js +114 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/brown-paper.js +91 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/codepen-embed.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/color-brewer.js +99 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/darcula.js +106 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/dark.js +91 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/darkula.js +1 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/default-style.js +113 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/docco.js +109 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/dracula.js +91 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/far.js +103 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/foundation.js +98 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/github-gist.js +95 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/github.js +116 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/gml.js +112 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/googlecode.js +113 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/gradient-dark.js +131 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/gradient-light.js +131 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/grayscale.js +116 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/gruvbox-dark.js +143 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/gruvbox-light.js +143 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/hopscotch.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/hybrid.js +126 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/idea.js +119 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/index.js +97 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/ir-black.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/isbl-editor-dark.js +128 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/isbl-editor-light.js +128 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/kimbie.dark.js +99 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/kimbie.light.js +99 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/lightfair.js +117 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/lioshi.js +102 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/magula.js +101 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/mono-blue.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/monokai-sublime.js +116 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/monokai.js +114 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/night-owl.js +144 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/nnfx-dark.js +116 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/nnfx.js +116 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/nord.js +236 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/obsidian.js +117 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/ocean.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/paraiso-dark.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/paraiso-light.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/pojoaque.js +104 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/purebasic.js +118 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/qtcreator_dark.js +119 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/qtcreator_light.js +119 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/railscasts.js +108 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/rainbow.js +109 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/routeros.js +119 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/school-book.js +100 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/shades-of-purple.js +103 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/solarized-dark.js +114 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/solarized-light.js +114 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/srcery.js +109 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/stackoverflow-dark.js +111 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/stackoverflow-light.js +111 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/sunburst.js +105 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/tomorrow-night-blue.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/tomorrow-night-bright.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/tomorrow-night-eighties.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/tomorrow-night.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/tomorrow.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/vs.js +93 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/vs2015.js +136 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/xcode.js +121 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/xt256.js +101 -0
- package/node_modules/react-syntax-highlighter/src/styles/hljs/zenburn.js +96 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/a11y-dark.js +146 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/a11y-one-light.js +516 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/atom-dark.js +153 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/base16-ateliersulphurpool.light.js +197 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/cb.js +161 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/coldark-cold.js +386 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/coldark-dark.js +386 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/coy-without-shadows.js +182 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/coy.js +249 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/darcula.js +201 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/dark.js +154 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/dracula.js +154 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/duotone-dark.js +218 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/duotone-earth.js +218 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/duotone-forest.js +218 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/duotone-light.js +218 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/duotone-sea.js +218 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/duotone-space.js +218 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/funky.js +161 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/ghcolors.js +178 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/gruvbox-dark.js +177 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/gruvbox-light.js +177 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/holi-theme.js +194 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/hopscotch.js +148 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/index.js +44 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/lucario.js +154 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/material-dark.js +195 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/material-light.js +203 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/material-oceanic.js +199 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/night-owl.js +192 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/nord.js +152 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/okaidia.js +156 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/one-dark.js +501 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/one-light.js +489 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/pojoaque.js +161 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/prism.js +192 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/shades-of-purple.js +234 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/solarized-dark-atom.js +153 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/solarizedlight.js +168 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/synthwave84.js +183 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/tomorrow.js +153 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/twilight.js +214 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/vs-dark.js +155 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/vs.js +206 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/vsc-dark-plus.js +282 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/xonokai.js +180 -0
- package/node_modules/react-syntax-highlighter/src/styles/prism/z-touch.js +196 -0
- package/node_modules/refractor/lang/abap.d.ts +7 -0
- package/node_modules/refractor/lang/abap.js +62 -0
- package/node_modules/refractor/lang/abnf.d.ts +7 -0
- package/node_modules/refractor/lang/abnf.js +66 -0
- package/node_modules/refractor/lang/actionscript.d.ts +7 -0
- package/node_modules/refractor/lang/actionscript.js +32 -0
- package/node_modules/refractor/lang/ada.d.ts +7 -0
- package/node_modules/refractor/lang/ada.js +34 -0
- package/node_modules/refractor/lang/agda.d.ts +7 -0
- package/node_modules/refractor/lang/agda.js +34 -0
- package/node_modules/refractor/lang/al.d.ts +7 -0
- package/node_modules/refractor/lang/al.js +38 -0
- package/node_modules/refractor/lang/antlr4.d.ts +7 -0
- package/node_modules/refractor/lang/antlr4.js +77 -0
- package/node_modules/refractor/lang/apacheconf.d.ts +7 -0
- package/node_modules/refractor/lang/apacheconf.js +59 -0
- package/node_modules/refractor/lang/apex.d.ts +7 -0
- package/node_modules/refractor/lang/apex.js +88 -0
- package/node_modules/refractor/lang/apl.d.ts +7 -0
- package/node_modules/refractor/lang/apl.js +44 -0
- package/node_modules/refractor/lang/applescript.d.ts +7 -0
- package/node_modules/refractor/lang/applescript.js +29 -0
- package/node_modules/refractor/lang/aql.d.ts +7 -0
- package/node_modules/refractor/lang/aql.js +60 -0
- package/node_modules/refractor/lang/arduino.d.ts +7 -0
- package/node_modules/refractor/lang/arduino.js +21 -0
- package/node_modules/refractor/lang/arff.d.ts +7 -0
- package/node_modules/refractor/lang/arff.js +20 -0
- package/node_modules/refractor/lang/armasm.d.ts +7 -0
- package/node_modules/refractor/lang/armasm.js +57 -0
- package/node_modules/refractor/lang/arturo.d.ts +7 -0
- package/node_modules/refractor/lang/arturo.js +102 -0
- package/node_modules/refractor/lang/asciidoc.d.ts +7 -0
- package/node_modules/refractor/lang/asciidoc.js +241 -0
- package/node_modules/refractor/lang/asm6502.d.ts +7 -0
- package/node_modules/refractor/lang/asm6502.js +40 -0
- package/node_modules/refractor/lang/asmatmel.d.ts +7 -0
- package/node_modules/refractor/lang/asmatmel.js +52 -0
- package/node_modules/refractor/lang/aspnet.d.ts +7 -0
- package/node_modules/refractor/lang/aspnet.js +73 -0
- package/node_modules/refractor/lang/autohotkey.d.ts +7 -0
- package/node_modules/refractor/lang/autohotkey.js +55 -0
- package/node_modules/refractor/lang/autoit.d.ts +7 -0
- package/node_modules/refractor/lang/autoit.js +46 -0
- package/node_modules/refractor/lang/avisynth.d.ts +7 -0
- package/node_modules/refractor/lang/avisynth.js +200 -0
- package/node_modules/refractor/lang/avro-idl.d.ts +7 -0
- package/node_modules/refractor/lang/avro-idl.js +57 -0
- package/node_modules/refractor/lang/awk.d.ts +7 -0
- package/node_modules/refractor/lang/awk.js +39 -0
- package/node_modules/refractor/lang/bash.d.ts +7 -0
- package/node_modules/refractor/lang/bash.js +250 -0
- package/node_modules/refractor/lang/basic.d.ts +7 -0
- package/node_modules/refractor/lang/basic.js +29 -0
- package/node_modules/refractor/lang/batch.d.ts +7 -0
- package/node_modules/refractor/lang/batch.js +110 -0
- package/node_modules/refractor/lang/bbcode.d.ts +7 -0
- package/node_modules/refractor/lang/bbcode.js +39 -0
- package/node_modules/refractor/lang/bbj.d.ts +7 -0
- package/node_modules/refractor/lang/bbj.js +30 -0
- package/node_modules/refractor/lang/bicep.d.ts +7 -0
- package/node_modules/refractor/lang/bicep.js +85 -0
- package/node_modules/refractor/lang/birb.d.ts +7 -0
- package/node_modules/refractor/lang/birb.js +34 -0
- package/node_modules/refractor/lang/bison.d.ts +7 -0
- package/node_modules/refractor/lang/bison.js +50 -0
- package/node_modules/refractor/lang/bnf.d.ts +7 -0
- package/node_modules/refractor/lang/bnf.js +30 -0
- package/node_modules/refractor/lang/bqn.d.ts +7 -0
- package/node_modules/refractor/lang/bqn.js +74 -0
- package/node_modules/refractor/lang/brainfuck.d.ts +7 -0
- package/node_modules/refractor/lang/brainfuck.js +30 -0
- package/node_modules/refractor/lang/brightscript.d.ts +7 -0
- package/node_modules/refractor/lang/brightscript.js +57 -0
- package/node_modules/refractor/lang/bro.d.ts +7 -0
- package/node_modules/refractor/lang/bro.js +39 -0
- package/node_modules/refractor/lang/bsl.d.ts +7 -0
- package/node_modules/refractor/lang/bsl.js +88 -0
- package/node_modules/refractor/lang/c.d.ts +7 -0
- package/node_modules/refractor/lang/c.js +94 -0
- package/node_modules/refractor/lang/cfscript.d.ts +7 -0
- package/node_modules/refractor/lang/cfscript.js +58 -0
- package/node_modules/refractor/lang/chaiscript.d.ts +7 -0
- package/node_modules/refractor/lang/chaiscript.js +73 -0
- package/node_modules/refractor/lang/cil.d.ts +7 -0
- package/node_modules/refractor/lang/cil.js +31 -0
- package/node_modules/refractor/lang/cilkc.d.ts +7 -0
- package/node_modules/refractor/lang/cilkc.js +19 -0
- package/node_modules/refractor/lang/cilkcpp.d.ts +7 -0
- package/node_modules/refractor/lang/cilkcpp.js +20 -0
- package/node_modules/refractor/lang/clike.d.ts +7 -0
- package/node_modules/refractor/lang/clike.js +43 -0
- package/node_modules/refractor/lang/clojure.d.ts +7 -0
- package/node_modules/refractor/lang/clojure.js +43 -0
- package/node_modules/refractor/lang/cmake.d.ts +7 -0
- package/node_modules/refractor/lang/cmake.js +44 -0
- package/node_modules/refractor/lang/cobol.d.ts +7 -0
- package/node_modules/refractor/lang/cobol.js +62 -0
- package/node_modules/refractor/lang/coffeescript.d.ts +7 -0
- package/node_modules/refractor/lang/coffeescript.js +97 -0
- package/node_modules/refractor/lang/concurnas.d.ts +7 -0
- package/node_modules/refractor/lang/concurnas.js +74 -0
- package/node_modules/refractor/lang/cooklang.d.ts +7 -0
- package/node_modules/refractor/lang/cooklang.js +148 -0
- package/node_modules/refractor/lang/coq.d.ts +7 -0
- package/node_modules/refractor/lang/coq.js +67 -0
- package/node_modules/refractor/lang/cpp.d.ts +7 -0
- package/node_modules/refractor/lang/cpp.js +128 -0
- package/node_modules/refractor/lang/crystal.d.ts +7 -0
- package/node_modules/refractor/lang/crystal.js +66 -0
- package/node_modules/refractor/lang/csharp.d.ts +7 -0
- package/node_modules/refractor/lang/csharp.js +486 -0
- package/node_modules/refractor/lang/cshtml.d.ts +7 -0
- package/node_modules/refractor/lang/cshtml.js +268 -0
- package/node_modules/refractor/lang/csp.d.ts +7 -0
- package/node_modules/refractor/lang/csp.js +87 -0
- package/node_modules/refractor/lang/css-extras.d.ts +7 -0
- package/node_modules/refractor/lang/css-extras.js +129 -0
- package/node_modules/refractor/lang/css.d.ts +7 -0
- package/node_modules/refractor/lang/css.js +90 -0
- package/node_modules/refractor/lang/csv.d.ts +7 -0
- package/node_modules/refractor/lang/csv.js +16 -0
- package/node_modules/refractor/lang/cue.d.ts +7 -0
- package/node_modules/refractor/lang/cue.js +98 -0
- package/node_modules/refractor/lang/cypher.d.ts +7 -0
- package/node_modules/refractor/lang/cypher.js +44 -0
- package/node_modules/refractor/lang/d.d.ts +7 -0
- package/node_modules/refractor/lang/d.js +98 -0
- package/node_modules/refractor/lang/dart.d.ts +7 -0
- package/node_modules/refractor/lang/dart.js +94 -0
- package/node_modules/refractor/lang/dataweave.d.ts +7 -0
- package/node_modules/refractor/lang/dataweave.js +52 -0
- package/node_modules/refractor/lang/dax.d.ts +7 -0
- package/node_modules/refractor/lang/dax.js +40 -0
- package/node_modules/refractor/lang/dhall.d.ts +7 -0
- package/node_modules/refractor/lang/dhall.js +81 -0
- package/node_modules/refractor/lang/diff.d.ts +7 -0
- package/node_modules/refractor/lang/diff.js +73 -0
- package/node_modules/refractor/lang/django.d.ts +7 -0
- package/node_modules/refractor/lang/django.js +68 -0
- package/node_modules/refractor/lang/dns-zone-file.d.ts +7 -0
- package/node_modules/refractor/lang/dns-zone-file.js +43 -0
- package/node_modules/refractor/lang/docker.d.ts +7 -0
- package/node_modules/refractor/lang/docker.js +129 -0
- package/node_modules/refractor/lang/dot.d.ts +7 -0
- package/node_modules/refractor/lang/dot.js +93 -0
- package/node_modules/refractor/lang/ebnf.d.ts +7 -0
- package/node_modules/refractor/lang/ebnf.js +30 -0
- package/node_modules/refractor/lang/editorconfig.d.ts +7 -0
- package/node_modules/refractor/lang/editorconfig.js +37 -0
- package/node_modules/refractor/lang/eiffel.d.ts +7 -0
- package/node_modules/refractor/lang/eiffel.js +45 -0
- package/node_modules/refractor/lang/ejs.d.ts +7 -0
- package/node_modules/refractor/lang/ejs.js +39 -0
- package/node_modules/refractor/lang/elixir.d.ts +7 -0
- package/node_modules/refractor/lang/elixir.js +111 -0
- package/node_modules/refractor/lang/elm.d.ts +7 -0
- package/node_modules/refractor/lang/elm.js +59 -0
- package/node_modules/refractor/lang/erb.d.ts +7 -0
- package/node_modules/refractor/lang/erb.js +40 -0
- package/node_modules/refractor/lang/erlang.d.ts +7 -0
- package/node_modules/refractor/lang/erlang.js +53 -0
- package/node_modules/refractor/lang/etlua.d.ts +7 -0
- package/node_modules/refractor/lang/etlua.js +37 -0
- package/node_modules/refractor/lang/excel-formula.d.ts +7 -0
- package/node_modules/refractor/lang/excel-formula.js +78 -0
- package/node_modules/refractor/lang/factor.d.ts +7 -0
- package/node_modules/refractor/lang/factor.js +937 -0
- package/node_modules/refractor/lang/false.d.ts +7 -0
- package/node_modules/refractor/lang/false.js +42 -0
- package/node_modules/refractor/lang/firestore-security-rules.d.ts +7 -0
- package/node_modules/refractor/lang/firestore-security-rules.js +50 -0
- package/node_modules/refractor/lang/flow.d.ts +7 -0
- package/node_modules/refractor/lang/flow.js +47 -0
- package/node_modules/refractor/lang/fortran.d.ts +7 -0
- package/node_modules/refractor/lang/fortran.js +51 -0
- package/node_modules/refractor/lang/fsharp.d.ts +7 -0
- package/node_modules/refractor/lang/fsharp.js +91 -0
- package/node_modules/refractor/lang/ftl.d.ts +7 -0
- package/node_modules/refractor/lang/ftl.js +134 -0
- package/node_modules/refractor/lang/gap.d.ts +7 -0
- package/node_modules/refractor/lang/gap.js +61 -0
- package/node_modules/refractor/lang/gcode.d.ts +7 -0
- package/node_modules/refractor/lang/gcode.js +26 -0
- package/node_modules/refractor/lang/gdscript.d.ts +7 -0
- package/node_modules/refractor/lang/gdscript.js +40 -0
- package/node_modules/refractor/lang/gedcom.d.ts +7 -0
- package/node_modules/refractor/lang/gedcom.js +40 -0
- package/node_modules/refractor/lang/gettext.d.ts +7 -0
- package/node_modules/refractor/lang/gettext.js +52 -0
- package/node_modules/refractor/lang/gherkin.d.ts +7 -0
- package/node_modules/refractor/lang/gherkin.js +95 -0
- package/node_modules/refractor/lang/git.d.ts +7 -0
- package/node_modules/refractor/lang/git.js +73 -0
- package/node_modules/refractor/lang/glsl.d.ts +7 -0
- package/node_modules/refractor/lang/glsl.js +16 -0
- package/node_modules/refractor/lang/gml.d.ts +7 -0
- package/node_modules/refractor/lang/gml.js +25 -0
- package/node_modules/refractor/lang/gn.d.ts +7 -0
- package/node_modules/refractor/lang/gn.js +61 -0
- package/node_modules/refractor/lang/go-module.d.ts +7 -0
- package/node_modules/refractor/lang/go-module.js +34 -0
- package/node_modules/refractor/lang/go.d.ts +7 -0
- package/node_modules/refractor/lang/go.js +41 -0
- package/node_modules/refractor/lang/gradle.d.ts +7 -0
- package/node_modules/refractor/lang/gradle.js +71 -0
- package/node_modules/refractor/lang/graphql.d.ts +7 -0
- package/node_modules/refractor/lang/graphql.js +226 -0
- package/node_modules/refractor/lang/groovy.d.ts +7 -0
- package/node_modules/refractor/lang/groovy.js +74 -0
- package/node_modules/refractor/lang/haml.d.ts +7 -0
- package/node_modules/refractor/lang/haml.js +173 -0
- package/node_modules/refractor/lang/handlebars.d.ts +7 -0
- package/node_modules/refractor/lang/handlebars.js +54 -0
- package/node_modules/refractor/lang/haskell.d.ts +7 -0
- package/node_modules/refractor/lang/haskell.js +80 -0
- package/node_modules/refractor/lang/haxe.d.ts +7 -0
- package/node_modules/refractor/lang/haxe.js +89 -0
- package/node_modules/refractor/lang/hcl.d.ts +7 -0
- package/node_modules/refractor/lang/hcl.js +75 -0
- package/node_modules/refractor/lang/hlsl.d.ts +7 -0
- package/node_modules/refractor/lang/hlsl.js +32 -0
- package/node_modules/refractor/lang/hoon.d.ts +7 -0
- package/node_modules/refractor/lang/hoon.js +25 -0
- package/node_modules/refractor/lang/hpkp.d.ts +7 -0
- package/node_modules/refractor/lang/hpkp.js +25 -0
- package/node_modules/refractor/lang/hsts.d.ts +7 -0
- package/node_modules/refractor/lang/hsts.js +24 -0
- package/node_modules/refractor/lang/http.d.ts +7 -0
- package/node_modules/refractor/lang/http.js +164 -0
- package/node_modules/refractor/lang/ichigojam.d.ts +7 -0
- package/node_modules/refractor/lang/ichigojam.js +27 -0
- package/node_modules/refractor/lang/icon.d.ts +7 -0
- package/node_modules/refractor/lang/icon.js +33 -0
- package/node_modules/refractor/lang/icu-message-format.d.ts +7 -0
- package/node_modules/refractor/lang/icu-message-format.js +164 -0
- package/node_modules/refractor/lang/idris.d.ts +7 -0
- package/node_modules/refractor/lang/idris.js +30 -0
- package/node_modules/refractor/lang/iecst.d.ts +7 -0
- package/node_modules/refractor/lang/iecst.js +46 -0
- package/node_modules/refractor/lang/ignore.d.ts +7 -0
- package/node_modules/refractor/lang/ignore.js +31 -0
- package/node_modules/refractor/lang/inform7.d.ts +7 -0
- package/node_modules/refractor/lang/inform7.js +77 -0
- package/node_modules/refractor/lang/ini.d.ts +7 -0
- package/node_modules/refractor/lang/ini.js +52 -0
- package/node_modules/refractor/lang/io.d.ts +7 -0
- package/node_modules/refractor/lang/io.js +35 -0
- package/node_modules/refractor/lang/j.d.ts +7 -0
- package/node_modules/refractor/lang/j.js +41 -0
- package/node_modules/refractor/lang/java.d.ts +7 -0
- package/node_modules/refractor/lang/java.js +163 -0
- package/node_modules/refractor/lang/javadoc.d.ts +7 -0
- package/node_modules/refractor/lang/javadoc.js +108 -0
- package/node_modules/refractor/lang/javadoclike.d.ts +7 -0
- package/node_modules/refractor/lang/javadoclike.js +94 -0
- package/node_modules/refractor/lang/javascript.d.ts +7 -0
- package/node_modules/refractor/lang/javascript.js +195 -0
- package/node_modules/refractor/lang/javastacktrace.d.ts +7 -0
- package/node_modules/refractor/lang/javastacktrace.js +149 -0
- package/node_modules/refractor/lang/jexl.d.ts +7 -0
- package/node_modules/refractor/lang/jexl.js +26 -0
- package/node_modules/refractor/lang/jolie.d.ts +7 -0
- package/node_modules/refractor/lang/jolie.js +58 -0
- package/node_modules/refractor/lang/jq.d.ts +7 -0
- package/node_modules/refractor/lang/jq.js +80 -0
- package/node_modules/refractor/lang/js-extras.d.ts +7 -0
- package/node_modules/refractor/lang/js-extras.js +160 -0
- package/node_modules/refractor/lang/js-templates.d.ts +7 -0
- package/node_modules/refractor/lang/js-templates.js +366 -0
- package/node_modules/refractor/lang/jsdoc.d.ts +7 -0
- package/node_modules/refractor/lang/jsdoc.js +102 -0
- package/node_modules/refractor/lang/json.d.ts +7 -0
- package/node_modules/refractor/lang/json.js +36 -0
- package/node_modules/refractor/lang/json5.d.ts +7 -0
- package/node_modules/refractor/lang/json5.js +34 -0
- package/node_modules/refractor/lang/jsonp.d.ts +7 -0
- package/node_modules/refractor/lang/jsonp.js +18 -0
- package/node_modules/refractor/lang/jsstacktrace.d.ts +7 -0
- package/node_modules/refractor/lang/jsstacktrace.js +53 -0
- package/node_modules/refractor/lang/jsx.d.ts +7 -0
- package/node_modules/refractor/lang/jsx.js +193 -0
- package/node_modules/refractor/lang/julia.d.ts +7 -0
- package/node_modules/refractor/lang/julia.js +50 -0
- package/node_modules/refractor/lang/keepalived.d.ts +7 -0
- package/node_modules/refractor/lang/keepalived.js +63 -0
- package/node_modules/refractor/lang/keyman.d.ts +7 -0
- package/node_modules/refractor/lang/keyman.js +54 -0
- package/node_modules/refractor/lang/kotlin.d.ts +7 -0
- package/node_modules/refractor/lang/kotlin.js +96 -0
- package/node_modules/refractor/lang/kumir.d.ts +7 -0
- package/node_modules/refractor/lang/kumir.js +116 -0
- package/node_modules/refractor/lang/kusto.d.ts +7 -0
- package/node_modules/refractor/lang/kusto.js +54 -0
- package/node_modules/refractor/lang/latex.d.ts +7 -0
- package/node_modules/refractor/lang/latex.js +77 -0
- package/node_modules/refractor/lang/latte.d.ts +7 -0
- package/node_modules/refractor/lang/latte.js +85 -0
- package/node_modules/refractor/lang/less.d.ts +7 -0
- package/node_modules/refractor/lang/less.js +65 -0
- package/node_modules/refractor/lang/lilypond.d.ts +7 -0
- package/node_modules/refractor/lang/lilypond.js +90 -0
- package/node_modules/refractor/lang/linker-script.d.ts +7 -0
- package/node_modules/refractor/lang/linker-script.js +35 -0
- package/node_modules/refractor/lang/liquid.d.ts +7 -0
- package/node_modules/refractor/lang/liquid.js +82 -0
- package/node_modules/refractor/lang/lisp.d.ts +7 -0
- package/node_modules/refractor/lang/lisp.js +223 -0
- package/node_modules/refractor/lang/livescript.d.ts +7 -0
- package/node_modules/refractor/lang/livescript.js +132 -0
- package/node_modules/refractor/lang/llvm.d.ts +7 -0
- package/node_modules/refractor/lang/llvm.js +31 -0
- package/node_modules/refractor/lang/log.d.ts +7 -0
- package/node_modules/refractor/lang/log.js +129 -0
- package/node_modules/refractor/lang/lolcode.d.ts +7 -0
- package/node_modules/refractor/lang/lolcode.js +60 -0
- package/node_modules/refractor/lang/lua.d.ts +7 -0
- package/node_modules/refractor/lang/lua.js +33 -0
- package/node_modules/refractor/lang/magma.d.ts +7 -0
- package/node_modules/refractor/lang/magma.js +43 -0
- package/node_modules/refractor/lang/makefile.d.ts +7 -0
- package/node_modules/refractor/lang/makefile.js +42 -0
- package/node_modules/refractor/lang/markdown.d.ts +7 -0
- package/node_modules/refractor/lang/markdown.js +449 -0
- package/node_modules/refractor/lang/markup-templating.d.ts +7 -0
- package/node_modules/refractor/lang/markup-templating.js +134 -0
- package/node_modules/refractor/lang/markup.d.ts +7 -0
- package/node_modules/refractor/lang/markup.js +202 -0
- package/node_modules/refractor/lang/mata.d.ts +7 -0
- package/node_modules/refractor/lang/mata.js +59 -0
- package/node_modules/refractor/lang/matlab.d.ts +7 -0
- package/node_modules/refractor/lang/matlab.js +24 -0
- package/node_modules/refractor/lang/maxscript.d.ts +7 -0
- package/node_modules/refractor/lang/maxscript.js +98 -0
- package/node_modules/refractor/lang/mel.d.ts +7 -0
- package/node_modules/refractor/lang/mel.js +56 -0
- package/node_modules/refractor/lang/mermaid.d.ts +7 -0
- package/node_modules/refractor/lang/mermaid.js +122 -0
- package/node_modules/refractor/lang/metafont.d.ts +7 -0
- package/node_modules/refractor/lang/metafont.js +102 -0
- package/node_modules/refractor/lang/mizar.d.ts +7 -0
- package/node_modules/refractor/lang/mizar.js +23 -0
- package/node_modules/refractor/lang/mongodb.d.ts +7 -0
- package/node_modules/refractor/lang/mongodb.js +307 -0
- package/node_modules/refractor/lang/monkey.d.ts +7 -0
- package/node_modules/refractor/lang/monkey.js +41 -0
- package/node_modules/refractor/lang/moonscript.d.ts +7 -0
- package/node_modules/refractor/lang/moonscript.js +70 -0
- package/node_modules/refractor/lang/n1ql.d.ts +7 -0
- package/node_modules/refractor/lang/n1ql.js +36 -0
- package/node_modules/refractor/lang/n4js.d.ts +7 -0
- package/node_modules/refractor/lang/n4js.js +25 -0
- package/node_modules/refractor/lang/nand2tetris-hdl.d.ts +7 -0
- package/node_modules/refractor/lang/nand2tetris-hdl.js +19 -0
- package/node_modules/refractor/lang/naniscript.d.ts +7 -0
- package/node_modules/refractor/lang/naniscript.js +176 -0
- package/node_modules/refractor/lang/nasm.d.ts +7 -0
- package/node_modules/refractor/lang/nasm.js +36 -0
- package/node_modules/refractor/lang/neon.d.ts +7 -0
- package/node_modules/refractor/lang/neon.js +54 -0
- package/node_modules/refractor/lang/nevod.d.ts +7 -0
- package/node_modules/refractor/lang/nevod.js +139 -0
- package/node_modules/refractor/lang/nginx.d.ts +7 -0
- package/node_modules/refractor/lang/nginx.js +63 -0
- package/node_modules/refractor/lang/nim.d.ts +7 -0
- package/node_modules/refractor/lang/nim.js +57 -0
- package/node_modules/refractor/lang/nix.d.ts +7 -0
- package/node_modules/refractor/lang/nix.js +48 -0
- package/node_modules/refractor/lang/nsis.d.ts +7 -0
- package/node_modules/refractor/lang/nsis.js +43 -0
- package/node_modules/refractor/lang/objectivec.d.ts +7 -0
- package/node_modules/refractor/lang/objectivec.js +23 -0
- package/node_modules/refractor/lang/ocaml.d.ts +7 -0
- package/node_modules/refractor/lang/ocaml.js +69 -0
- package/node_modules/refractor/lang/odin.d.ts +7 -0
- package/node_modules/refractor/lang/odin.js +98 -0
- package/node_modules/refractor/lang/opencl.d.ts +7 -0
- package/node_modules/refractor/lang/opencl.js +78 -0
- package/node_modules/refractor/lang/openqasm.d.ts +7 -0
- package/node_modules/refractor/lang/openqasm.js +33 -0
- package/node_modules/refractor/lang/oz.d.ts +7 -0
- package/node_modules/refractor/lang/oz.js +41 -0
- package/node_modules/refractor/lang/parigp.d.ts +7 -0
- package/node_modules/refractor/lang/parigp.js +63 -0
- package/node_modules/refractor/lang/parser.d.ts +7 -0
- package/node_modules/refractor/lang/parser.js +88 -0
- package/node_modules/refractor/lang/pascal.d.ts +7 -0
- package/node_modules/refractor/lang/pascal.js +83 -0
- package/node_modules/refractor/lang/pascaligo.d.ts +7 -0
- package/node_modules/refractor/lang/pascaligo.js +97 -0
- package/node_modules/refractor/lang/pcaxis.d.ts +7 -0
- package/node_modules/refractor/lang/pcaxis.js +64 -0
- package/node_modules/refractor/lang/peoplecode.d.ts +7 -0
- package/node_modules/refractor/lang/peoplecode.js +54 -0
- package/node_modules/refractor/lang/perl.d.ts +7 -0
- package/node_modules/refractor/lang/perl.js +160 -0
- package/node_modules/refractor/lang/php-extras.d.ts +7 -0
- package/node_modules/refractor/lang/php-extras.js +27 -0
- package/node_modules/refractor/lang/php.d.ts +7 -0
- package/node_modules/refractor/lang/php.js +361 -0
- package/node_modules/refractor/lang/phpdoc.d.ts +7 -0
- package/node_modules/refractor/lang/phpdoc.js +44 -0
- package/node_modules/refractor/lang/plant-uml.d.ts +7 -0
- package/node_modules/refractor/lang/plant-uml.js +123 -0
- package/node_modules/refractor/lang/plsql.d.ts +7 -0
- package/node_modules/refractor/lang/plsql.js +29 -0
- package/node_modules/refractor/lang/powerquery.d.ts +7 -0
- package/node_modules/refractor/lang/powerquery.js +67 -0
- package/node_modules/refractor/lang/powershell.d.ts +7 -0
- package/node_modules/refractor/lang/powershell.js +68 -0
- package/node_modules/refractor/lang/processing.d.ts +7 -0
- package/node_modules/refractor/lang/processing.js +27 -0
- package/node_modules/refractor/lang/prolog.d.ts +7 -0
- package/node_modules/refractor/lang/prolog.js +29 -0
- package/node_modules/refractor/lang/promql.d.ts +7 -0
- package/node_modules/refractor/lang/promql.js +112 -0
- package/node_modules/refractor/lang/properties.d.ts +7 -0
- package/node_modules/refractor/lang/properties.js +24 -0
- package/node_modules/refractor/lang/protobuf.d.ts +7 -0
- package/node_modules/refractor/lang/protobuf.js +55 -0
- package/node_modules/refractor/lang/psl.d.ts +7 -0
- package/node_modules/refractor/lang/psl.js +49 -0
- package/node_modules/refractor/lang/pug.d.ts +7 -0
- package/node_modules/refractor/lang/pug.js +220 -0
- package/node_modules/refractor/lang/puppet.d.ts +7 -0
- package/node_modules/refractor/lang/puppet.js +155 -0
- package/node_modules/refractor/lang/pure.d.ts +7 -0
- package/node_modules/refractor/lang/pure.js +106 -0
- package/node_modules/refractor/lang/purebasic.d.ts +7 -0
- package/node_modules/refractor/lang/purebasic.js +82 -0
- package/node_modules/refractor/lang/purescript.d.ts +7 -0
- package/node_modules/refractor/lang/purescript.js +42 -0
- package/node_modules/refractor/lang/python.d.ts +7 -0
- package/node_modules/refractor/lang/python.js +80 -0
- package/node_modules/refractor/lang/q.d.ts +7 -0
- package/node_modules/refractor/lang/q.js +64 -0
- package/node_modules/refractor/lang/qml.d.ts +7 -0
- package/node_modules/refractor/lang/qml.js +93 -0
- package/node_modules/refractor/lang/qore.d.ts +7 -0
- package/node_modules/refractor/lang/qore.js +35 -0
- package/node_modules/refractor/lang/qsharp.d.ts +7 -0
- package/node_modules/refractor/lang/qsharp.js +151 -0
- package/node_modules/refractor/lang/r.d.ts +7 -0
- package/node_modules/refractor/lang/r.js +33 -0
- package/node_modules/refractor/lang/racket.d.ts +7 -0
- package/node_modules/refractor/lang/racket.js +28 -0
- package/node_modules/refractor/lang/reason.d.ts +7 -0
- package/node_modules/refractor/lang/reason.js +39 -0
- package/node_modules/refractor/lang/regex.d.ts +7 -0
- package/node_modules/refractor/lang/regex.js +112 -0
- package/node_modules/refractor/lang/rego.d.ts +7 -0
- package/node_modules/refractor/lang/rego.js +39 -0
- package/node_modules/refractor/lang/renpy.d.ts +7 -0
- package/node_modules/refractor/lang/renpy.js +34 -0
- package/node_modules/refractor/lang/rescript.d.ts +7 -0
- package/node_modules/refractor/lang/rescript.js +76 -0
- package/node_modules/refractor/lang/rest.d.ts +7 -0
- package/node_modules/refractor/lang/rest.js +221 -0
- package/node_modules/refractor/lang/rip.d.ts +7 -0
- package/node_modules/refractor/lang/rip.js +41 -0
- package/node_modules/refractor/lang/roboconf.d.ts +7 -0
- package/node_modules/refractor/lang/roboconf.js +38 -0
- package/node_modules/refractor/lang/robotframework.d.ts +7 -0
- package/node_modules/refractor/lang/robotframework.js +111 -0
- package/node_modules/refractor/lang/ruby.d.ts +7 -0
- package/node_modules/refractor/lang/ruby.js +206 -0
- package/node_modules/refractor/lang/rust.d.ts +7 -0
- package/node_modules/refractor/lang/rust.js +134 -0
- package/node_modules/refractor/lang/sas.d.ts +7 -0
- package/node_modules/refractor/lang/sas.js +368 -0
- package/node_modules/refractor/lang/sass.d.ts +7 -0
- package/node_modules/refractor/lang/sass.js +85 -0
- package/node_modules/refractor/lang/scala.d.ts +7 -0
- package/node_modules/refractor/lang/scala.js +64 -0
- package/node_modules/refractor/lang/scheme.d.ts +7 -0
- package/node_modules/refractor/lang/scheme.js +143 -0
- package/node_modules/refractor/lang/scss.d.ts +7 -0
- package/node_modules/refractor/lang/scss.js +90 -0
- package/node_modules/refractor/lang/shell-session.d.ts +7 -0
- package/node_modules/refractor/lang/shell-session.js +82 -0
- package/node_modules/refractor/lang/smali.d.ts +7 -0
- package/node_modules/refractor/lang/smali.js +95 -0
- package/node_modules/refractor/lang/smalltalk.d.ts +7 -0
- package/node_modules/refractor/lang/smalltalk.js +48 -0
- package/node_modules/refractor/lang/smarty.d.ts +7 -0
- package/node_modules/refractor/lang/smarty.js +147 -0
- package/node_modules/refractor/lang/sml.d.ts +7 -0
- package/node_modules/refractor/lang/sml.js +79 -0
- package/node_modules/refractor/lang/solidity.d.ts +7 -0
- package/node_modules/refractor/lang/solidity.js +34 -0
- package/node_modules/refractor/lang/solution-file.d.ts +7 -0
- package/node_modules/refractor/lang/solution-file.js +58 -0
- package/node_modules/refractor/lang/soy.d.ts +7 -0
- package/node_modules/refractor/lang/soy.js +110 -0
- package/node_modules/refractor/lang/sparql.d.ts +7 -0
- package/node_modules/refractor/lang/sparql.js +27 -0
- package/node_modules/refractor/lang/splunk-spl.d.ts +7 -0
- package/node_modules/refractor/lang/splunk-spl.js +35 -0
- package/node_modules/refractor/lang/sqf.d.ts +7 -0
- package/node_modules/refractor/lang/sqf.js +48 -0
- package/node_modules/refractor/lang/sql.d.ts +7 -0
- package/node_modules/refractor/lang/sql.js +46 -0
- package/node_modules/refractor/lang/squirrel.d.ts +7 -0
- package/node_modules/refractor/lang/squirrel.js +56 -0
- package/node_modules/refractor/lang/stan.d.ts +7 -0
- package/node_modules/refractor/lang/stan.js +73 -0
- package/node_modules/refractor/lang/stata.d.ts +7 -0
- package/node_modules/refractor/lang/stata.js +89 -0
- package/node_modules/refractor/lang/stylus.d.ts +7 -0
- package/node_modules/refractor/lang/stylus.js +150 -0
- package/node_modules/refractor/lang/supercollider.d.ts +7 -0
- package/node_modules/refractor/lang/supercollider.js +44 -0
- package/node_modules/refractor/lang/swift.d.ts +7 -0
- package/node_modules/refractor/lang/swift.js +157 -0
- package/node_modules/refractor/lang/systemd.d.ts +7 -0
- package/node_modules/refractor/lang/systemd.js +81 -0
- package/node_modules/refractor/lang/t4-cs.d.ts +7 -0
- package/node_modules/refractor/lang/t4-cs.js +16 -0
- package/node_modules/refractor/lang/t4-templating.d.ts +7 -0
- package/node_modules/refractor/lang/t4-templating.js +56 -0
- package/node_modules/refractor/lang/t4-vb.d.ts +7 -0
- package/node_modules/refractor/lang/t4-vb.js +15 -0
- package/node_modules/refractor/lang/tap.d.ts +7 -0
- package/node_modules/refractor/lang/tap.js +34 -0
- package/node_modules/refractor/lang/tcl.d.ts +7 -0
- package/node_modules/refractor/lang/tcl.js +59 -0
- package/node_modules/refractor/lang/textile.d.ts +7 -0
- package/node_modules/refractor/lang/textile.js +304 -0
- package/node_modules/refractor/lang/toml.d.ts +7 -0
- package/node_modules/refractor/lang/toml.js +70 -0
- package/node_modules/refractor/lang/tremor.d.ts +7 -0
- package/node_modules/refractor/lang/tremor.js +86 -0
- package/node_modules/refractor/lang/tsx.d.ts +7 -0
- package/node_modules/refractor/lang/tsx.js +32 -0
- package/node_modules/refractor/lang/tt2.d.ts +7 -0
- package/node_modules/refractor/lang/tt2.js +65 -0
- package/node_modules/refractor/lang/turtle.d.ts +7 -0
- package/node_modules/refractor/lang/turtle.js +64 -0
- package/node_modules/refractor/lang/twig.d.ts +7 -0
- package/node_modules/refractor/lang/twig.js +52 -0
- package/node_modules/refractor/lang/typescript.d.ts +7 -0
- package/node_modules/refractor/lang/typescript.js +71 -0
- package/node_modules/refractor/lang/typoscript.d.ts +7 -0
- package/node_modules/refractor/lang/typoscript.js +89 -0
- package/node_modules/refractor/lang/unrealscript.d.ts +7 -0
- package/node_modules/refractor/lang/unrealscript.js +53 -0
- package/node_modules/refractor/lang/uorazor.d.ts +7 -0
- package/node_modules/refractor/lang/uorazor.js +63 -0
- package/node_modules/refractor/lang/uri.d.ts +7 -0
- package/node_modules/refractor/lang/uri.js +105 -0
- package/node_modules/refractor/lang/v.d.ts +7 -0
- package/node_modules/refractor/lang/v.js +95 -0
- package/node_modules/refractor/lang/vala.d.ts +7 -0
- package/node_modules/refractor/lang/vala.js +100 -0
- package/node_modules/refractor/lang/vbnet.d.ts +7 -0
- package/node_modules/refractor/lang/vbnet.js +35 -0
- package/node_modules/refractor/lang/velocity.d.ts +7 -0
- package/node_modules/refractor/lang/velocity.js +83 -0
- package/node_modules/refractor/lang/verilog.d.ts +7 -0
- package/node_modules/refractor/lang/verilog.js +38 -0
- package/node_modules/refractor/lang/vhdl.d.ts +7 -0
- package/node_modules/refractor/lang/vhdl.js +38 -0
- package/node_modules/refractor/lang/vim.d.ts +7 -0
- package/node_modules/refractor/lang/vim.js +23 -0
- package/node_modules/refractor/lang/visual-basic.d.ts +7 -0
- package/node_modules/refractor/lang/visual-basic.js +42 -0
- package/node_modules/refractor/lang/warpscript.d.ts +7 -0
- package/node_modules/refractor/lang/warpscript.js +35 -0
- package/node_modules/refractor/lang/wasm.d.ts +7 -0
- package/node_modules/refractor/lang/wasm.js +43 -0
- package/node_modules/refractor/lang/web-idl.d.ts +7 -0
- package/node_modules/refractor/lang/web-idl.js +120 -0
- package/node_modules/refractor/lang/wgsl.d.ts +7 -0
- package/node_modules/refractor/lang/wgsl.js +112 -0
- package/node_modules/refractor/lang/wiki.d.ts +7 -0
- package/node_modules/refractor/lang/wiki.js +90 -0
- package/node_modules/refractor/lang/wolfram.d.ts +7 -0
- package/node_modules/refractor/lang/wolfram.js +42 -0
- package/node_modules/refractor/lang/wren.d.ts +7 -0
- package/node_modules/refractor/lang/wren.js +105 -0
- package/node_modules/refractor/lang/xeora.d.ts +7 -0
- package/node_modules/refractor/lang/xeora.js +131 -0
- package/node_modules/refractor/lang/xml-doc.d.ts +7 -0
- package/node_modules/refractor/lang/xml-doc.js +47 -0
- package/node_modules/refractor/lang/xojo.d.ts +7 -0
- package/node_modules/refractor/lang/xojo.js +30 -0
- package/node_modules/refractor/lang/xquery.d.ts +7 -0
- package/node_modules/refractor/lang/xquery.js +205 -0
- package/node_modules/refractor/lang/yaml.d.ts +7 -0
- package/node_modules/refractor/lang/yaml.js +129 -0
- package/node_modules/refractor/lang/yang.d.ts +7 -0
- package/node_modules/refractor/lang/yang.js +30 -0
- package/node_modules/refractor/lang/zig.d.ts +7 -0
- package/node_modules/refractor/lang/zig.js +131 -0
- package/node_modules/refractor/lib/all.d.ts +3 -0
- package/node_modules/refractor/lib/all.d.ts.map +1 -0
- package/node_modules/refractor/lib/all.js +602 -0
- package/node_modules/refractor/lib/common.d.ts +3 -0
- package/node_modules/refractor/lib/common.d.ts.map +1 -0
- package/node_modules/refractor/lib/common.js +80 -0
- package/node_modules/refractor/lib/core.d.ts +125 -0
- package/node_modules/refractor/lib/core.d.ts.map +1 -0
- package/node_modules/refractor/lib/core.js +316 -0
- package/node_modules/refractor/lib/prism-core.d.ts +113 -0
- package/node_modules/refractor/lib/prism-core.d.ts.map +1 -0
- package/node_modules/refractor/lib/prism-core.js +768 -0
- package/node_modules/refractor/license +23 -0
- package/node_modules/refractor/package.json +140 -0
- package/node_modules/refractor/readme.md +828 -0
- package/node_modules/space-separated-tokens/index.d.ts +18 -0
- package/node_modules/space-separated-tokens/index.js +24 -0
- package/node_modules/space-separated-tokens/license +22 -0
- package/node_modules/space-separated-tokens/package.json +67 -0
- package/node_modules/space-separated-tokens/readme.md +156 -0
- package/oclif.manifest.json +821 -602
- package/package.json +2 -2
- package/dist/server/infra/http/review-api-handler.d.ts +0 -13
- package/dist/server/infra/http/review-api-handler.js +0 -286
- package/dist/server/infra/http/review-ui.d.ts +0 -7
- package/dist/server/infra/http/review-ui.js +0 -606
- package/dist/webui/assets/index-B9JmEFOK.js +0 -130
- package/dist/webui/assets/index-CMIKsBMr.css +0 -1
- package/dist/webui/assets/qoder-connector-D9_pSbd_.svg +0 -1
|
@@ -0,0 +1,2517 @@
|
|
|
1
|
+
function deepFreeze(obj) {
|
|
2
|
+
if (obj instanceof Map) {
|
|
3
|
+
obj.clear = obj.delete = obj.set = function () {
|
|
4
|
+
throw new Error('map is read-only');
|
|
5
|
+
};
|
|
6
|
+
} else if (obj instanceof Set) {
|
|
7
|
+
obj.add = obj.clear = obj.delete = function () {
|
|
8
|
+
throw new Error('set is read-only');
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
// Freeze self
|
|
13
|
+
Object.freeze(obj);
|
|
14
|
+
|
|
15
|
+
Object.getOwnPropertyNames(obj).forEach(function (name) {
|
|
16
|
+
var prop = obj[name];
|
|
17
|
+
|
|
18
|
+
// Freeze prop if it is an object
|
|
19
|
+
if (typeof prop == 'object' && !Object.isFrozen(prop)) {
|
|
20
|
+
deepFreeze(prop);
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
return obj;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
var deepFreezeEs6 = deepFreeze;
|
|
28
|
+
var _default = deepFreeze;
|
|
29
|
+
deepFreezeEs6.default = _default;
|
|
30
|
+
|
|
31
|
+
/** @implements CallbackResponse */
|
|
32
|
+
class Response {
|
|
33
|
+
/**
|
|
34
|
+
* @param {CompiledMode} mode
|
|
35
|
+
*/
|
|
36
|
+
constructor(mode) {
|
|
37
|
+
// eslint-disable-next-line no-undefined
|
|
38
|
+
if (mode.data === undefined) mode.data = {};
|
|
39
|
+
|
|
40
|
+
this.data = mode.data;
|
|
41
|
+
this.isMatchIgnored = false;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
ignoreMatch() {
|
|
45
|
+
this.isMatchIgnored = true;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* @param {string} value
|
|
51
|
+
* @returns {string}
|
|
52
|
+
*/
|
|
53
|
+
function escapeHTML(value) {
|
|
54
|
+
return value
|
|
55
|
+
.replace(/&/g, '&')
|
|
56
|
+
.replace(/</g, '<')
|
|
57
|
+
.replace(/>/g, '>')
|
|
58
|
+
.replace(/"/g, '"')
|
|
59
|
+
.replace(/'/g, ''');
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* performs a shallow merge of multiple objects into one
|
|
64
|
+
*
|
|
65
|
+
* @template T
|
|
66
|
+
* @param {T} original
|
|
67
|
+
* @param {Record<string,any>[]} objects
|
|
68
|
+
* @returns {T} a single new object
|
|
69
|
+
*/
|
|
70
|
+
function inherit(original, ...objects) {
|
|
71
|
+
/** @type Record<string,any> */
|
|
72
|
+
const result = Object.create(null);
|
|
73
|
+
|
|
74
|
+
for (const key in original) {
|
|
75
|
+
result[key] = original[key];
|
|
76
|
+
}
|
|
77
|
+
objects.forEach(function(obj) {
|
|
78
|
+
for (const key in obj) {
|
|
79
|
+
result[key] = obj[key];
|
|
80
|
+
}
|
|
81
|
+
});
|
|
82
|
+
return /** @type {T} */ (result);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* @typedef {object} Renderer
|
|
87
|
+
* @property {(text: string) => void} addText
|
|
88
|
+
* @property {(node: Node) => void} openNode
|
|
89
|
+
* @property {(node: Node) => void} closeNode
|
|
90
|
+
* @property {() => string} value
|
|
91
|
+
*/
|
|
92
|
+
|
|
93
|
+
/** @typedef {{kind?: string, sublanguage?: boolean}} Node */
|
|
94
|
+
/** @typedef {{walk: (r: Renderer) => void}} Tree */
|
|
95
|
+
/** */
|
|
96
|
+
|
|
97
|
+
const SPAN_CLOSE = '</span>';
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* Determines if a node needs to be wrapped in <span>
|
|
101
|
+
*
|
|
102
|
+
* @param {Node} node */
|
|
103
|
+
const emitsWrappingTags = (node) => {
|
|
104
|
+
return !!node.kind;
|
|
105
|
+
};
|
|
106
|
+
|
|
107
|
+
/** @type {Renderer} */
|
|
108
|
+
class HTMLRenderer {
|
|
109
|
+
/**
|
|
110
|
+
* Creates a new HTMLRenderer
|
|
111
|
+
*
|
|
112
|
+
* @param {Tree} parseTree - the parse tree (must support `walk` API)
|
|
113
|
+
* @param {{classPrefix: string}} options
|
|
114
|
+
*/
|
|
115
|
+
constructor(parseTree, options) {
|
|
116
|
+
this.buffer = "";
|
|
117
|
+
this.classPrefix = options.classPrefix;
|
|
118
|
+
parseTree.walk(this);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* Adds texts to the output stream
|
|
123
|
+
*
|
|
124
|
+
* @param {string} text */
|
|
125
|
+
addText(text) {
|
|
126
|
+
this.buffer += escapeHTML(text);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
/**
|
|
130
|
+
* Adds a node open to the output stream (if needed)
|
|
131
|
+
*
|
|
132
|
+
* @param {Node} node */
|
|
133
|
+
openNode(node) {
|
|
134
|
+
if (!emitsWrappingTags(node)) return;
|
|
135
|
+
|
|
136
|
+
let className = node.kind;
|
|
137
|
+
if (!node.sublanguage) {
|
|
138
|
+
className = `${this.classPrefix}${className}`;
|
|
139
|
+
}
|
|
140
|
+
this.span(className);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* Adds a node close to the output stream (if needed)
|
|
145
|
+
*
|
|
146
|
+
* @param {Node} node */
|
|
147
|
+
closeNode(node) {
|
|
148
|
+
if (!emitsWrappingTags(node)) return;
|
|
149
|
+
|
|
150
|
+
this.buffer += SPAN_CLOSE;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* returns the accumulated buffer
|
|
155
|
+
*/
|
|
156
|
+
value() {
|
|
157
|
+
return this.buffer;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
// helpers
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* Builds a span element
|
|
164
|
+
*
|
|
165
|
+
* @param {string} className */
|
|
166
|
+
span(className) {
|
|
167
|
+
this.buffer += `<span class="${className}">`;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
/** @typedef {{kind?: string, sublanguage?: boolean, children: Node[]} | string} Node */
|
|
172
|
+
/** @typedef {{kind?: string, sublanguage?: boolean, children: Node[]} } DataNode */
|
|
173
|
+
/** */
|
|
174
|
+
|
|
175
|
+
class TokenTree {
|
|
176
|
+
constructor() {
|
|
177
|
+
/** @type DataNode */
|
|
178
|
+
this.rootNode = { children: [] };
|
|
179
|
+
this.stack = [this.rootNode];
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
get top() {
|
|
183
|
+
return this.stack[this.stack.length - 1];
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
get root() { return this.rootNode; }
|
|
187
|
+
|
|
188
|
+
/** @param {Node} node */
|
|
189
|
+
add(node) {
|
|
190
|
+
this.top.children.push(node);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
/** @param {string} kind */
|
|
194
|
+
openNode(kind) {
|
|
195
|
+
/** @type Node */
|
|
196
|
+
const node = { kind, children: [] };
|
|
197
|
+
this.add(node);
|
|
198
|
+
this.stack.push(node);
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
closeNode() {
|
|
202
|
+
if (this.stack.length > 1) {
|
|
203
|
+
return this.stack.pop();
|
|
204
|
+
}
|
|
205
|
+
// eslint-disable-next-line no-undefined
|
|
206
|
+
return undefined;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
closeAllNodes() {
|
|
210
|
+
while (this.closeNode());
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
toJSON() {
|
|
214
|
+
return JSON.stringify(this.rootNode, null, 4);
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
/**
|
|
218
|
+
* @typedef { import("./html_renderer").Renderer } Renderer
|
|
219
|
+
* @param {Renderer} builder
|
|
220
|
+
*/
|
|
221
|
+
walk(builder) {
|
|
222
|
+
// this does not
|
|
223
|
+
return this.constructor._walk(builder, this.rootNode);
|
|
224
|
+
// this works
|
|
225
|
+
// return TokenTree._walk(builder, this.rootNode);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
* @param {Renderer} builder
|
|
230
|
+
* @param {Node} node
|
|
231
|
+
*/
|
|
232
|
+
static _walk(builder, node) {
|
|
233
|
+
if (typeof node === "string") {
|
|
234
|
+
builder.addText(node);
|
|
235
|
+
} else if (node.children) {
|
|
236
|
+
builder.openNode(node);
|
|
237
|
+
node.children.forEach((child) => this._walk(builder, child));
|
|
238
|
+
builder.closeNode(node);
|
|
239
|
+
}
|
|
240
|
+
return builder;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
/**
|
|
244
|
+
* @param {Node} node
|
|
245
|
+
*/
|
|
246
|
+
static _collapse(node) {
|
|
247
|
+
if (typeof node === "string") return;
|
|
248
|
+
if (!node.children) return;
|
|
249
|
+
|
|
250
|
+
if (node.children.every(el => typeof el === "string")) {
|
|
251
|
+
// node.text = node.children.join("");
|
|
252
|
+
// delete node.children;
|
|
253
|
+
node.children = [node.children.join("")];
|
|
254
|
+
} else {
|
|
255
|
+
node.children.forEach((child) => {
|
|
256
|
+
TokenTree._collapse(child);
|
|
257
|
+
});
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
Currently this is all private API, but this is the minimal API necessary
|
|
264
|
+
that an Emitter must implement to fully support the parser.
|
|
265
|
+
|
|
266
|
+
Minimal interface:
|
|
267
|
+
|
|
268
|
+
- addKeyword(text, kind)
|
|
269
|
+
- addText(text)
|
|
270
|
+
- addSublanguage(emitter, subLanguageName)
|
|
271
|
+
- finalize()
|
|
272
|
+
- openNode(kind)
|
|
273
|
+
- closeNode()
|
|
274
|
+
- closeAllNodes()
|
|
275
|
+
- toHTML()
|
|
276
|
+
|
|
277
|
+
*/
|
|
278
|
+
|
|
279
|
+
/**
|
|
280
|
+
* @implements {Emitter}
|
|
281
|
+
*/
|
|
282
|
+
class TokenTreeEmitter extends TokenTree {
|
|
283
|
+
/**
|
|
284
|
+
* @param {*} options
|
|
285
|
+
*/
|
|
286
|
+
constructor(options) {
|
|
287
|
+
super();
|
|
288
|
+
this.options = options;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
/**
|
|
292
|
+
* @param {string} text
|
|
293
|
+
* @param {string} kind
|
|
294
|
+
*/
|
|
295
|
+
addKeyword(text, kind) {
|
|
296
|
+
if (text === "") { return; }
|
|
297
|
+
|
|
298
|
+
this.openNode(kind);
|
|
299
|
+
this.addText(text);
|
|
300
|
+
this.closeNode();
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* @param {string} text
|
|
305
|
+
*/
|
|
306
|
+
addText(text) {
|
|
307
|
+
if (text === "") { return; }
|
|
308
|
+
|
|
309
|
+
this.add(text);
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
/**
|
|
313
|
+
* @param {Emitter & {root: DataNode}} emitter
|
|
314
|
+
* @param {string} name
|
|
315
|
+
*/
|
|
316
|
+
addSublanguage(emitter, name) {
|
|
317
|
+
/** @type DataNode */
|
|
318
|
+
const node = emitter.root;
|
|
319
|
+
node.kind = name;
|
|
320
|
+
node.sublanguage = true;
|
|
321
|
+
this.add(node);
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
toHTML() {
|
|
325
|
+
const renderer = new HTMLRenderer(this, this.options);
|
|
326
|
+
return renderer.value();
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
finalize() {
|
|
330
|
+
return true;
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
/**
|
|
335
|
+
* @param {string} value
|
|
336
|
+
* @returns {RegExp}
|
|
337
|
+
* */
|
|
338
|
+
function escape(value) {
|
|
339
|
+
return new RegExp(value.replace(/[-/\\^$*+?.()|[\]{}]/g, '\\$&'), 'm');
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
/**
|
|
343
|
+
* @param {RegExp | string } re
|
|
344
|
+
* @returns {string}
|
|
345
|
+
*/
|
|
346
|
+
function source(re) {
|
|
347
|
+
if (!re) return null;
|
|
348
|
+
if (typeof re === "string") return re;
|
|
349
|
+
|
|
350
|
+
return re.source;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
/**
|
|
354
|
+
* @param {...(RegExp | string) } args
|
|
355
|
+
* @returns {string}
|
|
356
|
+
*/
|
|
357
|
+
function concat(...args) {
|
|
358
|
+
const joined = args.map((x) => source(x)).join("");
|
|
359
|
+
return joined;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
/**
|
|
363
|
+
* Any of the passed expresssions may match
|
|
364
|
+
*
|
|
365
|
+
* Creates a huge this | this | that | that match
|
|
366
|
+
* @param {(RegExp | string)[] } args
|
|
367
|
+
* @returns {string}
|
|
368
|
+
*/
|
|
369
|
+
function either(...args) {
|
|
370
|
+
const joined = '(' + args.map((x) => source(x)).join("|") + ")";
|
|
371
|
+
return joined;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
/**
|
|
375
|
+
* @param {RegExp} re
|
|
376
|
+
* @returns {number}
|
|
377
|
+
*/
|
|
378
|
+
function countMatchGroups(re) {
|
|
379
|
+
return (new RegExp(re.toString() + '|')).exec('').length - 1;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
/**
|
|
383
|
+
* Does lexeme start with a regular expression match at the beginning
|
|
384
|
+
* @param {RegExp} re
|
|
385
|
+
* @param {string} lexeme
|
|
386
|
+
*/
|
|
387
|
+
function startsWith(re, lexeme) {
|
|
388
|
+
const match = re && re.exec(lexeme);
|
|
389
|
+
return match && match.index === 0;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
// BACKREF_RE matches an open parenthesis or backreference. To avoid
|
|
393
|
+
// an incorrect parse, it additionally matches the following:
|
|
394
|
+
// - [...] elements, where the meaning of parentheses and escapes change
|
|
395
|
+
// - other escape sequences, so we do not misparse escape sequences as
|
|
396
|
+
// interesting elements
|
|
397
|
+
// - non-matching or lookahead parentheses, which do not capture. These
|
|
398
|
+
// follow the '(' with a '?'.
|
|
399
|
+
const BACKREF_RE = /\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;
|
|
400
|
+
|
|
401
|
+
// join logically computes regexps.join(separator), but fixes the
|
|
402
|
+
// backreferences so they continue to match.
|
|
403
|
+
// it also places each individual regular expression into it's own
|
|
404
|
+
// match group, keeping track of the sequencing of those match groups
|
|
405
|
+
// is currently an exercise for the caller. :-)
|
|
406
|
+
/**
|
|
407
|
+
* @param {(string | RegExp)[]} regexps
|
|
408
|
+
* @param {string} separator
|
|
409
|
+
* @returns {string}
|
|
410
|
+
*/
|
|
411
|
+
function join(regexps, separator = "|") {
|
|
412
|
+
let numCaptures = 0;
|
|
413
|
+
|
|
414
|
+
return regexps.map((regex) => {
|
|
415
|
+
numCaptures += 1;
|
|
416
|
+
const offset = numCaptures;
|
|
417
|
+
let re = source(regex);
|
|
418
|
+
let out = '';
|
|
419
|
+
|
|
420
|
+
while (re.length > 0) {
|
|
421
|
+
const match = BACKREF_RE.exec(re);
|
|
422
|
+
if (!match) {
|
|
423
|
+
out += re;
|
|
424
|
+
break;
|
|
425
|
+
}
|
|
426
|
+
out += re.substring(0, match.index);
|
|
427
|
+
re = re.substring(match.index + match[0].length);
|
|
428
|
+
if (match[0][0] === '\\' && match[1]) {
|
|
429
|
+
// Adjust the backreference.
|
|
430
|
+
out += '\\' + String(Number(match[1]) + offset);
|
|
431
|
+
} else {
|
|
432
|
+
out += match[0];
|
|
433
|
+
if (match[0] === '(') {
|
|
434
|
+
numCaptures++;
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
return out;
|
|
439
|
+
}).map(re => `(${re})`).join(separator);
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
// Common regexps
|
|
443
|
+
const MATCH_NOTHING_RE = /\b\B/;
|
|
444
|
+
const IDENT_RE = '[a-zA-Z]\\w*';
|
|
445
|
+
const UNDERSCORE_IDENT_RE = '[a-zA-Z_]\\w*';
|
|
446
|
+
const NUMBER_RE = '\\b\\d+(\\.\\d+)?';
|
|
447
|
+
const C_NUMBER_RE = '(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)'; // 0x..., 0..., decimal, float
|
|
448
|
+
const BINARY_NUMBER_RE = '\\b(0b[01]+)'; // 0b...
|
|
449
|
+
const RE_STARTERS_RE = '!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~';
|
|
450
|
+
|
|
451
|
+
/**
|
|
452
|
+
* @param { Partial<Mode> & {binary?: string | RegExp} } opts
|
|
453
|
+
*/
|
|
454
|
+
const SHEBANG = (opts = {}) => {
|
|
455
|
+
const beginShebang = /^#![ ]*\//;
|
|
456
|
+
if (opts.binary) {
|
|
457
|
+
opts.begin = concat(
|
|
458
|
+
beginShebang,
|
|
459
|
+
/.*\b/,
|
|
460
|
+
opts.binary,
|
|
461
|
+
/\b.*/);
|
|
462
|
+
}
|
|
463
|
+
return inherit({
|
|
464
|
+
className: 'meta',
|
|
465
|
+
begin: beginShebang,
|
|
466
|
+
end: /$/,
|
|
467
|
+
relevance: 0,
|
|
468
|
+
/** @type {ModeCallback} */
|
|
469
|
+
"on:begin": (m, resp) => {
|
|
470
|
+
if (m.index !== 0) resp.ignoreMatch();
|
|
471
|
+
}
|
|
472
|
+
}, opts);
|
|
473
|
+
};
|
|
474
|
+
|
|
475
|
+
// Common modes
|
|
476
|
+
const BACKSLASH_ESCAPE = {
|
|
477
|
+
begin: '\\\\[\\s\\S]', relevance: 0
|
|
478
|
+
};
|
|
479
|
+
const APOS_STRING_MODE = {
|
|
480
|
+
className: 'string',
|
|
481
|
+
begin: '\'',
|
|
482
|
+
end: '\'',
|
|
483
|
+
illegal: '\\n',
|
|
484
|
+
contains: [BACKSLASH_ESCAPE]
|
|
485
|
+
};
|
|
486
|
+
const QUOTE_STRING_MODE = {
|
|
487
|
+
className: 'string',
|
|
488
|
+
begin: '"',
|
|
489
|
+
end: '"',
|
|
490
|
+
illegal: '\\n',
|
|
491
|
+
contains: [BACKSLASH_ESCAPE]
|
|
492
|
+
};
|
|
493
|
+
const PHRASAL_WORDS_MODE = {
|
|
494
|
+
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/
|
|
495
|
+
};
|
|
496
|
+
/**
|
|
497
|
+
* Creates a comment mode
|
|
498
|
+
*
|
|
499
|
+
* @param {string | RegExp} begin
|
|
500
|
+
* @param {string | RegExp} end
|
|
501
|
+
* @param {Mode | {}} [modeOptions]
|
|
502
|
+
* @returns {Partial<Mode>}
|
|
503
|
+
*/
|
|
504
|
+
const COMMENT = function(begin, end, modeOptions = {}) {
|
|
505
|
+
const mode = inherit(
|
|
506
|
+
{
|
|
507
|
+
className: 'comment',
|
|
508
|
+
begin,
|
|
509
|
+
end,
|
|
510
|
+
contains: []
|
|
511
|
+
},
|
|
512
|
+
modeOptions
|
|
513
|
+
);
|
|
514
|
+
mode.contains.push(PHRASAL_WORDS_MODE);
|
|
515
|
+
mode.contains.push({
|
|
516
|
+
className: 'doctag',
|
|
517
|
+
begin: '(?:TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):',
|
|
518
|
+
relevance: 0
|
|
519
|
+
});
|
|
520
|
+
return mode;
|
|
521
|
+
};
|
|
522
|
+
const C_LINE_COMMENT_MODE = COMMENT('//', '$');
|
|
523
|
+
const C_BLOCK_COMMENT_MODE = COMMENT('/\\*', '\\*/');
|
|
524
|
+
const HASH_COMMENT_MODE = COMMENT('#', '$');
|
|
525
|
+
const NUMBER_MODE = {
|
|
526
|
+
className: 'number',
|
|
527
|
+
begin: NUMBER_RE,
|
|
528
|
+
relevance: 0
|
|
529
|
+
};
|
|
530
|
+
const C_NUMBER_MODE = {
|
|
531
|
+
className: 'number',
|
|
532
|
+
begin: C_NUMBER_RE,
|
|
533
|
+
relevance: 0
|
|
534
|
+
};
|
|
535
|
+
const BINARY_NUMBER_MODE = {
|
|
536
|
+
className: 'number',
|
|
537
|
+
begin: BINARY_NUMBER_RE,
|
|
538
|
+
relevance: 0
|
|
539
|
+
};
|
|
540
|
+
const CSS_NUMBER_MODE = {
|
|
541
|
+
className: 'number',
|
|
542
|
+
begin: NUMBER_RE + '(' +
|
|
543
|
+
'%|em|ex|ch|rem' +
|
|
544
|
+
'|vw|vh|vmin|vmax' +
|
|
545
|
+
'|cm|mm|in|pt|pc|px' +
|
|
546
|
+
'|deg|grad|rad|turn' +
|
|
547
|
+
'|s|ms' +
|
|
548
|
+
'|Hz|kHz' +
|
|
549
|
+
'|dpi|dpcm|dppx' +
|
|
550
|
+
')?',
|
|
551
|
+
relevance: 0
|
|
552
|
+
};
|
|
553
|
+
const REGEXP_MODE = {
|
|
554
|
+
// this outer rule makes sure we actually have a WHOLE regex and not simply
|
|
555
|
+
// an expression such as:
|
|
556
|
+
//
|
|
557
|
+
// 3 / something
|
|
558
|
+
//
|
|
559
|
+
// (which will then blow up when regex's `illegal` sees the newline)
|
|
560
|
+
begin: /(?=\/[^/\n]*\/)/,
|
|
561
|
+
contains: [{
|
|
562
|
+
className: 'regexp',
|
|
563
|
+
begin: /\//,
|
|
564
|
+
end: /\/[gimuy]*/,
|
|
565
|
+
illegal: /\n/,
|
|
566
|
+
contains: [
|
|
567
|
+
BACKSLASH_ESCAPE,
|
|
568
|
+
{
|
|
569
|
+
begin: /\[/,
|
|
570
|
+
end: /\]/,
|
|
571
|
+
relevance: 0,
|
|
572
|
+
contains: [BACKSLASH_ESCAPE]
|
|
573
|
+
}
|
|
574
|
+
]
|
|
575
|
+
}]
|
|
576
|
+
};
|
|
577
|
+
const TITLE_MODE = {
|
|
578
|
+
className: 'title',
|
|
579
|
+
begin: IDENT_RE,
|
|
580
|
+
relevance: 0
|
|
581
|
+
};
|
|
582
|
+
const UNDERSCORE_TITLE_MODE = {
|
|
583
|
+
className: 'title',
|
|
584
|
+
begin: UNDERSCORE_IDENT_RE,
|
|
585
|
+
relevance: 0
|
|
586
|
+
};
|
|
587
|
+
const METHOD_GUARD = {
|
|
588
|
+
// excludes method names from keyword processing
|
|
589
|
+
begin: '\\.\\s*' + UNDERSCORE_IDENT_RE,
|
|
590
|
+
relevance: 0
|
|
591
|
+
};
|
|
592
|
+
|
|
593
|
+
/**
|
|
594
|
+
* Adds end same as begin mechanics to a mode
|
|
595
|
+
*
|
|
596
|
+
* Your mode must include at least a single () match group as that first match
|
|
597
|
+
* group is what is used for comparison
|
|
598
|
+
* @param {Partial<Mode>} mode
|
|
599
|
+
*/
|
|
600
|
+
const END_SAME_AS_BEGIN = function(mode) {
|
|
601
|
+
return Object.assign(mode,
|
|
602
|
+
{
|
|
603
|
+
/** @type {ModeCallback} */
|
|
604
|
+
'on:begin': (m, resp) => { resp.data._beginMatch = m[1]; },
|
|
605
|
+
/** @type {ModeCallback} */
|
|
606
|
+
'on:end': (m, resp) => { if (resp.data._beginMatch !== m[1]) resp.ignoreMatch(); }
|
|
607
|
+
});
|
|
608
|
+
};
|
|
609
|
+
|
|
610
|
+
var MODES = /*#__PURE__*/Object.freeze({
|
|
611
|
+
__proto__: null,
|
|
612
|
+
MATCH_NOTHING_RE: MATCH_NOTHING_RE,
|
|
613
|
+
IDENT_RE: IDENT_RE,
|
|
614
|
+
UNDERSCORE_IDENT_RE: UNDERSCORE_IDENT_RE,
|
|
615
|
+
NUMBER_RE: NUMBER_RE,
|
|
616
|
+
C_NUMBER_RE: C_NUMBER_RE,
|
|
617
|
+
BINARY_NUMBER_RE: BINARY_NUMBER_RE,
|
|
618
|
+
RE_STARTERS_RE: RE_STARTERS_RE,
|
|
619
|
+
SHEBANG: SHEBANG,
|
|
620
|
+
BACKSLASH_ESCAPE: BACKSLASH_ESCAPE,
|
|
621
|
+
APOS_STRING_MODE: APOS_STRING_MODE,
|
|
622
|
+
QUOTE_STRING_MODE: QUOTE_STRING_MODE,
|
|
623
|
+
PHRASAL_WORDS_MODE: PHRASAL_WORDS_MODE,
|
|
624
|
+
COMMENT: COMMENT,
|
|
625
|
+
C_LINE_COMMENT_MODE: C_LINE_COMMENT_MODE,
|
|
626
|
+
C_BLOCK_COMMENT_MODE: C_BLOCK_COMMENT_MODE,
|
|
627
|
+
HASH_COMMENT_MODE: HASH_COMMENT_MODE,
|
|
628
|
+
NUMBER_MODE: NUMBER_MODE,
|
|
629
|
+
C_NUMBER_MODE: C_NUMBER_MODE,
|
|
630
|
+
BINARY_NUMBER_MODE: BINARY_NUMBER_MODE,
|
|
631
|
+
CSS_NUMBER_MODE: CSS_NUMBER_MODE,
|
|
632
|
+
REGEXP_MODE: REGEXP_MODE,
|
|
633
|
+
TITLE_MODE: TITLE_MODE,
|
|
634
|
+
UNDERSCORE_TITLE_MODE: UNDERSCORE_TITLE_MODE,
|
|
635
|
+
METHOD_GUARD: METHOD_GUARD,
|
|
636
|
+
END_SAME_AS_BEGIN: END_SAME_AS_BEGIN
|
|
637
|
+
});
|
|
638
|
+
|
|
639
|
+
// Grammar extensions / plugins
|
|
640
|
+
// See: https://github.com/highlightjs/highlight.js/issues/2833
|
|
641
|
+
|
|
642
|
+
// Grammar extensions allow "syntactic sugar" to be added to the grammar modes
|
|
643
|
+
// without requiring any underlying changes to the compiler internals.
|
|
644
|
+
|
|
645
|
+
// `compileMatch` being the perfect small example of now allowing a grammar
|
|
646
|
+
// author to write `match` when they desire to match a single expression rather
|
|
647
|
+
// than being forced to use `begin`. The extension then just moves `match` into
|
|
648
|
+
// `begin` when it runs. Ie, no features have been added, but we've just made
|
|
649
|
+
// the experience of writing (and reading grammars) a little bit nicer.
|
|
650
|
+
|
|
651
|
+
// ------
|
|
652
|
+
|
|
653
|
+
// TODO: We need negative look-behind support to do this properly
|
|
654
|
+
/**
|
|
655
|
+
* Skip a match if it has a preceding dot
|
|
656
|
+
*
|
|
657
|
+
* This is used for `beginKeywords` to prevent matching expressions such as
|
|
658
|
+
* `bob.keyword.do()`. The mode compiler automatically wires this up as a
|
|
659
|
+
* special _internal_ 'on:begin' callback for modes with `beginKeywords`
|
|
660
|
+
* @param {RegExpMatchArray} match
|
|
661
|
+
* @param {CallbackResponse} response
|
|
662
|
+
*/
|
|
663
|
+
function skipIfhasPrecedingDot(match, response) {
|
|
664
|
+
const before = match.input[match.index - 1];
|
|
665
|
+
if (before === ".") {
|
|
666
|
+
response.ignoreMatch();
|
|
667
|
+
}
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
/**
|
|
672
|
+
* `beginKeywords` syntactic sugar
|
|
673
|
+
* @type {CompilerExt}
|
|
674
|
+
*/
|
|
675
|
+
function beginKeywords(mode, parent) {
|
|
676
|
+
if (!parent) return;
|
|
677
|
+
if (!mode.beginKeywords) return;
|
|
678
|
+
|
|
679
|
+
// for languages with keywords that include non-word characters checking for
|
|
680
|
+
// a word boundary is not sufficient, so instead we check for a word boundary
|
|
681
|
+
// or whitespace - this does no harm in any case since our keyword engine
|
|
682
|
+
// doesn't allow spaces in keywords anyways and we still check for the boundary
|
|
683
|
+
// first
|
|
684
|
+
mode.begin = '\\b(' + mode.beginKeywords.split(' ').join('|') + ')(?!\\.)(?=\\b|\\s)';
|
|
685
|
+
mode.__beforeBegin = skipIfhasPrecedingDot;
|
|
686
|
+
mode.keywords = mode.keywords || mode.beginKeywords;
|
|
687
|
+
delete mode.beginKeywords;
|
|
688
|
+
|
|
689
|
+
// prevents double relevance, the keywords themselves provide
|
|
690
|
+
// relevance, the mode doesn't need to double it
|
|
691
|
+
// eslint-disable-next-line no-undefined
|
|
692
|
+
if (mode.relevance === undefined) mode.relevance = 0;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
/**
|
|
696
|
+
* Allow `illegal` to contain an array of illegal values
|
|
697
|
+
* @type {CompilerExt}
|
|
698
|
+
*/
|
|
699
|
+
function compileIllegal(mode, _parent) {
|
|
700
|
+
if (!Array.isArray(mode.illegal)) return;
|
|
701
|
+
|
|
702
|
+
mode.illegal = either(...mode.illegal);
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
/**
|
|
706
|
+
* `match` to match a single expression for readability
|
|
707
|
+
* @type {CompilerExt}
|
|
708
|
+
*/
|
|
709
|
+
function compileMatch(mode, _parent) {
|
|
710
|
+
if (!mode.match) return;
|
|
711
|
+
if (mode.begin || mode.end) throw new Error("begin & end are not supported with match");
|
|
712
|
+
|
|
713
|
+
mode.begin = mode.match;
|
|
714
|
+
delete mode.match;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
/**
|
|
718
|
+
* provides the default 1 relevance to all modes
|
|
719
|
+
* @type {CompilerExt}
|
|
720
|
+
*/
|
|
721
|
+
function compileRelevance(mode, _parent) {
|
|
722
|
+
// eslint-disable-next-line no-undefined
|
|
723
|
+
if (mode.relevance === undefined) mode.relevance = 1;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
// keywords that should have no default relevance value
|
|
727
|
+
const COMMON_KEYWORDS = [
|
|
728
|
+
'of',
|
|
729
|
+
'and',
|
|
730
|
+
'for',
|
|
731
|
+
'in',
|
|
732
|
+
'not',
|
|
733
|
+
'or',
|
|
734
|
+
'if',
|
|
735
|
+
'then',
|
|
736
|
+
'parent', // common variable name
|
|
737
|
+
'list', // common variable name
|
|
738
|
+
'value' // common variable name
|
|
739
|
+
];
|
|
740
|
+
|
|
741
|
+
const DEFAULT_KEYWORD_CLASSNAME = "keyword";
|
|
742
|
+
|
|
743
|
+
/**
|
|
744
|
+
* Given raw keywords from a language definition, compile them.
|
|
745
|
+
*
|
|
746
|
+
* @param {string | Record<string,string|string[]> | Array<string>} rawKeywords
|
|
747
|
+
* @param {boolean} caseInsensitive
|
|
748
|
+
*/
|
|
749
|
+
function compileKeywords(rawKeywords, caseInsensitive, className = DEFAULT_KEYWORD_CLASSNAME) {
|
|
750
|
+
/** @type KeywordDict */
|
|
751
|
+
const compiledKeywords = {};
|
|
752
|
+
|
|
753
|
+
// input can be a string of keywords, an array of keywords, or a object with
|
|
754
|
+
// named keys representing className (which can then point to a string or array)
|
|
755
|
+
if (typeof rawKeywords === 'string') {
|
|
756
|
+
compileList(className, rawKeywords.split(" "));
|
|
757
|
+
} else if (Array.isArray(rawKeywords)) {
|
|
758
|
+
compileList(className, rawKeywords);
|
|
759
|
+
} else {
|
|
760
|
+
Object.keys(rawKeywords).forEach(function(className) {
|
|
761
|
+
// collapse all our objects back into the parent object
|
|
762
|
+
Object.assign(
|
|
763
|
+
compiledKeywords,
|
|
764
|
+
compileKeywords(rawKeywords[className], caseInsensitive, className)
|
|
765
|
+
);
|
|
766
|
+
});
|
|
767
|
+
}
|
|
768
|
+
return compiledKeywords;
|
|
769
|
+
|
|
770
|
+
// ---
|
|
771
|
+
|
|
772
|
+
/**
|
|
773
|
+
* Compiles an individual list of keywords
|
|
774
|
+
*
|
|
775
|
+
* Ex: "for if when while|5"
|
|
776
|
+
*
|
|
777
|
+
* @param {string} className
|
|
778
|
+
* @param {Array<string>} keywordList
|
|
779
|
+
*/
|
|
780
|
+
function compileList(className, keywordList) {
|
|
781
|
+
if (caseInsensitive) {
|
|
782
|
+
keywordList = keywordList.map(x => x.toLowerCase());
|
|
783
|
+
}
|
|
784
|
+
keywordList.forEach(function(keyword) {
|
|
785
|
+
const pair = keyword.split('|');
|
|
786
|
+
compiledKeywords[pair[0]] = [className, scoreForKeyword(pair[0], pair[1])];
|
|
787
|
+
});
|
|
788
|
+
}
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
/**
|
|
792
|
+
* Returns the proper score for a given keyword
|
|
793
|
+
*
|
|
794
|
+
* Also takes into account comment keywords, which will be scored 0 UNLESS
|
|
795
|
+
* another score has been manually assigned.
|
|
796
|
+
* @param {string} keyword
|
|
797
|
+
* @param {string} [providedScore]
|
|
798
|
+
*/
|
|
799
|
+
function scoreForKeyword(keyword, providedScore) {
|
|
800
|
+
// manual scores always win over common keywords
|
|
801
|
+
// so you can force a score of 1 if you really insist
|
|
802
|
+
if (providedScore) {
|
|
803
|
+
return Number(providedScore);
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
return commonKeyword(keyword) ? 0 : 1;
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
/**
|
|
810
|
+
* Determines if a given keyword is common or not
|
|
811
|
+
*
|
|
812
|
+
* @param {string} keyword */
|
|
813
|
+
function commonKeyword(keyword) {
|
|
814
|
+
return COMMON_KEYWORDS.includes(keyword.toLowerCase());
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
// compilation
|
|
818
|
+
|
|
819
|
+
/**
|
|
820
|
+
* Compiles a language definition result
|
|
821
|
+
*
|
|
822
|
+
* Given the raw result of a language definition (Language), compiles this so
|
|
823
|
+
* that it is ready for highlighting code.
|
|
824
|
+
* @param {Language} language
|
|
825
|
+
* @param {{plugins: HLJSPlugin[]}} opts
|
|
826
|
+
* @returns {CompiledLanguage}
|
|
827
|
+
*/
|
|
828
|
+
function compileLanguage(language, { plugins }) {
|
|
829
|
+
/**
|
|
830
|
+
* Builds a regex with the case sensativility of the current language
|
|
831
|
+
*
|
|
832
|
+
* @param {RegExp | string} value
|
|
833
|
+
* @param {boolean} [global]
|
|
834
|
+
*/
|
|
835
|
+
function langRe(value, global) {
|
|
836
|
+
return new RegExp(
|
|
837
|
+
source(value),
|
|
838
|
+
'm' + (language.case_insensitive ? 'i' : '') + (global ? 'g' : '')
|
|
839
|
+
);
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
/**
|
|
843
|
+
Stores multiple regular expressions and allows you to quickly search for
|
|
844
|
+
them all in a string simultaneously - returning the first match. It does
|
|
845
|
+
this by creating a huge (a|b|c) regex - each individual item wrapped with ()
|
|
846
|
+
and joined by `|` - using match groups to track position. When a match is
|
|
847
|
+
found checking which position in the array has content allows us to figure
|
|
848
|
+
out which of the original regexes / match groups triggered the match.
|
|
849
|
+
|
|
850
|
+
The match object itself (the result of `Regex.exec`) is returned but also
|
|
851
|
+
enhanced by merging in any meta-data that was registered with the regex.
|
|
852
|
+
This is how we keep track of which mode matched, and what type of rule
|
|
853
|
+
(`illegal`, `begin`, end, etc).
|
|
854
|
+
*/
|
|
855
|
+
class MultiRegex {
|
|
856
|
+
constructor() {
|
|
857
|
+
this.matchIndexes = {};
|
|
858
|
+
// @ts-ignore
|
|
859
|
+
this.regexes = [];
|
|
860
|
+
this.matchAt = 1;
|
|
861
|
+
this.position = 0;
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
// @ts-ignore
|
|
865
|
+
addRule(re, opts) {
|
|
866
|
+
opts.position = this.position++;
|
|
867
|
+
// @ts-ignore
|
|
868
|
+
this.matchIndexes[this.matchAt] = opts;
|
|
869
|
+
this.regexes.push([opts, re]);
|
|
870
|
+
this.matchAt += countMatchGroups(re) + 1;
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
compile() {
|
|
874
|
+
if (this.regexes.length === 0) {
|
|
875
|
+
// avoids the need to check length every time exec is called
|
|
876
|
+
// @ts-ignore
|
|
877
|
+
this.exec = () => null;
|
|
878
|
+
}
|
|
879
|
+
const terminators = this.regexes.map(el => el[1]);
|
|
880
|
+
this.matcherRe = langRe(join(terminators), true);
|
|
881
|
+
this.lastIndex = 0;
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
/** @param {string} s */
|
|
885
|
+
exec(s) {
|
|
886
|
+
this.matcherRe.lastIndex = this.lastIndex;
|
|
887
|
+
const match = this.matcherRe.exec(s);
|
|
888
|
+
if (!match) { return null; }
|
|
889
|
+
|
|
890
|
+
// eslint-disable-next-line no-undefined
|
|
891
|
+
const i = match.findIndex((el, i) => i > 0 && el !== undefined);
|
|
892
|
+
// @ts-ignore
|
|
893
|
+
const matchData = this.matchIndexes[i];
|
|
894
|
+
// trim off any earlier non-relevant match groups (ie, the other regex
|
|
895
|
+
// match groups that make up the multi-matcher)
|
|
896
|
+
match.splice(0, i);
|
|
897
|
+
|
|
898
|
+
return Object.assign(match, matchData);
|
|
899
|
+
}
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
/*
|
|
903
|
+
Created to solve the key deficiently with MultiRegex - there is no way to
|
|
904
|
+
test for multiple matches at a single location. Why would we need to do
|
|
905
|
+
that? In the future a more dynamic engine will allow certain matches to be
|
|
906
|
+
ignored. An example: if we matched say the 3rd regex in a large group but
|
|
907
|
+
decided to ignore it - we'd need to started testing again at the 4th
|
|
908
|
+
regex... but MultiRegex itself gives us no real way to do that.
|
|
909
|
+
|
|
910
|
+
So what this class creates MultiRegexs on the fly for whatever search
|
|
911
|
+
position they are needed.
|
|
912
|
+
|
|
913
|
+
NOTE: These additional MultiRegex objects are created dynamically. For most
|
|
914
|
+
grammars most of the time we will never actually need anything more than the
|
|
915
|
+
first MultiRegex - so this shouldn't have too much overhead.
|
|
916
|
+
|
|
917
|
+
Say this is our search group, and we match regex3, but wish to ignore it.
|
|
918
|
+
|
|
919
|
+
regex1 | regex2 | regex3 | regex4 | regex5 ' ie, startAt = 0
|
|
920
|
+
|
|
921
|
+
What we need is a new MultiRegex that only includes the remaining
|
|
922
|
+
possibilities:
|
|
923
|
+
|
|
924
|
+
regex4 | regex5 ' ie, startAt = 3
|
|
925
|
+
|
|
926
|
+
This class wraps all that complexity up in a simple API... `startAt` decides
|
|
927
|
+
where in the array of expressions to start doing the matching. It
|
|
928
|
+
auto-increments, so if a match is found at position 2, then startAt will be
|
|
929
|
+
set to 3. If the end is reached startAt will return to 0.
|
|
930
|
+
|
|
931
|
+
MOST of the time the parser will be setting startAt manually to 0.
|
|
932
|
+
*/
|
|
933
|
+
class ResumableMultiRegex {
|
|
934
|
+
constructor() {
|
|
935
|
+
// @ts-ignore
|
|
936
|
+
this.rules = [];
|
|
937
|
+
// @ts-ignore
|
|
938
|
+
this.multiRegexes = [];
|
|
939
|
+
this.count = 0;
|
|
940
|
+
|
|
941
|
+
this.lastIndex = 0;
|
|
942
|
+
this.regexIndex = 0;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
// @ts-ignore
|
|
946
|
+
getMatcher(index) {
|
|
947
|
+
if (this.multiRegexes[index]) return this.multiRegexes[index];
|
|
948
|
+
|
|
949
|
+
const matcher = new MultiRegex();
|
|
950
|
+
this.rules.slice(index).forEach(([re, opts]) => matcher.addRule(re, opts));
|
|
951
|
+
matcher.compile();
|
|
952
|
+
this.multiRegexes[index] = matcher;
|
|
953
|
+
return matcher;
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
resumingScanAtSamePosition() {
|
|
957
|
+
return this.regexIndex !== 0;
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
considerAll() {
|
|
961
|
+
this.regexIndex = 0;
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
// @ts-ignore
|
|
965
|
+
addRule(re, opts) {
|
|
966
|
+
this.rules.push([re, opts]);
|
|
967
|
+
if (opts.type === "begin") this.count++;
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
/** @param {string} s */
|
|
971
|
+
exec(s) {
|
|
972
|
+
const m = this.getMatcher(this.regexIndex);
|
|
973
|
+
m.lastIndex = this.lastIndex;
|
|
974
|
+
let result = m.exec(s);
|
|
975
|
+
|
|
976
|
+
// The following is because we have no easy way to say "resume scanning at the
|
|
977
|
+
// existing position but also skip the current rule ONLY". What happens is
|
|
978
|
+
// all prior rules are also skipped which can result in matching the wrong
|
|
979
|
+
// thing. Example of matching "booger":
|
|
980
|
+
|
|
981
|
+
// our matcher is [string, "booger", number]
|
|
982
|
+
//
|
|
983
|
+
// ....booger....
|
|
984
|
+
|
|
985
|
+
// if "booger" is ignored then we'd really need a regex to scan from the
|
|
986
|
+
// SAME position for only: [string, number] but ignoring "booger" (if it
|
|
987
|
+
// was the first match), a simple resume would scan ahead who knows how
|
|
988
|
+
// far looking only for "number", ignoring potential string matches (or
|
|
989
|
+
// future "booger" matches that might be valid.)
|
|
990
|
+
|
|
991
|
+
// So what we do: We execute two matchers, one resuming at the same
|
|
992
|
+
// position, but the second full matcher starting at the position after:
|
|
993
|
+
|
|
994
|
+
// /--- resume first regex match here (for [number])
|
|
995
|
+
// |/---- full match here for [string, "booger", number]
|
|
996
|
+
// vv
|
|
997
|
+
// ....booger....
|
|
998
|
+
|
|
999
|
+
// Which ever results in a match first is then used. So this 3-4 step
|
|
1000
|
+
// process essentially allows us to say "match at this position, excluding
|
|
1001
|
+
// a prior rule that was ignored".
|
|
1002
|
+
//
|
|
1003
|
+
// 1. Match "booger" first, ignore. Also proves that [string] does non match.
|
|
1004
|
+
// 2. Resume matching for [number]
|
|
1005
|
+
// 3. Match at index + 1 for [string, "booger", number]
|
|
1006
|
+
// 4. If #2 and #3 result in matches, which came first?
|
|
1007
|
+
if (this.resumingScanAtSamePosition()) {
|
|
1008
|
+
if (result && result.index === this.lastIndex) ; else { // use the second matcher result
|
|
1009
|
+
const m2 = this.getMatcher(0);
|
|
1010
|
+
m2.lastIndex = this.lastIndex + 1;
|
|
1011
|
+
result = m2.exec(s);
|
|
1012
|
+
}
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
if (result) {
|
|
1016
|
+
this.regexIndex += result.position + 1;
|
|
1017
|
+
if (this.regexIndex === this.count) {
|
|
1018
|
+
// wrap-around to considering all matches again
|
|
1019
|
+
this.considerAll();
|
|
1020
|
+
}
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
return result;
|
|
1024
|
+
}
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
/**
|
|
1028
|
+
* Given a mode, builds a huge ResumableMultiRegex that can be used to walk
|
|
1029
|
+
* the content and find matches.
|
|
1030
|
+
*
|
|
1031
|
+
* @param {CompiledMode} mode
|
|
1032
|
+
* @returns {ResumableMultiRegex}
|
|
1033
|
+
*/
|
|
1034
|
+
function buildModeRegex(mode) {
|
|
1035
|
+
const mm = new ResumableMultiRegex();
|
|
1036
|
+
|
|
1037
|
+
mode.contains.forEach(term => mm.addRule(term.begin, { rule: term, type: "begin" }));
|
|
1038
|
+
|
|
1039
|
+
if (mode.terminatorEnd) {
|
|
1040
|
+
mm.addRule(mode.terminatorEnd, { type: "end" });
|
|
1041
|
+
}
|
|
1042
|
+
if (mode.illegal) {
|
|
1043
|
+
mm.addRule(mode.illegal, { type: "illegal" });
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
return mm;
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
/** skip vs abort vs ignore
|
|
1050
|
+
*
|
|
1051
|
+
* @skip - The mode is still entered and exited normally (and contains rules apply),
|
|
1052
|
+
* but all content is held and added to the parent buffer rather than being
|
|
1053
|
+
* output when the mode ends. Mostly used with `sublanguage` to build up
|
|
1054
|
+
* a single large buffer than can be parsed by sublanguage.
|
|
1055
|
+
*
|
|
1056
|
+
* - The mode begin ands ends normally.
|
|
1057
|
+
* - Content matched is added to the parent mode buffer.
|
|
1058
|
+
* - The parser cursor is moved forward normally.
|
|
1059
|
+
*
|
|
1060
|
+
* @abort - A hack placeholder until we have ignore. Aborts the mode (as if it
|
|
1061
|
+
* never matched) but DOES NOT continue to match subsequent `contains`
|
|
1062
|
+
* modes. Abort is bad/suboptimal because it can result in modes
|
|
1063
|
+
* farther down not getting applied because an earlier rule eats the
|
|
1064
|
+
* content but then aborts.
|
|
1065
|
+
*
|
|
1066
|
+
* - The mode does not begin.
|
|
1067
|
+
* - Content matched by `begin` is added to the mode buffer.
|
|
1068
|
+
* - The parser cursor is moved forward accordingly.
|
|
1069
|
+
*
|
|
1070
|
+
* @ignore - Ignores the mode (as if it never matched) and continues to match any
|
|
1071
|
+
* subsequent `contains` modes. Ignore isn't technically possible with
|
|
1072
|
+
* the current parser implementation.
|
|
1073
|
+
*
|
|
1074
|
+
* - The mode does not begin.
|
|
1075
|
+
* - Content matched by `begin` is ignored.
|
|
1076
|
+
* - The parser cursor is not moved forward.
|
|
1077
|
+
*/
|
|
1078
|
+
|
|
1079
|
+
/**
|
|
1080
|
+
* Compiles an individual mode
|
|
1081
|
+
*
|
|
1082
|
+
* This can raise an error if the mode contains certain detectable known logic
|
|
1083
|
+
* issues.
|
|
1084
|
+
* @param {Mode} mode
|
|
1085
|
+
* @param {CompiledMode | null} [parent]
|
|
1086
|
+
* @returns {CompiledMode | never}
|
|
1087
|
+
*/
|
|
1088
|
+
function compileMode(mode, parent) {
|
|
1089
|
+
const cmode = /** @type CompiledMode */ (mode);
|
|
1090
|
+
if (mode.isCompiled) return cmode;
|
|
1091
|
+
|
|
1092
|
+
[
|
|
1093
|
+
// do this early so compiler extensions generally don't have to worry about
|
|
1094
|
+
// the distinction between match/begin
|
|
1095
|
+
compileMatch
|
|
1096
|
+
].forEach(ext => ext(mode, parent));
|
|
1097
|
+
|
|
1098
|
+
language.compilerExtensions.forEach(ext => ext(mode, parent));
|
|
1099
|
+
|
|
1100
|
+
// __beforeBegin is considered private API, internal use only
|
|
1101
|
+
mode.__beforeBegin = null;
|
|
1102
|
+
|
|
1103
|
+
[
|
|
1104
|
+
beginKeywords,
|
|
1105
|
+
// do this later so compiler extensions that come earlier have access to the
|
|
1106
|
+
// raw array if they wanted to perhaps manipulate it, etc.
|
|
1107
|
+
compileIllegal,
|
|
1108
|
+
// default to 1 relevance if not specified
|
|
1109
|
+
compileRelevance
|
|
1110
|
+
].forEach(ext => ext(mode, parent));
|
|
1111
|
+
|
|
1112
|
+
mode.isCompiled = true;
|
|
1113
|
+
|
|
1114
|
+
let keywordPattern = null;
|
|
1115
|
+
if (typeof mode.keywords === "object") {
|
|
1116
|
+
keywordPattern = mode.keywords.$pattern;
|
|
1117
|
+
delete mode.keywords.$pattern;
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
if (mode.keywords) {
|
|
1121
|
+
mode.keywords = compileKeywords(mode.keywords, language.case_insensitive);
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
// both are not allowed
|
|
1125
|
+
if (mode.lexemes && keywordPattern) {
|
|
1126
|
+
throw new Error("ERR: Prefer `keywords.$pattern` to `mode.lexemes`, BOTH are not allowed. (see mode reference) ");
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
// `mode.lexemes` was the old standard before we added and now recommend
|
|
1130
|
+
// using `keywords.$pattern` to pass the keyword pattern
|
|
1131
|
+
keywordPattern = keywordPattern || mode.lexemes || /\w+/;
|
|
1132
|
+
cmode.keywordPatternRe = langRe(keywordPattern, true);
|
|
1133
|
+
|
|
1134
|
+
if (parent) {
|
|
1135
|
+
if (!mode.begin) mode.begin = /\B|\b/;
|
|
1136
|
+
cmode.beginRe = langRe(mode.begin);
|
|
1137
|
+
if (mode.endSameAsBegin) mode.end = mode.begin;
|
|
1138
|
+
if (!mode.end && !mode.endsWithParent) mode.end = /\B|\b/;
|
|
1139
|
+
if (mode.end) cmode.endRe = langRe(mode.end);
|
|
1140
|
+
cmode.terminatorEnd = source(mode.end) || '';
|
|
1141
|
+
if (mode.endsWithParent && parent.terminatorEnd) {
|
|
1142
|
+
cmode.terminatorEnd += (mode.end ? '|' : '') + parent.terminatorEnd;
|
|
1143
|
+
}
|
|
1144
|
+
}
|
|
1145
|
+
if (mode.illegal) cmode.illegalRe = langRe(/** @type {RegExp | string} */ (mode.illegal));
|
|
1146
|
+
if (!mode.contains) mode.contains = [];
|
|
1147
|
+
|
|
1148
|
+
mode.contains = [].concat(...mode.contains.map(function(c) {
|
|
1149
|
+
return expandOrCloneMode(c === 'self' ? mode : c);
|
|
1150
|
+
}));
|
|
1151
|
+
mode.contains.forEach(function(c) { compileMode(/** @type Mode */ (c), cmode); });
|
|
1152
|
+
|
|
1153
|
+
if (mode.starts) {
|
|
1154
|
+
compileMode(mode.starts, parent);
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
cmode.matcher = buildModeRegex(cmode);
|
|
1158
|
+
return cmode;
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
if (!language.compilerExtensions) language.compilerExtensions = [];
|
|
1162
|
+
|
|
1163
|
+
// self is not valid at the top-level
|
|
1164
|
+
if (language.contains && language.contains.includes('self')) {
|
|
1165
|
+
throw new Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
// we need a null object, which inherit will guarantee
|
|
1169
|
+
language.classNameAliases = inherit(language.classNameAliases || {});
|
|
1170
|
+
|
|
1171
|
+
return compileMode(/** @type Mode */ (language));
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1174
|
+
/**
|
|
1175
|
+
* Determines if a mode has a dependency on it's parent or not
|
|
1176
|
+
*
|
|
1177
|
+
* If a mode does have a parent dependency then often we need to clone it if
|
|
1178
|
+
* it's used in multiple places so that each copy points to the correct parent,
|
|
1179
|
+
* where-as modes without a parent can often safely be re-used at the bottom of
|
|
1180
|
+
* a mode chain.
|
|
1181
|
+
*
|
|
1182
|
+
* @param {Mode | null} mode
|
|
1183
|
+
* @returns {boolean} - is there a dependency on the parent?
|
|
1184
|
+
* */
|
|
1185
|
+
function dependencyOnParent(mode) {
|
|
1186
|
+
if (!mode) return false;
|
|
1187
|
+
|
|
1188
|
+
return mode.endsWithParent || dependencyOnParent(mode.starts);
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
/**
|
|
1192
|
+
* Expands a mode or clones it if necessary
|
|
1193
|
+
*
|
|
1194
|
+
* This is necessary for modes with parental dependenceis (see notes on
|
|
1195
|
+
* `dependencyOnParent`) and for nodes that have `variants` - which must then be
|
|
1196
|
+
* exploded into their own individual modes at compile time.
|
|
1197
|
+
*
|
|
1198
|
+
* @param {Mode} mode
|
|
1199
|
+
* @returns {Mode | Mode[]}
|
|
1200
|
+
* */
|
|
1201
|
+
function expandOrCloneMode(mode) {
|
|
1202
|
+
if (mode.variants && !mode.cachedVariants) {
|
|
1203
|
+
mode.cachedVariants = mode.variants.map(function(variant) {
|
|
1204
|
+
return inherit(mode, { variants: null }, variant);
|
|
1205
|
+
});
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
// EXPAND
|
|
1209
|
+
// if we have variants then essentially "replace" the mode with the variants
|
|
1210
|
+
// this happens in compileMode, where this function is called from
|
|
1211
|
+
if (mode.cachedVariants) {
|
|
1212
|
+
return mode.cachedVariants;
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
// CLONE
|
|
1216
|
+
// if we have dependencies on parents then we need a unique
|
|
1217
|
+
// instance of ourselves, so we can be reused with many
|
|
1218
|
+
// different parents without issue
|
|
1219
|
+
if (dependencyOnParent(mode)) {
|
|
1220
|
+
return inherit(mode, { starts: mode.starts ? inherit(mode.starts) : null });
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
if (Object.isFrozen(mode)) {
|
|
1224
|
+
return inherit(mode);
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1227
|
+
// no special dependency issues, just return ourselves
|
|
1228
|
+
return mode;
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1231
|
+
var version = "10.7.3";
|
|
1232
|
+
|
|
1233
|
+
// @ts-nocheck
|
|
1234
|
+
|
|
1235
|
+
function hasValueOrEmptyAttribute(value) {
|
|
1236
|
+
return Boolean(value || value === "");
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1239
|
+
function BuildVuePlugin(hljs) {
|
|
1240
|
+
const Component = {
|
|
1241
|
+
props: ["language", "code", "autodetect"],
|
|
1242
|
+
data: function() {
|
|
1243
|
+
return {
|
|
1244
|
+
detectedLanguage: "",
|
|
1245
|
+
unknownLanguage: false
|
|
1246
|
+
};
|
|
1247
|
+
},
|
|
1248
|
+
computed: {
|
|
1249
|
+
className() {
|
|
1250
|
+
if (this.unknownLanguage) return "";
|
|
1251
|
+
|
|
1252
|
+
return "hljs " + this.detectedLanguage;
|
|
1253
|
+
},
|
|
1254
|
+
highlighted() {
|
|
1255
|
+
// no idea what language to use, return raw code
|
|
1256
|
+
if (!this.autoDetect && !hljs.getLanguage(this.language)) {
|
|
1257
|
+
console.warn(`The language "${this.language}" you specified could not be found.`);
|
|
1258
|
+
this.unknownLanguage = true;
|
|
1259
|
+
return escapeHTML(this.code);
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
let result = {};
|
|
1263
|
+
if (this.autoDetect) {
|
|
1264
|
+
result = hljs.highlightAuto(this.code);
|
|
1265
|
+
this.detectedLanguage = result.language;
|
|
1266
|
+
} else {
|
|
1267
|
+
result = hljs.highlight(this.language, this.code, this.ignoreIllegals);
|
|
1268
|
+
this.detectedLanguage = this.language;
|
|
1269
|
+
}
|
|
1270
|
+
return result.value;
|
|
1271
|
+
},
|
|
1272
|
+
autoDetect() {
|
|
1273
|
+
return !this.language || hasValueOrEmptyAttribute(this.autodetect);
|
|
1274
|
+
},
|
|
1275
|
+
ignoreIllegals() {
|
|
1276
|
+
return true;
|
|
1277
|
+
}
|
|
1278
|
+
},
|
|
1279
|
+
// this avoids needing to use a whole Vue compilation pipeline just
|
|
1280
|
+
// to build Highlight.js
|
|
1281
|
+
render(createElement) {
|
|
1282
|
+
return createElement("pre", {}, [
|
|
1283
|
+
createElement("code", {
|
|
1284
|
+
class: this.className,
|
|
1285
|
+
domProps: { innerHTML: this.highlighted }
|
|
1286
|
+
})
|
|
1287
|
+
]);
|
|
1288
|
+
}
|
|
1289
|
+
// template: `<pre><code :class="className" v-html="highlighted"></code></pre>`
|
|
1290
|
+
};
|
|
1291
|
+
|
|
1292
|
+
const VuePlugin = {
|
|
1293
|
+
install(Vue) {
|
|
1294
|
+
Vue.component('highlightjs', Component);
|
|
1295
|
+
}
|
|
1296
|
+
};
|
|
1297
|
+
|
|
1298
|
+
return { Component, VuePlugin };
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
/* plugin itself */
|
|
1302
|
+
|
|
1303
|
+
/** @type {HLJSPlugin} */
|
|
1304
|
+
const mergeHTMLPlugin = {
|
|
1305
|
+
"after:highlightElement": ({ el, result, text }) => {
|
|
1306
|
+
const originalStream = nodeStream(el);
|
|
1307
|
+
if (!originalStream.length) return;
|
|
1308
|
+
|
|
1309
|
+
const resultNode = document.createElement('div');
|
|
1310
|
+
resultNode.innerHTML = result.value;
|
|
1311
|
+
result.value = mergeStreams(originalStream, nodeStream(resultNode), text);
|
|
1312
|
+
}
|
|
1313
|
+
};
|
|
1314
|
+
|
|
1315
|
+
/* Stream merging support functions */
|
|
1316
|
+
|
|
1317
|
+
/**
|
|
1318
|
+
* @typedef Event
|
|
1319
|
+
* @property {'start'|'stop'} event
|
|
1320
|
+
* @property {number} offset
|
|
1321
|
+
* @property {Node} node
|
|
1322
|
+
*/
|
|
1323
|
+
|
|
1324
|
+
/**
|
|
1325
|
+
* @param {Node} node
|
|
1326
|
+
*/
|
|
1327
|
+
function tag(node) {
|
|
1328
|
+
return node.nodeName.toLowerCase();
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1331
|
+
/**
|
|
1332
|
+
* @param {Node} node
|
|
1333
|
+
*/
|
|
1334
|
+
function nodeStream(node) {
|
|
1335
|
+
/** @type Event[] */
|
|
1336
|
+
const result = [];
|
|
1337
|
+
(function _nodeStream(node, offset) {
|
|
1338
|
+
for (let child = node.firstChild; child; child = child.nextSibling) {
|
|
1339
|
+
if (child.nodeType === 3) {
|
|
1340
|
+
offset += child.nodeValue.length;
|
|
1341
|
+
} else if (child.nodeType === 1) {
|
|
1342
|
+
result.push({
|
|
1343
|
+
event: 'start',
|
|
1344
|
+
offset: offset,
|
|
1345
|
+
node: child
|
|
1346
|
+
});
|
|
1347
|
+
offset = _nodeStream(child, offset);
|
|
1348
|
+
// Prevent void elements from having an end tag that would actually
|
|
1349
|
+
// double them in the output. There are more void elements in HTML
|
|
1350
|
+
// but we list only those realistically expected in code display.
|
|
1351
|
+
if (!tag(child).match(/br|hr|img|input/)) {
|
|
1352
|
+
result.push({
|
|
1353
|
+
event: 'stop',
|
|
1354
|
+
offset: offset,
|
|
1355
|
+
node: child
|
|
1356
|
+
});
|
|
1357
|
+
}
|
|
1358
|
+
}
|
|
1359
|
+
}
|
|
1360
|
+
return offset;
|
|
1361
|
+
})(node, 0);
|
|
1362
|
+
return result;
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
/**
|
|
1366
|
+
* @param {any} original - the original stream
|
|
1367
|
+
* @param {any} highlighted - stream of the highlighted source
|
|
1368
|
+
* @param {string} value - the original source itself
|
|
1369
|
+
*/
|
|
1370
|
+
function mergeStreams(original, highlighted, value) {
|
|
1371
|
+
let processed = 0;
|
|
1372
|
+
let result = '';
|
|
1373
|
+
const nodeStack = [];
|
|
1374
|
+
|
|
1375
|
+
function selectStream() {
|
|
1376
|
+
if (!original.length || !highlighted.length) {
|
|
1377
|
+
return original.length ? original : highlighted;
|
|
1378
|
+
}
|
|
1379
|
+
if (original[0].offset !== highlighted[0].offset) {
|
|
1380
|
+
return (original[0].offset < highlighted[0].offset) ? original : highlighted;
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
/*
|
|
1384
|
+
To avoid starting the stream just before it should stop the order is
|
|
1385
|
+
ensured that original always starts first and closes last:
|
|
1386
|
+
|
|
1387
|
+
if (event1 == 'start' && event2 == 'start')
|
|
1388
|
+
return original;
|
|
1389
|
+
if (event1 == 'start' && event2 == 'stop')
|
|
1390
|
+
return highlighted;
|
|
1391
|
+
if (event1 == 'stop' && event2 == 'start')
|
|
1392
|
+
return original;
|
|
1393
|
+
if (event1 == 'stop' && event2 == 'stop')
|
|
1394
|
+
return highlighted;
|
|
1395
|
+
|
|
1396
|
+
... which is collapsed to:
|
|
1397
|
+
*/
|
|
1398
|
+
return highlighted[0].event === 'start' ? original : highlighted;
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
/**
|
|
1402
|
+
* @param {Node} node
|
|
1403
|
+
*/
|
|
1404
|
+
function open(node) {
|
|
1405
|
+
/** @param {Attr} attr */
|
|
1406
|
+
function attributeString(attr) {
|
|
1407
|
+
return ' ' + attr.nodeName + '="' + escapeHTML(attr.value) + '"';
|
|
1408
|
+
}
|
|
1409
|
+
// @ts-ignore
|
|
1410
|
+
result += '<' + tag(node) + [].map.call(node.attributes, attributeString).join('') + '>';
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1413
|
+
/**
|
|
1414
|
+
* @param {Node} node
|
|
1415
|
+
*/
|
|
1416
|
+
function close(node) {
|
|
1417
|
+
result += '</' + tag(node) + '>';
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1420
|
+
/**
|
|
1421
|
+
* @param {Event} event
|
|
1422
|
+
*/
|
|
1423
|
+
function render(event) {
|
|
1424
|
+
(event.event === 'start' ? open : close)(event.node);
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
while (original.length || highlighted.length) {
|
|
1428
|
+
let stream = selectStream();
|
|
1429
|
+
result += escapeHTML(value.substring(processed, stream[0].offset));
|
|
1430
|
+
processed = stream[0].offset;
|
|
1431
|
+
if (stream === original) {
|
|
1432
|
+
/*
|
|
1433
|
+
On any opening or closing tag of the original markup we first close
|
|
1434
|
+
the entire highlighted node stack, then render the original tag along
|
|
1435
|
+
with all the following original tags at the same offset and then
|
|
1436
|
+
reopen all the tags on the highlighted stack.
|
|
1437
|
+
*/
|
|
1438
|
+
nodeStack.reverse().forEach(close);
|
|
1439
|
+
do {
|
|
1440
|
+
render(stream.splice(0, 1)[0]);
|
|
1441
|
+
stream = selectStream();
|
|
1442
|
+
} while (stream === original && stream.length && stream[0].offset === processed);
|
|
1443
|
+
nodeStack.reverse().forEach(open);
|
|
1444
|
+
} else {
|
|
1445
|
+
if (stream[0].event === 'start') {
|
|
1446
|
+
nodeStack.push(stream[0].node);
|
|
1447
|
+
} else {
|
|
1448
|
+
nodeStack.pop();
|
|
1449
|
+
}
|
|
1450
|
+
render(stream.splice(0, 1)[0]);
|
|
1451
|
+
}
|
|
1452
|
+
}
|
|
1453
|
+
return result + escapeHTML(value.substr(processed));
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
/*
|
|
1457
|
+
|
|
1458
|
+
For the reasoning behind this please see:
|
|
1459
|
+
https://github.com/highlightjs/highlight.js/issues/2880#issuecomment-747275419
|
|
1460
|
+
|
|
1461
|
+
*/
|
|
1462
|
+
|
|
1463
|
+
/**
|
|
1464
|
+
* @type {Record<string, boolean>}
|
|
1465
|
+
*/
|
|
1466
|
+
const seenDeprecations = {};
|
|
1467
|
+
|
|
1468
|
+
/**
|
|
1469
|
+
* @param {string} message
|
|
1470
|
+
*/
|
|
1471
|
+
const error = (message) => {
|
|
1472
|
+
console.error(message);
|
|
1473
|
+
};
|
|
1474
|
+
|
|
1475
|
+
/**
|
|
1476
|
+
* @param {string} message
|
|
1477
|
+
* @param {any} args
|
|
1478
|
+
*/
|
|
1479
|
+
const warn = (message, ...args) => {
|
|
1480
|
+
console.log(`WARN: ${message}`, ...args);
|
|
1481
|
+
};
|
|
1482
|
+
|
|
1483
|
+
/**
|
|
1484
|
+
* @param {string} version
|
|
1485
|
+
* @param {string} message
|
|
1486
|
+
*/
|
|
1487
|
+
const deprecated = (version, message) => {
|
|
1488
|
+
if (seenDeprecations[`${version}/${message}`]) return;
|
|
1489
|
+
|
|
1490
|
+
console.log(`Deprecated as of ${version}. ${message}`);
|
|
1491
|
+
seenDeprecations[`${version}/${message}`] = true;
|
|
1492
|
+
};
|
|
1493
|
+
|
|
1494
|
+
/*
|
|
1495
|
+
Syntax highlighting with language autodetection.
|
|
1496
|
+
https://highlightjs.org/
|
|
1497
|
+
*/
|
|
1498
|
+
|
|
1499
|
+
const escape$1 = escapeHTML;
|
|
1500
|
+
const inherit$1 = inherit;
|
|
1501
|
+
const NO_MATCH = Symbol("nomatch");
|
|
1502
|
+
|
|
1503
|
+
/**
|
|
1504
|
+
* @param {any} hljs - object that is extended (legacy)
|
|
1505
|
+
* @returns {HLJSApi}
|
|
1506
|
+
*/
|
|
1507
|
+
const HLJS = function(hljs) {
|
|
1508
|
+
// Global internal variables used within the highlight.js library.
|
|
1509
|
+
/** @type {Record<string, Language>} */
|
|
1510
|
+
const languages = Object.create(null);
|
|
1511
|
+
/** @type {Record<string, string>} */
|
|
1512
|
+
const aliases = Object.create(null);
|
|
1513
|
+
/** @type {HLJSPlugin[]} */
|
|
1514
|
+
const plugins = [];
|
|
1515
|
+
|
|
1516
|
+
// safe/production mode - swallows more errors, tries to keep running
|
|
1517
|
+
// even if a single syntax or parse hits a fatal error
|
|
1518
|
+
let SAFE_MODE = true;
|
|
1519
|
+
const fixMarkupRe = /(^(<[^>]+>|\t|)+|\n)/gm;
|
|
1520
|
+
const LANGUAGE_NOT_FOUND = "Could not find the language '{}', did you forget to load/include a language module?";
|
|
1521
|
+
/** @type {Language} */
|
|
1522
|
+
const PLAINTEXT_LANGUAGE = { disableAutodetect: true, name: 'Plain text', contains: [] };
|
|
1523
|
+
|
|
1524
|
+
// Global options used when within external APIs. This is modified when
|
|
1525
|
+
// calling the `hljs.configure` function.
|
|
1526
|
+
/** @type HLJSOptions */
|
|
1527
|
+
let options = {
|
|
1528
|
+
noHighlightRe: /^(no-?highlight)$/i,
|
|
1529
|
+
languageDetectRe: /\blang(?:uage)?-([\w-]+)\b/i,
|
|
1530
|
+
classPrefix: 'hljs-',
|
|
1531
|
+
tabReplace: null,
|
|
1532
|
+
useBR: false,
|
|
1533
|
+
languages: null,
|
|
1534
|
+
// beta configuration options, subject to change, welcome to discuss
|
|
1535
|
+
// https://github.com/highlightjs/highlight.js/issues/1086
|
|
1536
|
+
__emitter: TokenTreeEmitter
|
|
1537
|
+
};
|
|
1538
|
+
|
|
1539
|
+
/* Utility functions */
|
|
1540
|
+
|
|
1541
|
+
/**
|
|
1542
|
+
* Tests a language name to see if highlighting should be skipped
|
|
1543
|
+
* @param {string} languageName
|
|
1544
|
+
*/
|
|
1545
|
+
function shouldNotHighlight(languageName) {
|
|
1546
|
+
return options.noHighlightRe.test(languageName);
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1549
|
+
/**
|
|
1550
|
+
* @param {HighlightedHTMLElement} block - the HTML element to determine language for
|
|
1551
|
+
*/
|
|
1552
|
+
function blockLanguage(block) {
|
|
1553
|
+
let classes = block.className + ' ';
|
|
1554
|
+
|
|
1555
|
+
classes += block.parentNode ? block.parentNode.className : '';
|
|
1556
|
+
|
|
1557
|
+
// language-* takes precedence over non-prefixed class names.
|
|
1558
|
+
const match = options.languageDetectRe.exec(classes);
|
|
1559
|
+
if (match) {
|
|
1560
|
+
const language = getLanguage(match[1]);
|
|
1561
|
+
if (!language) {
|
|
1562
|
+
warn(LANGUAGE_NOT_FOUND.replace("{}", match[1]));
|
|
1563
|
+
warn("Falling back to no-highlight mode for this block.", block);
|
|
1564
|
+
}
|
|
1565
|
+
return language ? match[1] : 'no-highlight';
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
return classes
|
|
1569
|
+
.split(/\s+/)
|
|
1570
|
+
.find((_class) => shouldNotHighlight(_class) || getLanguage(_class));
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
/**
|
|
1574
|
+
* Core highlighting function.
|
|
1575
|
+
*
|
|
1576
|
+
* OLD API
|
|
1577
|
+
* highlight(lang, code, ignoreIllegals, continuation)
|
|
1578
|
+
*
|
|
1579
|
+
* NEW API
|
|
1580
|
+
* highlight(code, {lang, ignoreIllegals})
|
|
1581
|
+
*
|
|
1582
|
+
* @param {string} codeOrlanguageName - the language to use for highlighting
|
|
1583
|
+
* @param {string | HighlightOptions} optionsOrCode - the code to highlight
|
|
1584
|
+
* @param {boolean} [ignoreIllegals] - whether to ignore illegal matches, default is to bail
|
|
1585
|
+
* @param {CompiledMode} [continuation] - current continuation mode, if any
|
|
1586
|
+
*
|
|
1587
|
+
* @returns {HighlightResult} Result - an object that represents the result
|
|
1588
|
+
* @property {string} language - the language name
|
|
1589
|
+
* @property {number} relevance - the relevance score
|
|
1590
|
+
* @property {string} value - the highlighted HTML code
|
|
1591
|
+
* @property {string} code - the original raw code
|
|
1592
|
+
* @property {CompiledMode} top - top of the current mode stack
|
|
1593
|
+
* @property {boolean} illegal - indicates whether any illegal matches were found
|
|
1594
|
+
*/
|
|
1595
|
+
function highlight(codeOrlanguageName, optionsOrCode, ignoreIllegals, continuation) {
|
|
1596
|
+
let code = "";
|
|
1597
|
+
let languageName = "";
|
|
1598
|
+
if (typeof optionsOrCode === "object") {
|
|
1599
|
+
code = codeOrlanguageName;
|
|
1600
|
+
ignoreIllegals = optionsOrCode.ignoreIllegals;
|
|
1601
|
+
languageName = optionsOrCode.language;
|
|
1602
|
+
// continuation not supported at all via the new API
|
|
1603
|
+
// eslint-disable-next-line no-undefined
|
|
1604
|
+
continuation = undefined;
|
|
1605
|
+
} else {
|
|
1606
|
+
// old API
|
|
1607
|
+
deprecated("10.7.0", "highlight(lang, code, ...args) has been deprecated.");
|
|
1608
|
+
deprecated("10.7.0", "Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277");
|
|
1609
|
+
languageName = codeOrlanguageName;
|
|
1610
|
+
code = optionsOrCode;
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
/** @type {BeforeHighlightContext} */
|
|
1614
|
+
const context = {
|
|
1615
|
+
code,
|
|
1616
|
+
language: languageName
|
|
1617
|
+
};
|
|
1618
|
+
// the plugin can change the desired language or the code to be highlighted
|
|
1619
|
+
// just be changing the object it was passed
|
|
1620
|
+
fire("before:highlight", context);
|
|
1621
|
+
|
|
1622
|
+
// a before plugin can usurp the result completely by providing it's own
|
|
1623
|
+
// in which case we don't even need to call highlight
|
|
1624
|
+
const result = context.result
|
|
1625
|
+
? context.result
|
|
1626
|
+
: _highlight(context.language, context.code, ignoreIllegals, continuation);
|
|
1627
|
+
|
|
1628
|
+
result.code = context.code;
|
|
1629
|
+
// the plugin can change anything in result to suite it
|
|
1630
|
+
fire("after:highlight", result);
|
|
1631
|
+
|
|
1632
|
+
return result;
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1635
|
+
/**
|
|
1636
|
+
* private highlight that's used internally and does not fire callbacks
|
|
1637
|
+
*
|
|
1638
|
+
* @param {string} languageName - the language to use for highlighting
|
|
1639
|
+
* @param {string} codeToHighlight - the code to highlight
|
|
1640
|
+
* @param {boolean?} [ignoreIllegals] - whether to ignore illegal matches, default is to bail
|
|
1641
|
+
* @param {CompiledMode?} [continuation] - current continuation mode, if any
|
|
1642
|
+
* @returns {HighlightResult} - result of the highlight operation
|
|
1643
|
+
*/
|
|
1644
|
+
function _highlight(languageName, codeToHighlight, ignoreIllegals, continuation) {
|
|
1645
|
+
/**
|
|
1646
|
+
* Return keyword data if a match is a keyword
|
|
1647
|
+
* @param {CompiledMode} mode - current mode
|
|
1648
|
+
* @param {RegExpMatchArray} match - regexp match data
|
|
1649
|
+
* @returns {KeywordData | false}
|
|
1650
|
+
*/
|
|
1651
|
+
function keywordData(mode, match) {
|
|
1652
|
+
const matchText = language.case_insensitive ? match[0].toLowerCase() : match[0];
|
|
1653
|
+
return Object.prototype.hasOwnProperty.call(mode.keywords, matchText) && mode.keywords[matchText];
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
function processKeywords() {
|
|
1657
|
+
if (!top.keywords) {
|
|
1658
|
+
emitter.addText(modeBuffer);
|
|
1659
|
+
return;
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
let lastIndex = 0;
|
|
1663
|
+
top.keywordPatternRe.lastIndex = 0;
|
|
1664
|
+
let match = top.keywordPatternRe.exec(modeBuffer);
|
|
1665
|
+
let buf = "";
|
|
1666
|
+
|
|
1667
|
+
while (match) {
|
|
1668
|
+
buf += modeBuffer.substring(lastIndex, match.index);
|
|
1669
|
+
const data = keywordData(top, match);
|
|
1670
|
+
if (data) {
|
|
1671
|
+
const [kind, keywordRelevance] = data;
|
|
1672
|
+
emitter.addText(buf);
|
|
1673
|
+
buf = "";
|
|
1674
|
+
|
|
1675
|
+
relevance += keywordRelevance;
|
|
1676
|
+
if (kind.startsWith("_")) {
|
|
1677
|
+
// _ implied for relevance only, do not highlight
|
|
1678
|
+
// by applying a class name
|
|
1679
|
+
buf += match[0];
|
|
1680
|
+
} else {
|
|
1681
|
+
const cssClass = language.classNameAliases[kind] || kind;
|
|
1682
|
+
emitter.addKeyword(match[0], cssClass);
|
|
1683
|
+
}
|
|
1684
|
+
} else {
|
|
1685
|
+
buf += match[0];
|
|
1686
|
+
}
|
|
1687
|
+
lastIndex = top.keywordPatternRe.lastIndex;
|
|
1688
|
+
match = top.keywordPatternRe.exec(modeBuffer);
|
|
1689
|
+
}
|
|
1690
|
+
buf += modeBuffer.substr(lastIndex);
|
|
1691
|
+
emitter.addText(buf);
|
|
1692
|
+
}
|
|
1693
|
+
|
|
1694
|
+
function processSubLanguage() {
|
|
1695
|
+
if (modeBuffer === "") return;
|
|
1696
|
+
/** @type HighlightResult */
|
|
1697
|
+
let result = null;
|
|
1698
|
+
|
|
1699
|
+
if (typeof top.subLanguage === 'string') {
|
|
1700
|
+
if (!languages[top.subLanguage]) {
|
|
1701
|
+
emitter.addText(modeBuffer);
|
|
1702
|
+
return;
|
|
1703
|
+
}
|
|
1704
|
+
result = _highlight(top.subLanguage, modeBuffer, true, continuations[top.subLanguage]);
|
|
1705
|
+
continuations[top.subLanguage] = /** @type {CompiledMode} */ (result.top);
|
|
1706
|
+
} else {
|
|
1707
|
+
result = highlightAuto(modeBuffer, top.subLanguage.length ? top.subLanguage : null);
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
// Counting embedded language score towards the host language may be disabled
|
|
1711
|
+
// with zeroing the containing mode relevance. Use case in point is Markdown that
|
|
1712
|
+
// allows XML everywhere and makes every XML snippet to have a much larger Markdown
|
|
1713
|
+
// score.
|
|
1714
|
+
if (top.relevance > 0) {
|
|
1715
|
+
relevance += result.relevance;
|
|
1716
|
+
}
|
|
1717
|
+
emitter.addSublanguage(result.emitter, result.language);
|
|
1718
|
+
}
|
|
1719
|
+
|
|
1720
|
+
function processBuffer() {
|
|
1721
|
+
if (top.subLanguage != null) {
|
|
1722
|
+
processSubLanguage();
|
|
1723
|
+
} else {
|
|
1724
|
+
processKeywords();
|
|
1725
|
+
}
|
|
1726
|
+
modeBuffer = '';
|
|
1727
|
+
}
|
|
1728
|
+
|
|
1729
|
+
/**
|
|
1730
|
+
* @param {Mode} mode - new mode to start
|
|
1731
|
+
*/
|
|
1732
|
+
function startNewMode(mode) {
|
|
1733
|
+
if (mode.className) {
|
|
1734
|
+
emitter.openNode(language.classNameAliases[mode.className] || mode.className);
|
|
1735
|
+
}
|
|
1736
|
+
top = Object.create(mode, { parent: { value: top } });
|
|
1737
|
+
return top;
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1740
|
+
/**
|
|
1741
|
+
* @param {CompiledMode } mode - the mode to potentially end
|
|
1742
|
+
* @param {RegExpMatchArray} match - the latest match
|
|
1743
|
+
* @param {string} matchPlusRemainder - match plus remainder of content
|
|
1744
|
+
* @returns {CompiledMode | void} - the next mode, or if void continue on in current mode
|
|
1745
|
+
*/
|
|
1746
|
+
function endOfMode(mode, match, matchPlusRemainder) {
|
|
1747
|
+
let matched = startsWith(mode.endRe, matchPlusRemainder);
|
|
1748
|
+
|
|
1749
|
+
if (matched) {
|
|
1750
|
+
if (mode["on:end"]) {
|
|
1751
|
+
const resp = new Response(mode);
|
|
1752
|
+
mode["on:end"](match, resp);
|
|
1753
|
+
if (resp.isMatchIgnored) matched = false;
|
|
1754
|
+
}
|
|
1755
|
+
|
|
1756
|
+
if (matched) {
|
|
1757
|
+
while (mode.endsParent && mode.parent) {
|
|
1758
|
+
mode = mode.parent;
|
|
1759
|
+
}
|
|
1760
|
+
return mode;
|
|
1761
|
+
}
|
|
1762
|
+
}
|
|
1763
|
+
// even if on:end fires an `ignore` it's still possible
|
|
1764
|
+
// that we might trigger the end node because of a parent mode
|
|
1765
|
+
if (mode.endsWithParent) {
|
|
1766
|
+
return endOfMode(mode.parent, match, matchPlusRemainder);
|
|
1767
|
+
}
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
/**
|
|
1771
|
+
* Handle matching but then ignoring a sequence of text
|
|
1772
|
+
*
|
|
1773
|
+
* @param {string} lexeme - string containing full match text
|
|
1774
|
+
*/
|
|
1775
|
+
function doIgnore(lexeme) {
|
|
1776
|
+
if (top.matcher.regexIndex === 0) {
|
|
1777
|
+
// no more regexs to potentially match here, so we move the cursor forward one
|
|
1778
|
+
// space
|
|
1779
|
+
modeBuffer += lexeme[0];
|
|
1780
|
+
return 1;
|
|
1781
|
+
} else {
|
|
1782
|
+
// no need to move the cursor, we still have additional regexes to try and
|
|
1783
|
+
// match at this very spot
|
|
1784
|
+
resumeScanAtSamePosition = true;
|
|
1785
|
+
return 0;
|
|
1786
|
+
}
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1789
|
+
/**
|
|
1790
|
+
* Handle the start of a new potential mode match
|
|
1791
|
+
*
|
|
1792
|
+
* @param {EnhancedMatch} match - the current match
|
|
1793
|
+
* @returns {number} how far to advance the parse cursor
|
|
1794
|
+
*/
|
|
1795
|
+
function doBeginMatch(match) {
|
|
1796
|
+
const lexeme = match[0];
|
|
1797
|
+
const newMode = match.rule;
|
|
1798
|
+
|
|
1799
|
+
const resp = new Response(newMode);
|
|
1800
|
+
// first internal before callbacks, then the public ones
|
|
1801
|
+
const beforeCallbacks = [newMode.__beforeBegin, newMode["on:begin"]];
|
|
1802
|
+
for (const cb of beforeCallbacks) {
|
|
1803
|
+
if (!cb) continue;
|
|
1804
|
+
cb(match, resp);
|
|
1805
|
+
if (resp.isMatchIgnored) return doIgnore(lexeme);
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
if (newMode && newMode.endSameAsBegin) {
|
|
1809
|
+
newMode.endRe = escape(lexeme);
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
if (newMode.skip) {
|
|
1813
|
+
modeBuffer += lexeme;
|
|
1814
|
+
} else {
|
|
1815
|
+
if (newMode.excludeBegin) {
|
|
1816
|
+
modeBuffer += lexeme;
|
|
1817
|
+
}
|
|
1818
|
+
processBuffer();
|
|
1819
|
+
if (!newMode.returnBegin && !newMode.excludeBegin) {
|
|
1820
|
+
modeBuffer = lexeme;
|
|
1821
|
+
}
|
|
1822
|
+
}
|
|
1823
|
+
startNewMode(newMode);
|
|
1824
|
+
// if (mode["after:begin"]) {
|
|
1825
|
+
// let resp = new Response(mode);
|
|
1826
|
+
// mode["after:begin"](match, resp);
|
|
1827
|
+
// }
|
|
1828
|
+
return newMode.returnBegin ? 0 : lexeme.length;
|
|
1829
|
+
}
|
|
1830
|
+
|
|
1831
|
+
/**
|
|
1832
|
+
* Handle the potential end of mode
|
|
1833
|
+
*
|
|
1834
|
+
* @param {RegExpMatchArray} match - the current match
|
|
1835
|
+
*/
|
|
1836
|
+
function doEndMatch(match) {
|
|
1837
|
+
const lexeme = match[0];
|
|
1838
|
+
const matchPlusRemainder = codeToHighlight.substr(match.index);
|
|
1839
|
+
|
|
1840
|
+
const endMode = endOfMode(top, match, matchPlusRemainder);
|
|
1841
|
+
if (!endMode) { return NO_MATCH; }
|
|
1842
|
+
|
|
1843
|
+
const origin = top;
|
|
1844
|
+
if (origin.skip) {
|
|
1845
|
+
modeBuffer += lexeme;
|
|
1846
|
+
} else {
|
|
1847
|
+
if (!(origin.returnEnd || origin.excludeEnd)) {
|
|
1848
|
+
modeBuffer += lexeme;
|
|
1849
|
+
}
|
|
1850
|
+
processBuffer();
|
|
1851
|
+
if (origin.excludeEnd) {
|
|
1852
|
+
modeBuffer = lexeme;
|
|
1853
|
+
}
|
|
1854
|
+
}
|
|
1855
|
+
do {
|
|
1856
|
+
if (top.className) {
|
|
1857
|
+
emitter.closeNode();
|
|
1858
|
+
}
|
|
1859
|
+
if (!top.skip && !top.subLanguage) {
|
|
1860
|
+
relevance += top.relevance;
|
|
1861
|
+
}
|
|
1862
|
+
top = top.parent;
|
|
1863
|
+
} while (top !== endMode.parent);
|
|
1864
|
+
if (endMode.starts) {
|
|
1865
|
+
if (endMode.endSameAsBegin) {
|
|
1866
|
+
endMode.starts.endRe = endMode.endRe;
|
|
1867
|
+
}
|
|
1868
|
+
startNewMode(endMode.starts);
|
|
1869
|
+
}
|
|
1870
|
+
return origin.returnEnd ? 0 : lexeme.length;
|
|
1871
|
+
}
|
|
1872
|
+
|
|
1873
|
+
function processContinuations() {
|
|
1874
|
+
const list = [];
|
|
1875
|
+
for (let current = top; current !== language; current = current.parent) {
|
|
1876
|
+
if (current.className) {
|
|
1877
|
+
list.unshift(current.className);
|
|
1878
|
+
}
|
|
1879
|
+
}
|
|
1880
|
+
list.forEach(item => emitter.openNode(item));
|
|
1881
|
+
}
|
|
1882
|
+
|
|
1883
|
+
/** @type {{type?: MatchType, index?: number, rule?: Mode}}} */
|
|
1884
|
+
let lastMatch = {};
|
|
1885
|
+
|
|
1886
|
+
/**
|
|
1887
|
+
* Process an individual match
|
|
1888
|
+
*
|
|
1889
|
+
* @param {string} textBeforeMatch - text preceeding the match (since the last match)
|
|
1890
|
+
* @param {EnhancedMatch} [match] - the match itself
|
|
1891
|
+
*/
|
|
1892
|
+
function processLexeme(textBeforeMatch, match) {
|
|
1893
|
+
const lexeme = match && match[0];
|
|
1894
|
+
|
|
1895
|
+
// add non-matched text to the current mode buffer
|
|
1896
|
+
modeBuffer += textBeforeMatch;
|
|
1897
|
+
|
|
1898
|
+
if (lexeme == null) {
|
|
1899
|
+
processBuffer();
|
|
1900
|
+
return 0;
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
// we've found a 0 width match and we're stuck, so we need to advance
|
|
1904
|
+
// this happens when we have badly behaved rules that have optional matchers to the degree that
|
|
1905
|
+
// sometimes they can end up matching nothing at all
|
|
1906
|
+
// Ref: https://github.com/highlightjs/highlight.js/issues/2140
|
|
1907
|
+
if (lastMatch.type === "begin" && match.type === "end" && lastMatch.index === match.index && lexeme === "") {
|
|
1908
|
+
// spit the "skipped" character that our regex choked on back into the output sequence
|
|
1909
|
+
modeBuffer += codeToHighlight.slice(match.index, match.index + 1);
|
|
1910
|
+
if (!SAFE_MODE) {
|
|
1911
|
+
/** @type {AnnotatedError} */
|
|
1912
|
+
const err = new Error('0 width match regex');
|
|
1913
|
+
err.languageName = languageName;
|
|
1914
|
+
err.badRule = lastMatch.rule;
|
|
1915
|
+
throw err;
|
|
1916
|
+
}
|
|
1917
|
+
return 1;
|
|
1918
|
+
}
|
|
1919
|
+
lastMatch = match;
|
|
1920
|
+
|
|
1921
|
+
if (match.type === "begin") {
|
|
1922
|
+
return doBeginMatch(match);
|
|
1923
|
+
} else if (match.type === "illegal" && !ignoreIllegals) {
|
|
1924
|
+
// illegal match, we do not continue processing
|
|
1925
|
+
/** @type {AnnotatedError} */
|
|
1926
|
+
const err = new Error('Illegal lexeme "' + lexeme + '" for mode "' + (top.className || '<unnamed>') + '"');
|
|
1927
|
+
err.mode = top;
|
|
1928
|
+
throw err;
|
|
1929
|
+
} else if (match.type === "end") {
|
|
1930
|
+
const processed = doEndMatch(match);
|
|
1931
|
+
if (processed !== NO_MATCH) {
|
|
1932
|
+
return processed;
|
|
1933
|
+
}
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1936
|
+
// edge case for when illegal matches $ (end of line) which is technically
|
|
1937
|
+
// a 0 width match but not a begin/end match so it's not caught by the
|
|
1938
|
+
// first handler (when ignoreIllegals is true)
|
|
1939
|
+
if (match.type === "illegal" && lexeme === "") {
|
|
1940
|
+
// advance so we aren't stuck in an infinite loop
|
|
1941
|
+
return 1;
|
|
1942
|
+
}
|
|
1943
|
+
|
|
1944
|
+
// infinite loops are BAD, this is a last ditch catch all. if we have a
|
|
1945
|
+
// decent number of iterations yet our index (cursor position in our
|
|
1946
|
+
// parsing) still 3x behind our index then something is very wrong
|
|
1947
|
+
// so we bail
|
|
1948
|
+
if (iterations > 100000 && iterations > match.index * 3) {
|
|
1949
|
+
const err = new Error('potential infinite loop, way more iterations than matches');
|
|
1950
|
+
throw err;
|
|
1951
|
+
}
|
|
1952
|
+
|
|
1953
|
+
/*
|
|
1954
|
+
Why might be find ourselves here? Only one occasion now. An end match that was
|
|
1955
|
+
triggered but could not be completed. When might this happen? When an `endSameasBegin`
|
|
1956
|
+
rule sets the end rule to a specific match. Since the overall mode termination rule that's
|
|
1957
|
+
being used to scan the text isn't recompiled that means that any match that LOOKS like
|
|
1958
|
+
the end (but is not, because it is not an exact match to the beginning) will
|
|
1959
|
+
end up here. A definite end match, but when `doEndMatch` tries to "reapply"
|
|
1960
|
+
the end rule and fails to match, we wind up here, and just silently ignore the end.
|
|
1961
|
+
|
|
1962
|
+
This causes no real harm other than stopping a few times too many.
|
|
1963
|
+
*/
|
|
1964
|
+
|
|
1965
|
+
modeBuffer += lexeme;
|
|
1966
|
+
return lexeme.length;
|
|
1967
|
+
}
|
|
1968
|
+
|
|
1969
|
+
const language = getLanguage(languageName);
|
|
1970
|
+
if (!language) {
|
|
1971
|
+
error(LANGUAGE_NOT_FOUND.replace("{}", languageName));
|
|
1972
|
+
throw new Error('Unknown language: "' + languageName + '"');
|
|
1973
|
+
}
|
|
1974
|
+
|
|
1975
|
+
const md = compileLanguage(language, { plugins });
|
|
1976
|
+
let result = '';
|
|
1977
|
+
/** @type {CompiledMode} */
|
|
1978
|
+
let top = continuation || md;
|
|
1979
|
+
/** @type Record<string,CompiledMode> */
|
|
1980
|
+
const continuations = {}; // keep continuations for sub-languages
|
|
1981
|
+
const emitter = new options.__emitter(options);
|
|
1982
|
+
processContinuations();
|
|
1983
|
+
let modeBuffer = '';
|
|
1984
|
+
let relevance = 0;
|
|
1985
|
+
let index = 0;
|
|
1986
|
+
let iterations = 0;
|
|
1987
|
+
let resumeScanAtSamePosition = false;
|
|
1988
|
+
|
|
1989
|
+
try {
|
|
1990
|
+
top.matcher.considerAll();
|
|
1991
|
+
|
|
1992
|
+
for (;;) {
|
|
1993
|
+
iterations++;
|
|
1994
|
+
if (resumeScanAtSamePosition) {
|
|
1995
|
+
// only regexes not matched previously will now be
|
|
1996
|
+
// considered for a potential match
|
|
1997
|
+
resumeScanAtSamePosition = false;
|
|
1998
|
+
} else {
|
|
1999
|
+
top.matcher.considerAll();
|
|
2000
|
+
}
|
|
2001
|
+
top.matcher.lastIndex = index;
|
|
2002
|
+
|
|
2003
|
+
const match = top.matcher.exec(codeToHighlight);
|
|
2004
|
+
// console.log("match", match[0], match.rule && match.rule.begin)
|
|
2005
|
+
|
|
2006
|
+
if (!match) break;
|
|
2007
|
+
|
|
2008
|
+
const beforeMatch = codeToHighlight.substring(index, match.index);
|
|
2009
|
+
const processedCount = processLexeme(beforeMatch, match);
|
|
2010
|
+
index = match.index + processedCount;
|
|
2011
|
+
}
|
|
2012
|
+
processLexeme(codeToHighlight.substr(index));
|
|
2013
|
+
emitter.closeAllNodes();
|
|
2014
|
+
emitter.finalize();
|
|
2015
|
+
result = emitter.toHTML();
|
|
2016
|
+
|
|
2017
|
+
return {
|
|
2018
|
+
// avoid possible breakage with v10 clients expecting
|
|
2019
|
+
// this to always be an integer
|
|
2020
|
+
relevance: Math.floor(relevance),
|
|
2021
|
+
value: result,
|
|
2022
|
+
language: languageName,
|
|
2023
|
+
illegal: false,
|
|
2024
|
+
emitter: emitter,
|
|
2025
|
+
top: top
|
|
2026
|
+
};
|
|
2027
|
+
} catch (err) {
|
|
2028
|
+
if (err.message && err.message.includes('Illegal')) {
|
|
2029
|
+
return {
|
|
2030
|
+
illegal: true,
|
|
2031
|
+
illegalBy: {
|
|
2032
|
+
msg: err.message,
|
|
2033
|
+
context: codeToHighlight.slice(index - 100, index + 100),
|
|
2034
|
+
mode: err.mode
|
|
2035
|
+
},
|
|
2036
|
+
sofar: result,
|
|
2037
|
+
relevance: 0,
|
|
2038
|
+
value: escape$1(codeToHighlight),
|
|
2039
|
+
emitter: emitter
|
|
2040
|
+
};
|
|
2041
|
+
} else if (SAFE_MODE) {
|
|
2042
|
+
return {
|
|
2043
|
+
illegal: false,
|
|
2044
|
+
relevance: 0,
|
|
2045
|
+
value: escape$1(codeToHighlight),
|
|
2046
|
+
emitter: emitter,
|
|
2047
|
+
language: languageName,
|
|
2048
|
+
top: top,
|
|
2049
|
+
errorRaised: err
|
|
2050
|
+
};
|
|
2051
|
+
} else {
|
|
2052
|
+
throw err;
|
|
2053
|
+
}
|
|
2054
|
+
}
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2057
|
+
/**
|
|
2058
|
+
* returns a valid highlight result, without actually doing any actual work,
|
|
2059
|
+
* auto highlight starts with this and it's possible for small snippets that
|
|
2060
|
+
* auto-detection may not find a better match
|
|
2061
|
+
* @param {string} code
|
|
2062
|
+
* @returns {HighlightResult}
|
|
2063
|
+
*/
|
|
2064
|
+
function justTextHighlightResult(code) {
|
|
2065
|
+
const result = {
|
|
2066
|
+
relevance: 0,
|
|
2067
|
+
emitter: new options.__emitter(options),
|
|
2068
|
+
value: escape$1(code),
|
|
2069
|
+
illegal: false,
|
|
2070
|
+
top: PLAINTEXT_LANGUAGE
|
|
2071
|
+
};
|
|
2072
|
+
result.emitter.addText(code);
|
|
2073
|
+
return result;
|
|
2074
|
+
}
|
|
2075
|
+
|
|
2076
|
+
/**
|
|
2077
|
+
Highlighting with language detection. Accepts a string with the code to
|
|
2078
|
+
highlight. Returns an object with the following properties:
|
|
2079
|
+
|
|
2080
|
+
- language (detected language)
|
|
2081
|
+
- relevance (int)
|
|
2082
|
+
- value (an HTML string with highlighting markup)
|
|
2083
|
+
- second_best (object with the same structure for second-best heuristically
|
|
2084
|
+
detected language, may be absent)
|
|
2085
|
+
|
|
2086
|
+
@param {string} code
|
|
2087
|
+
@param {Array<string>} [languageSubset]
|
|
2088
|
+
@returns {AutoHighlightResult}
|
|
2089
|
+
*/
|
|
2090
|
+
function highlightAuto(code, languageSubset) {
|
|
2091
|
+
languageSubset = languageSubset || options.languages || Object.keys(languages);
|
|
2092
|
+
const plaintext = justTextHighlightResult(code);
|
|
2093
|
+
|
|
2094
|
+
const results = languageSubset.filter(getLanguage).filter(autoDetection).map(name =>
|
|
2095
|
+
_highlight(name, code, false)
|
|
2096
|
+
);
|
|
2097
|
+
results.unshift(plaintext); // plaintext is always an option
|
|
2098
|
+
|
|
2099
|
+
const sorted = results.sort((a, b) => {
|
|
2100
|
+
// sort base on relevance
|
|
2101
|
+
if (a.relevance !== b.relevance) return b.relevance - a.relevance;
|
|
2102
|
+
|
|
2103
|
+
// always award the tie to the base language
|
|
2104
|
+
// ie if C++ and Arduino are tied, it's more likely to be C++
|
|
2105
|
+
if (a.language && b.language) {
|
|
2106
|
+
if (getLanguage(a.language).supersetOf === b.language) {
|
|
2107
|
+
return 1;
|
|
2108
|
+
} else if (getLanguage(b.language).supersetOf === a.language) {
|
|
2109
|
+
return -1;
|
|
2110
|
+
}
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
// otherwise say they are equal, which has the effect of sorting on
|
|
2114
|
+
// relevance while preserving the original ordering - which is how ties
|
|
2115
|
+
// have historically been settled, ie the language that comes first always
|
|
2116
|
+
// wins in the case of a tie
|
|
2117
|
+
return 0;
|
|
2118
|
+
});
|
|
2119
|
+
|
|
2120
|
+
const [best, secondBest] = sorted;
|
|
2121
|
+
|
|
2122
|
+
/** @type {AutoHighlightResult} */
|
|
2123
|
+
const result = best;
|
|
2124
|
+
result.second_best = secondBest;
|
|
2125
|
+
|
|
2126
|
+
return result;
|
|
2127
|
+
}
|
|
2128
|
+
|
|
2129
|
+
/**
|
|
2130
|
+
Post-processing of the highlighted markup:
|
|
2131
|
+
|
|
2132
|
+
- replace TABs with something more useful
|
|
2133
|
+
- replace real line-breaks with '<br>' for non-pre containers
|
|
2134
|
+
|
|
2135
|
+
@param {string} html
|
|
2136
|
+
@returns {string}
|
|
2137
|
+
*/
|
|
2138
|
+
function fixMarkup(html) {
|
|
2139
|
+
if (!(options.tabReplace || options.useBR)) {
|
|
2140
|
+
return html;
|
|
2141
|
+
}
|
|
2142
|
+
|
|
2143
|
+
return html.replace(fixMarkupRe, match => {
|
|
2144
|
+
if (match === '\n') {
|
|
2145
|
+
return options.useBR ? '<br>' : match;
|
|
2146
|
+
} else if (options.tabReplace) {
|
|
2147
|
+
return match.replace(/\t/g, options.tabReplace);
|
|
2148
|
+
}
|
|
2149
|
+
return match;
|
|
2150
|
+
});
|
|
2151
|
+
}
|
|
2152
|
+
|
|
2153
|
+
/**
|
|
2154
|
+
* Builds new class name for block given the language name
|
|
2155
|
+
*
|
|
2156
|
+
* @param {HTMLElement} element
|
|
2157
|
+
* @param {string} [currentLang]
|
|
2158
|
+
* @param {string} [resultLang]
|
|
2159
|
+
*/
|
|
2160
|
+
function updateClassName(element, currentLang, resultLang) {
|
|
2161
|
+
const language = currentLang ? aliases[currentLang] : resultLang;
|
|
2162
|
+
|
|
2163
|
+
element.classList.add("hljs");
|
|
2164
|
+
if (language) element.classList.add(language);
|
|
2165
|
+
}
|
|
2166
|
+
|
|
2167
|
+
/** @type {HLJSPlugin} */
|
|
2168
|
+
const brPlugin = {
|
|
2169
|
+
"before:highlightElement": ({ el }) => {
|
|
2170
|
+
if (options.useBR) {
|
|
2171
|
+
el.innerHTML = el.innerHTML.replace(/\n/g, '').replace(/<br[ /]*>/g, '\n');
|
|
2172
|
+
}
|
|
2173
|
+
},
|
|
2174
|
+
"after:highlightElement": ({ result }) => {
|
|
2175
|
+
if (options.useBR) {
|
|
2176
|
+
result.value = result.value.replace(/\n/g, "<br>");
|
|
2177
|
+
}
|
|
2178
|
+
}
|
|
2179
|
+
};
|
|
2180
|
+
|
|
2181
|
+
const TAB_REPLACE_RE = /^(<[^>]+>|\t)+/gm;
|
|
2182
|
+
/** @type {HLJSPlugin} */
|
|
2183
|
+
const tabReplacePlugin = {
|
|
2184
|
+
"after:highlightElement": ({ result }) => {
|
|
2185
|
+
if (options.tabReplace) {
|
|
2186
|
+
result.value = result.value.replace(TAB_REPLACE_RE, (m) =>
|
|
2187
|
+
m.replace(/\t/g, options.tabReplace)
|
|
2188
|
+
);
|
|
2189
|
+
}
|
|
2190
|
+
}
|
|
2191
|
+
};
|
|
2192
|
+
|
|
2193
|
+
/**
|
|
2194
|
+
* Applies highlighting to a DOM node containing code. Accepts a DOM node and
|
|
2195
|
+
* two optional parameters for fixMarkup.
|
|
2196
|
+
*
|
|
2197
|
+
* @param {HighlightedHTMLElement} element - the HTML element to highlight
|
|
2198
|
+
*/
|
|
2199
|
+
function highlightElement(element) {
|
|
2200
|
+
/** @type HTMLElement */
|
|
2201
|
+
let node = null;
|
|
2202
|
+
const language = blockLanguage(element);
|
|
2203
|
+
|
|
2204
|
+
if (shouldNotHighlight(language)) return;
|
|
2205
|
+
|
|
2206
|
+
// support for v10 API
|
|
2207
|
+
fire("before:highlightElement",
|
|
2208
|
+
{ el: element, language: language });
|
|
2209
|
+
|
|
2210
|
+
node = element;
|
|
2211
|
+
const text = node.textContent;
|
|
2212
|
+
const result = language ? highlight(text, { language, ignoreIllegals: true }) : highlightAuto(text);
|
|
2213
|
+
|
|
2214
|
+
// support for v10 API
|
|
2215
|
+
fire("after:highlightElement", { el: element, result, text });
|
|
2216
|
+
|
|
2217
|
+
element.innerHTML = result.value;
|
|
2218
|
+
updateClassName(element, language, result.language);
|
|
2219
|
+
element.result = {
|
|
2220
|
+
language: result.language,
|
|
2221
|
+
// TODO: remove with version 11.0
|
|
2222
|
+
re: result.relevance,
|
|
2223
|
+
relavance: result.relevance
|
|
2224
|
+
};
|
|
2225
|
+
if (result.second_best) {
|
|
2226
|
+
element.second_best = {
|
|
2227
|
+
language: result.second_best.language,
|
|
2228
|
+
// TODO: remove with version 11.0
|
|
2229
|
+
re: result.second_best.relevance,
|
|
2230
|
+
relavance: result.second_best.relevance
|
|
2231
|
+
};
|
|
2232
|
+
}
|
|
2233
|
+
}
|
|
2234
|
+
|
|
2235
|
+
/**
|
|
2236
|
+
* Updates highlight.js global options with the passed options
|
|
2237
|
+
*
|
|
2238
|
+
* @param {Partial<HLJSOptions>} userOptions
|
|
2239
|
+
*/
|
|
2240
|
+
function configure(userOptions) {
|
|
2241
|
+
if (userOptions.useBR) {
|
|
2242
|
+
deprecated("10.3.0", "'useBR' will be removed entirely in v11.0");
|
|
2243
|
+
deprecated("10.3.0", "Please see https://github.com/highlightjs/highlight.js/issues/2559");
|
|
2244
|
+
}
|
|
2245
|
+
options = inherit$1(options, userOptions);
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2248
|
+
/**
|
|
2249
|
+
* Highlights to all <pre><code> blocks on a page
|
|
2250
|
+
*
|
|
2251
|
+
* @type {Function & {called?: boolean}}
|
|
2252
|
+
*/
|
|
2253
|
+
// TODO: remove v12, deprecated
|
|
2254
|
+
const initHighlighting = () => {
|
|
2255
|
+
if (initHighlighting.called) return;
|
|
2256
|
+
initHighlighting.called = true;
|
|
2257
|
+
|
|
2258
|
+
deprecated("10.6.0", "initHighlighting() is deprecated. Use highlightAll() instead.");
|
|
2259
|
+
|
|
2260
|
+
const blocks = document.querySelectorAll('pre code');
|
|
2261
|
+
blocks.forEach(highlightElement);
|
|
2262
|
+
};
|
|
2263
|
+
|
|
2264
|
+
// Higlights all when DOMContentLoaded fires
|
|
2265
|
+
// TODO: remove v12, deprecated
|
|
2266
|
+
function initHighlightingOnLoad() {
|
|
2267
|
+
deprecated("10.6.0", "initHighlightingOnLoad() is deprecated. Use highlightAll() instead.");
|
|
2268
|
+
wantsHighlight = true;
|
|
2269
|
+
}
|
|
2270
|
+
|
|
2271
|
+
let wantsHighlight = false;
|
|
2272
|
+
|
|
2273
|
+
/**
|
|
2274
|
+
* auto-highlights all pre>code elements on the page
|
|
2275
|
+
*/
|
|
2276
|
+
function highlightAll() {
|
|
2277
|
+
// if we are called too early in the loading process
|
|
2278
|
+
if (document.readyState === "loading") {
|
|
2279
|
+
wantsHighlight = true;
|
|
2280
|
+
return;
|
|
2281
|
+
}
|
|
2282
|
+
|
|
2283
|
+
const blocks = document.querySelectorAll('pre code');
|
|
2284
|
+
blocks.forEach(highlightElement);
|
|
2285
|
+
}
|
|
2286
|
+
|
|
2287
|
+
function boot() {
|
|
2288
|
+
// if a highlight was requested before DOM was loaded, do now
|
|
2289
|
+
if (wantsHighlight) highlightAll();
|
|
2290
|
+
}
|
|
2291
|
+
|
|
2292
|
+
// make sure we are in the browser environment
|
|
2293
|
+
if (typeof window !== 'undefined' && window.addEventListener) {
|
|
2294
|
+
window.addEventListener('DOMContentLoaded', boot, false);
|
|
2295
|
+
}
|
|
2296
|
+
|
|
2297
|
+
/**
|
|
2298
|
+
* Register a language grammar module
|
|
2299
|
+
*
|
|
2300
|
+
* @param {string} languageName
|
|
2301
|
+
* @param {LanguageFn} languageDefinition
|
|
2302
|
+
*/
|
|
2303
|
+
function registerLanguage(languageName, languageDefinition) {
|
|
2304
|
+
let lang = null;
|
|
2305
|
+
try {
|
|
2306
|
+
lang = languageDefinition(hljs);
|
|
2307
|
+
} catch (error$1) {
|
|
2308
|
+
error("Language definition for '{}' could not be registered.".replace("{}", languageName));
|
|
2309
|
+
// hard or soft error
|
|
2310
|
+
if (!SAFE_MODE) { throw error$1; } else { error(error$1); }
|
|
2311
|
+
// languages that have serious errors are replaced with essentially a
|
|
2312
|
+
// "plaintext" stand-in so that the code blocks will still get normal
|
|
2313
|
+
// css classes applied to them - and one bad language won't break the
|
|
2314
|
+
// entire highlighter
|
|
2315
|
+
lang = PLAINTEXT_LANGUAGE;
|
|
2316
|
+
}
|
|
2317
|
+
// give it a temporary name if it doesn't have one in the meta-data
|
|
2318
|
+
if (!lang.name) lang.name = languageName;
|
|
2319
|
+
languages[languageName] = lang;
|
|
2320
|
+
lang.rawDefinition = languageDefinition.bind(null, hljs);
|
|
2321
|
+
|
|
2322
|
+
if (lang.aliases) {
|
|
2323
|
+
registerAliases(lang.aliases, { languageName });
|
|
2324
|
+
}
|
|
2325
|
+
}
|
|
2326
|
+
|
|
2327
|
+
/**
|
|
2328
|
+
* Remove a language grammar module
|
|
2329
|
+
*
|
|
2330
|
+
* @param {string} languageName
|
|
2331
|
+
*/
|
|
2332
|
+
function unregisterLanguage(languageName) {
|
|
2333
|
+
delete languages[languageName];
|
|
2334
|
+
for (const alias of Object.keys(aliases)) {
|
|
2335
|
+
if (aliases[alias] === languageName) {
|
|
2336
|
+
delete aliases[alias];
|
|
2337
|
+
}
|
|
2338
|
+
}
|
|
2339
|
+
}
|
|
2340
|
+
|
|
2341
|
+
/**
|
|
2342
|
+
* @returns {string[]} List of language internal names
|
|
2343
|
+
*/
|
|
2344
|
+
function listLanguages() {
|
|
2345
|
+
return Object.keys(languages);
|
|
2346
|
+
}
|
|
2347
|
+
|
|
2348
|
+
/**
|
|
2349
|
+
intended usage: When one language truly requires another
|
|
2350
|
+
|
|
2351
|
+
Unlike `getLanguage`, this will throw when the requested language
|
|
2352
|
+
is not available.
|
|
2353
|
+
|
|
2354
|
+
@param {string} name - name of the language to fetch/require
|
|
2355
|
+
@returns {Language | never}
|
|
2356
|
+
*/
|
|
2357
|
+
function requireLanguage(name) {
|
|
2358
|
+
deprecated("10.4.0", "requireLanguage will be removed entirely in v11.");
|
|
2359
|
+
deprecated("10.4.0", "Please see https://github.com/highlightjs/highlight.js/pull/2844");
|
|
2360
|
+
|
|
2361
|
+
const lang = getLanguage(name);
|
|
2362
|
+
if (lang) { return lang; }
|
|
2363
|
+
|
|
2364
|
+
const err = new Error('The \'{}\' language is required, but not loaded.'.replace('{}', name));
|
|
2365
|
+
throw err;
|
|
2366
|
+
}
|
|
2367
|
+
|
|
2368
|
+
/**
|
|
2369
|
+
* @param {string} name - name of the language to retrieve
|
|
2370
|
+
* @returns {Language | undefined}
|
|
2371
|
+
*/
|
|
2372
|
+
function getLanguage(name) {
|
|
2373
|
+
name = (name || '').toLowerCase();
|
|
2374
|
+
return languages[name] || languages[aliases[name]];
|
|
2375
|
+
}
|
|
2376
|
+
|
|
2377
|
+
/**
|
|
2378
|
+
*
|
|
2379
|
+
* @param {string|string[]} aliasList - single alias or list of aliases
|
|
2380
|
+
* @param {{languageName: string}} opts
|
|
2381
|
+
*/
|
|
2382
|
+
function registerAliases(aliasList, { languageName }) {
|
|
2383
|
+
if (typeof aliasList === 'string') {
|
|
2384
|
+
aliasList = [aliasList];
|
|
2385
|
+
}
|
|
2386
|
+
aliasList.forEach(alias => { aliases[alias.toLowerCase()] = languageName; });
|
|
2387
|
+
}
|
|
2388
|
+
|
|
2389
|
+
/**
|
|
2390
|
+
* Determines if a given language has auto-detection enabled
|
|
2391
|
+
* @param {string} name - name of the language
|
|
2392
|
+
*/
|
|
2393
|
+
function autoDetection(name) {
|
|
2394
|
+
const lang = getLanguage(name);
|
|
2395
|
+
return lang && !lang.disableAutodetect;
|
|
2396
|
+
}
|
|
2397
|
+
|
|
2398
|
+
/**
|
|
2399
|
+
* Upgrades the old highlightBlock plugins to the new
|
|
2400
|
+
* highlightElement API
|
|
2401
|
+
* @param {HLJSPlugin} plugin
|
|
2402
|
+
*/
|
|
2403
|
+
function upgradePluginAPI(plugin) {
|
|
2404
|
+
// TODO: remove with v12
|
|
2405
|
+
if (plugin["before:highlightBlock"] && !plugin["before:highlightElement"]) {
|
|
2406
|
+
plugin["before:highlightElement"] = (data) => {
|
|
2407
|
+
plugin["before:highlightBlock"](
|
|
2408
|
+
Object.assign({ block: data.el }, data)
|
|
2409
|
+
);
|
|
2410
|
+
};
|
|
2411
|
+
}
|
|
2412
|
+
if (plugin["after:highlightBlock"] && !plugin["after:highlightElement"]) {
|
|
2413
|
+
plugin["after:highlightElement"] = (data) => {
|
|
2414
|
+
plugin["after:highlightBlock"](
|
|
2415
|
+
Object.assign({ block: data.el }, data)
|
|
2416
|
+
);
|
|
2417
|
+
};
|
|
2418
|
+
}
|
|
2419
|
+
}
|
|
2420
|
+
|
|
2421
|
+
/**
|
|
2422
|
+
* @param {HLJSPlugin} plugin
|
|
2423
|
+
*/
|
|
2424
|
+
function addPlugin(plugin) {
|
|
2425
|
+
upgradePluginAPI(plugin);
|
|
2426
|
+
plugins.push(plugin);
|
|
2427
|
+
}
|
|
2428
|
+
|
|
2429
|
+
/**
|
|
2430
|
+
*
|
|
2431
|
+
* @param {PluginEvent} event
|
|
2432
|
+
* @param {any} args
|
|
2433
|
+
*/
|
|
2434
|
+
function fire(event, args) {
|
|
2435
|
+
const cb = event;
|
|
2436
|
+
plugins.forEach(function(plugin) {
|
|
2437
|
+
if (plugin[cb]) {
|
|
2438
|
+
plugin[cb](args);
|
|
2439
|
+
}
|
|
2440
|
+
});
|
|
2441
|
+
}
|
|
2442
|
+
|
|
2443
|
+
/**
|
|
2444
|
+
Note: fixMarkup is deprecated and will be removed entirely in v11
|
|
2445
|
+
|
|
2446
|
+
@param {string} arg
|
|
2447
|
+
@returns {string}
|
|
2448
|
+
*/
|
|
2449
|
+
function deprecateFixMarkup(arg) {
|
|
2450
|
+
deprecated("10.2.0", "fixMarkup will be removed entirely in v11.0");
|
|
2451
|
+
deprecated("10.2.0", "Please see https://github.com/highlightjs/highlight.js/issues/2534");
|
|
2452
|
+
|
|
2453
|
+
return fixMarkup(arg);
|
|
2454
|
+
}
|
|
2455
|
+
|
|
2456
|
+
/**
|
|
2457
|
+
*
|
|
2458
|
+
* @param {HighlightedHTMLElement} el
|
|
2459
|
+
*/
|
|
2460
|
+
function deprecateHighlightBlock(el) {
|
|
2461
|
+
deprecated("10.7.0", "highlightBlock will be removed entirely in v12.0");
|
|
2462
|
+
deprecated("10.7.0", "Please use highlightElement now.");
|
|
2463
|
+
|
|
2464
|
+
return highlightElement(el);
|
|
2465
|
+
}
|
|
2466
|
+
|
|
2467
|
+
/* Interface definition */
|
|
2468
|
+
Object.assign(hljs, {
|
|
2469
|
+
highlight,
|
|
2470
|
+
highlightAuto,
|
|
2471
|
+
highlightAll,
|
|
2472
|
+
fixMarkup: deprecateFixMarkup,
|
|
2473
|
+
highlightElement,
|
|
2474
|
+
// TODO: Remove with v12 API
|
|
2475
|
+
highlightBlock: deprecateHighlightBlock,
|
|
2476
|
+
configure,
|
|
2477
|
+
initHighlighting,
|
|
2478
|
+
initHighlightingOnLoad,
|
|
2479
|
+
registerLanguage,
|
|
2480
|
+
unregisterLanguage,
|
|
2481
|
+
listLanguages,
|
|
2482
|
+
getLanguage,
|
|
2483
|
+
registerAliases,
|
|
2484
|
+
requireLanguage,
|
|
2485
|
+
autoDetection,
|
|
2486
|
+
inherit: inherit$1,
|
|
2487
|
+
addPlugin,
|
|
2488
|
+
// plugins for frameworks
|
|
2489
|
+
vuePlugin: BuildVuePlugin(hljs).VuePlugin
|
|
2490
|
+
});
|
|
2491
|
+
|
|
2492
|
+
hljs.debugMode = function() { SAFE_MODE = false; };
|
|
2493
|
+
hljs.safeMode = function() { SAFE_MODE = true; };
|
|
2494
|
+
hljs.versionString = version;
|
|
2495
|
+
|
|
2496
|
+
for (const key in MODES) {
|
|
2497
|
+
// @ts-ignore
|
|
2498
|
+
if (typeof MODES[key] === "object") {
|
|
2499
|
+
// @ts-ignore
|
|
2500
|
+
deepFreezeEs6(MODES[key]);
|
|
2501
|
+
}
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2504
|
+
// merge all the modes/regexs into our main object
|
|
2505
|
+
Object.assign(hljs, MODES);
|
|
2506
|
+
|
|
2507
|
+
// built-in plugins, likely to be moved out of core in the future
|
|
2508
|
+
hljs.addPlugin(brPlugin); // slated to be removed in v11
|
|
2509
|
+
hljs.addPlugin(mergeHTMLPlugin);
|
|
2510
|
+
hljs.addPlugin(tabReplacePlugin);
|
|
2511
|
+
return hljs;
|
|
2512
|
+
};
|
|
2513
|
+
|
|
2514
|
+
// export an "instance" of the highlighter
|
|
2515
|
+
var highlight = HLJS({});
|
|
2516
|
+
|
|
2517
|
+
module.exports = highlight;
|