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,1946 @@
|
|
|
1
|
+
|
|
2
|
+
/* **********************************************
|
|
3
|
+
Begin prism-core.js
|
|
4
|
+
********************************************** */
|
|
5
|
+
|
|
6
|
+
/// <reference lib="WebWorker"/>
|
|
7
|
+
|
|
8
|
+
var _self = (typeof window !== 'undefined')
|
|
9
|
+
? window // if in browser
|
|
10
|
+
: (
|
|
11
|
+
(typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope)
|
|
12
|
+
? self // if in worker
|
|
13
|
+
: {} // if in node js
|
|
14
|
+
);
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Prism: Lightweight, robust, elegant syntax highlighting
|
|
18
|
+
*
|
|
19
|
+
* @license MIT <https://opensource.org/licenses/MIT>
|
|
20
|
+
* @author Lea Verou <https://lea.verou.me>
|
|
21
|
+
* @namespace
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
var Prism = (function (_self) {
|
|
25
|
+
|
|
26
|
+
// Private helper vars
|
|
27
|
+
var lang = /(?:^|\s)lang(?:uage)?-([\w-]+)(?=\s|$)/i;
|
|
28
|
+
var uniqueId = 0;
|
|
29
|
+
|
|
30
|
+
// The grammar object for plaintext
|
|
31
|
+
var plainTextGrammar = {};
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
var _ = {
|
|
35
|
+
/**
|
|
36
|
+
* By default, Prism will attempt to highlight all code elements (by calling {@link Prism.highlightAll}) on the
|
|
37
|
+
* current page after the page finished loading. This might be a problem if e.g. you wanted to asynchronously load
|
|
38
|
+
* additional languages or plugins yourself.
|
|
39
|
+
*
|
|
40
|
+
* By setting this value to `true`, Prism will not automatically highlight all code elements on the page.
|
|
41
|
+
*
|
|
42
|
+
* You obviously have to change this value before the automatic highlighting started. To do this, you can add an
|
|
43
|
+
* empty Prism object into the global scope before loading the Prism script like this:
|
|
44
|
+
*
|
|
45
|
+
* ```js
|
|
46
|
+
* window.Prism = window.Prism || {};
|
|
47
|
+
* Prism.manual = true;
|
|
48
|
+
* // add a new <script> to load Prism's script
|
|
49
|
+
* ```
|
|
50
|
+
*
|
|
51
|
+
* @default false
|
|
52
|
+
* @type {boolean}
|
|
53
|
+
* @memberof Prism
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
manual: _self.Prism && _self.Prism.manual,
|
|
57
|
+
/**
|
|
58
|
+
* By default, if Prism is in a web worker, it assumes that it is in a worker it created itself, so it uses
|
|
59
|
+
* `addEventListener` to communicate with its parent instance. However, if you're using Prism manually in your
|
|
60
|
+
* own worker, you don't want it to do this.
|
|
61
|
+
*
|
|
62
|
+
* By setting this value to `true`, Prism will not add its own listeners to the worker.
|
|
63
|
+
*
|
|
64
|
+
* You obviously have to change this value before Prism executes. To do this, you can add an
|
|
65
|
+
* empty Prism object into the global scope before loading the Prism script like this:
|
|
66
|
+
*
|
|
67
|
+
* ```js
|
|
68
|
+
* window.Prism = window.Prism || {};
|
|
69
|
+
* Prism.disableWorkerMessageHandler = true;
|
|
70
|
+
* // Load Prism's script
|
|
71
|
+
* ```
|
|
72
|
+
*
|
|
73
|
+
* @default false
|
|
74
|
+
* @type {boolean}
|
|
75
|
+
* @memberof Prism
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
disableWorkerMessageHandler: _self.Prism && _self.Prism.disableWorkerMessageHandler,
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* A namespace for utility methods.
|
|
82
|
+
*
|
|
83
|
+
* All function in this namespace that are not explicitly marked as _public_ are for __internal use only__ and may
|
|
84
|
+
* change or disappear at any time.
|
|
85
|
+
*
|
|
86
|
+
* @namespace
|
|
87
|
+
* @memberof Prism
|
|
88
|
+
*/
|
|
89
|
+
util: {
|
|
90
|
+
encode: function encode(tokens) {
|
|
91
|
+
if (tokens instanceof Token) {
|
|
92
|
+
return new Token(tokens.type, encode(tokens.content), tokens.alias);
|
|
93
|
+
} else if (Array.isArray(tokens)) {
|
|
94
|
+
return tokens.map(encode);
|
|
95
|
+
} else {
|
|
96
|
+
return tokens.replace(/&/g, '&').replace(/</g, '<').replace(/\u00a0/g, ' ');
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* Returns the name of the type of the given value.
|
|
102
|
+
*
|
|
103
|
+
* @param {any} o
|
|
104
|
+
* @returns {string}
|
|
105
|
+
* @example
|
|
106
|
+
* type(null) === 'Null'
|
|
107
|
+
* type(undefined) === 'Undefined'
|
|
108
|
+
* type(123) === 'Number'
|
|
109
|
+
* type('foo') === 'String'
|
|
110
|
+
* type(true) === 'Boolean'
|
|
111
|
+
* type([1, 2]) === 'Array'
|
|
112
|
+
* type({}) === 'Object'
|
|
113
|
+
* type(String) === 'Function'
|
|
114
|
+
* type(/abc+/) === 'RegExp'
|
|
115
|
+
*/
|
|
116
|
+
type: function (o) {
|
|
117
|
+
return Object.prototype.toString.call(o).slice(8, -1);
|
|
118
|
+
},
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Returns a unique number for the given object. Later calls will still return the same number.
|
|
122
|
+
*
|
|
123
|
+
* @param {Object} obj
|
|
124
|
+
* @returns {number}
|
|
125
|
+
*/
|
|
126
|
+
objId: function (obj) {
|
|
127
|
+
if (!obj['__id']) {
|
|
128
|
+
Object.defineProperty(obj, '__id', { value: ++uniqueId });
|
|
129
|
+
}
|
|
130
|
+
return obj['__id'];
|
|
131
|
+
},
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* Creates a deep clone of the given object.
|
|
135
|
+
*
|
|
136
|
+
* The main intended use of this function is to clone language definitions.
|
|
137
|
+
*
|
|
138
|
+
* @param {T} o
|
|
139
|
+
* @param {Record<number, any>} [visited]
|
|
140
|
+
* @returns {T}
|
|
141
|
+
* @template T
|
|
142
|
+
*/
|
|
143
|
+
clone: function deepClone(o, visited) {
|
|
144
|
+
visited = visited || {};
|
|
145
|
+
|
|
146
|
+
var clone; var id;
|
|
147
|
+
switch (_.util.type(o)) {
|
|
148
|
+
case 'Object':
|
|
149
|
+
id = _.util.objId(o);
|
|
150
|
+
if (visited[id]) {
|
|
151
|
+
return visited[id];
|
|
152
|
+
}
|
|
153
|
+
clone = /** @type {Record<string, any>} */ ({});
|
|
154
|
+
visited[id] = clone;
|
|
155
|
+
|
|
156
|
+
for (var key in o) {
|
|
157
|
+
if (o.hasOwnProperty(key)) {
|
|
158
|
+
clone[key] = deepClone(o[key], visited);
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
return /** @type {any} */ (clone);
|
|
163
|
+
|
|
164
|
+
case 'Array':
|
|
165
|
+
id = _.util.objId(o);
|
|
166
|
+
if (visited[id]) {
|
|
167
|
+
return visited[id];
|
|
168
|
+
}
|
|
169
|
+
clone = [];
|
|
170
|
+
visited[id] = clone;
|
|
171
|
+
|
|
172
|
+
(/** @type {Array} */(/** @type {any} */(o))).forEach(function (v, i) {
|
|
173
|
+
clone[i] = deepClone(v, visited);
|
|
174
|
+
});
|
|
175
|
+
|
|
176
|
+
return /** @type {any} */ (clone);
|
|
177
|
+
|
|
178
|
+
default:
|
|
179
|
+
return o;
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Returns the Prism language of the given element set by a `language-xxxx` or `lang-xxxx` class.
|
|
185
|
+
*
|
|
186
|
+
* If no language is set for the element or the element is `null` or `undefined`, `none` will be returned.
|
|
187
|
+
*
|
|
188
|
+
* @param {Element} element
|
|
189
|
+
* @returns {string}
|
|
190
|
+
*/
|
|
191
|
+
getLanguage: function (element) {
|
|
192
|
+
while (element) {
|
|
193
|
+
var m = lang.exec(element.className);
|
|
194
|
+
if (m) {
|
|
195
|
+
return m[1].toLowerCase();
|
|
196
|
+
}
|
|
197
|
+
element = element.parentElement;
|
|
198
|
+
}
|
|
199
|
+
return 'none';
|
|
200
|
+
},
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* Sets the Prism `language-xxxx` class of the given element.
|
|
204
|
+
*
|
|
205
|
+
* @param {Element} element
|
|
206
|
+
* @param {string} language
|
|
207
|
+
* @returns {void}
|
|
208
|
+
*/
|
|
209
|
+
setLanguage: function (element, language) {
|
|
210
|
+
// remove all `language-xxxx` classes
|
|
211
|
+
// (this might leave behind a leading space)
|
|
212
|
+
element.className = element.className.replace(RegExp(lang, 'gi'), '');
|
|
213
|
+
|
|
214
|
+
// add the new `language-xxxx` class
|
|
215
|
+
// (using `classList` will automatically clean up spaces for us)
|
|
216
|
+
element.classList.add('language-' + language);
|
|
217
|
+
},
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* Returns the script element that is currently executing.
|
|
221
|
+
*
|
|
222
|
+
* This does __not__ work for line script element.
|
|
223
|
+
*
|
|
224
|
+
* @returns {HTMLScriptElement | null}
|
|
225
|
+
*/
|
|
226
|
+
currentScript: function () {
|
|
227
|
+
if (typeof document === 'undefined') {
|
|
228
|
+
return null;
|
|
229
|
+
}
|
|
230
|
+
if (document.currentScript && document.currentScript.tagName === 'SCRIPT' && 1 < 2 /* hack to trip TS' flow analysis */) {
|
|
231
|
+
return /** @type {any} */ (document.currentScript);
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
// IE11 workaround
|
|
235
|
+
// we'll get the src of the current script by parsing IE11's error stack trace
|
|
236
|
+
// this will not work for inline scripts
|
|
237
|
+
|
|
238
|
+
try {
|
|
239
|
+
throw new Error();
|
|
240
|
+
} catch (err) {
|
|
241
|
+
// Get file src url from stack. Specifically works with the format of stack traces in IE.
|
|
242
|
+
// A stack will look like this:
|
|
243
|
+
//
|
|
244
|
+
// Error
|
|
245
|
+
// at _.util.currentScript (http://localhost/components/prism-core.js:119:5)
|
|
246
|
+
// at Global code (http://localhost/components/prism-core.js:606:1)
|
|
247
|
+
|
|
248
|
+
var src = (/at [^(\r\n]*\((.*):[^:]+:[^:]+\)$/i.exec(err.stack) || [])[1];
|
|
249
|
+
if (src) {
|
|
250
|
+
var scripts = document.getElementsByTagName('script');
|
|
251
|
+
for (var i in scripts) {
|
|
252
|
+
if (scripts[i].src == src) {
|
|
253
|
+
return scripts[i];
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
return null;
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* Returns whether a given class is active for `element`.
|
|
263
|
+
*
|
|
264
|
+
* The class can be activated if `element` or one of its ancestors has the given class and it can be deactivated
|
|
265
|
+
* if `element` or one of its ancestors has the negated version of the given class. The _negated version_ of the
|
|
266
|
+
* given class is just the given class with a `no-` prefix.
|
|
267
|
+
*
|
|
268
|
+
* Whether the class is active is determined by the closest ancestor of `element` (where `element` itself is
|
|
269
|
+
* closest ancestor) that has the given class or the negated version of it. If neither `element` nor any of its
|
|
270
|
+
* ancestors have the given class or the negated version of it, then the default activation will be returned.
|
|
271
|
+
*
|
|
272
|
+
* In the paradoxical situation where the closest ancestor contains __both__ the given class and the negated
|
|
273
|
+
* version of it, the class is considered active.
|
|
274
|
+
*
|
|
275
|
+
* @param {Element} element
|
|
276
|
+
* @param {string} className
|
|
277
|
+
* @param {boolean} [defaultActivation=false]
|
|
278
|
+
* @returns {boolean}
|
|
279
|
+
*/
|
|
280
|
+
isActive: function (element, className, defaultActivation) {
|
|
281
|
+
var no = 'no-' + className;
|
|
282
|
+
|
|
283
|
+
while (element) {
|
|
284
|
+
var classList = element.classList;
|
|
285
|
+
if (classList.contains(className)) {
|
|
286
|
+
return true;
|
|
287
|
+
}
|
|
288
|
+
if (classList.contains(no)) {
|
|
289
|
+
return false;
|
|
290
|
+
}
|
|
291
|
+
element = element.parentElement;
|
|
292
|
+
}
|
|
293
|
+
return !!defaultActivation;
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
|
|
297
|
+
/**
|
|
298
|
+
* This namespace contains all currently loaded languages and the some helper functions to create and modify languages.
|
|
299
|
+
*
|
|
300
|
+
* @namespace
|
|
301
|
+
* @memberof Prism
|
|
302
|
+
* @public
|
|
303
|
+
*/
|
|
304
|
+
languages: {
|
|
305
|
+
/**
|
|
306
|
+
* The grammar for plain, unformatted text.
|
|
307
|
+
*/
|
|
308
|
+
plain: plainTextGrammar,
|
|
309
|
+
plaintext: plainTextGrammar,
|
|
310
|
+
text: plainTextGrammar,
|
|
311
|
+
txt: plainTextGrammar,
|
|
312
|
+
|
|
313
|
+
/**
|
|
314
|
+
* Creates a deep copy of the language with the given id and appends the given tokens.
|
|
315
|
+
*
|
|
316
|
+
* If a token in `redef` also appears in the copied language, then the existing token in the copied language
|
|
317
|
+
* will be overwritten at its original position.
|
|
318
|
+
*
|
|
319
|
+
* ## Best practices
|
|
320
|
+
*
|
|
321
|
+
* Since the position of overwriting tokens (token in `redef` that overwrite tokens in the copied language)
|
|
322
|
+
* doesn't matter, they can technically be in any order. However, this can be confusing to others that trying to
|
|
323
|
+
* understand the language definition because, normally, the order of tokens matters in Prism grammars.
|
|
324
|
+
*
|
|
325
|
+
* Therefore, it is encouraged to order overwriting tokens according to the positions of the overwritten tokens.
|
|
326
|
+
* Furthermore, all non-overwriting tokens should be placed after the overwriting ones.
|
|
327
|
+
*
|
|
328
|
+
* @param {string} id The id of the language to extend. This has to be a key in `Prism.languages`.
|
|
329
|
+
* @param {Grammar} redef The new tokens to append.
|
|
330
|
+
* @returns {Grammar} The new language created.
|
|
331
|
+
* @public
|
|
332
|
+
* @example
|
|
333
|
+
* Prism.languages['css-with-colors'] = Prism.languages.extend('css', {
|
|
334
|
+
* // Prism.languages.css already has a 'comment' token, so this token will overwrite CSS' 'comment' token
|
|
335
|
+
* // at its original position
|
|
336
|
+
* 'comment': { ... },
|
|
337
|
+
* // CSS doesn't have a 'color' token, so this token will be appended
|
|
338
|
+
* 'color': /\b(?:red|green|blue)\b/
|
|
339
|
+
* });
|
|
340
|
+
*/
|
|
341
|
+
extend: function (id, redef) {
|
|
342
|
+
var lang = _.util.clone(_.languages[id]);
|
|
343
|
+
|
|
344
|
+
for (var key in redef) {
|
|
345
|
+
lang[key] = redef[key];
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
return lang;
|
|
349
|
+
},
|
|
350
|
+
|
|
351
|
+
/**
|
|
352
|
+
* Inserts tokens _before_ another token in a language definition or any other grammar.
|
|
353
|
+
*
|
|
354
|
+
* ## Usage
|
|
355
|
+
*
|
|
356
|
+
* This helper method makes it easy to modify existing languages. For example, the CSS language definition
|
|
357
|
+
* not only defines CSS highlighting for CSS documents, but also needs to define highlighting for CSS embedded
|
|
358
|
+
* in HTML through `<style>` elements. To do this, it needs to modify `Prism.languages.markup` and add the
|
|
359
|
+
* appropriate tokens. However, `Prism.languages.markup` is a regular JavaScript object literal, so if you do
|
|
360
|
+
* this:
|
|
361
|
+
*
|
|
362
|
+
* ```js
|
|
363
|
+
* Prism.languages.markup.style = {
|
|
364
|
+
* // token
|
|
365
|
+
* };
|
|
366
|
+
* ```
|
|
367
|
+
*
|
|
368
|
+
* then the `style` token will be added (and processed) at the end. `insertBefore` allows you to insert tokens
|
|
369
|
+
* before existing tokens. For the CSS example above, you would use it like this:
|
|
370
|
+
*
|
|
371
|
+
* ```js
|
|
372
|
+
* Prism.languages.insertBefore('markup', 'cdata', {
|
|
373
|
+
* 'style': {
|
|
374
|
+
* // token
|
|
375
|
+
* }
|
|
376
|
+
* });
|
|
377
|
+
* ```
|
|
378
|
+
*
|
|
379
|
+
* ## Special cases
|
|
380
|
+
*
|
|
381
|
+
* If the grammars of `inside` and `insert` have tokens with the same name, the tokens in `inside`'s grammar
|
|
382
|
+
* will be ignored.
|
|
383
|
+
*
|
|
384
|
+
* This behavior can be used to insert tokens after `before`:
|
|
385
|
+
*
|
|
386
|
+
* ```js
|
|
387
|
+
* Prism.languages.insertBefore('markup', 'comment', {
|
|
388
|
+
* 'comment': Prism.languages.markup.comment,
|
|
389
|
+
* // tokens after 'comment'
|
|
390
|
+
* });
|
|
391
|
+
* ```
|
|
392
|
+
*
|
|
393
|
+
* ## Limitations
|
|
394
|
+
*
|
|
395
|
+
* The main problem `insertBefore` has to solve is iteration order. Since ES2015, the iteration order for object
|
|
396
|
+
* properties is guaranteed to be the insertion order (except for integer keys) but some browsers behave
|
|
397
|
+
* differently when keys are deleted and re-inserted. So `insertBefore` can't be implemented by temporarily
|
|
398
|
+
* deleting properties which is necessary to insert at arbitrary positions.
|
|
399
|
+
*
|
|
400
|
+
* To solve this problem, `insertBefore` doesn't actually insert the given tokens into the target object.
|
|
401
|
+
* Instead, it will create a new object and replace all references to the target object with the new one. This
|
|
402
|
+
* can be done without temporarily deleting properties, so the iteration order is well-defined.
|
|
403
|
+
*
|
|
404
|
+
* However, only references that can be reached from `Prism.languages` or `insert` will be replaced. I.e. if
|
|
405
|
+
* you hold the target object in a variable, then the value of the variable will not change.
|
|
406
|
+
*
|
|
407
|
+
* ```js
|
|
408
|
+
* var oldMarkup = Prism.languages.markup;
|
|
409
|
+
* var newMarkup = Prism.languages.insertBefore('markup', 'comment', { ... });
|
|
410
|
+
*
|
|
411
|
+
* assert(oldMarkup !== Prism.languages.markup);
|
|
412
|
+
* assert(newMarkup === Prism.languages.markup);
|
|
413
|
+
* ```
|
|
414
|
+
*
|
|
415
|
+
* @param {string} inside The property of `root` (e.g. a language id in `Prism.languages`) that contains the
|
|
416
|
+
* object to be modified.
|
|
417
|
+
* @param {string} before The key to insert before.
|
|
418
|
+
* @param {Grammar} insert An object containing the key-value pairs to be inserted.
|
|
419
|
+
* @param {Object<string, any>} [root] The object containing `inside`, i.e. the object that contains the
|
|
420
|
+
* object to be modified.
|
|
421
|
+
*
|
|
422
|
+
* Defaults to `Prism.languages`.
|
|
423
|
+
* @returns {Grammar} The new grammar object.
|
|
424
|
+
* @public
|
|
425
|
+
*/
|
|
426
|
+
insertBefore: function (inside, before, insert, root) {
|
|
427
|
+
root = root || /** @type {any} */ (_.languages);
|
|
428
|
+
var grammar = root[inside];
|
|
429
|
+
/** @type {Grammar} */
|
|
430
|
+
var ret = {};
|
|
431
|
+
|
|
432
|
+
for (var token in grammar) {
|
|
433
|
+
if (grammar.hasOwnProperty(token)) {
|
|
434
|
+
|
|
435
|
+
if (token == before) {
|
|
436
|
+
for (var newToken in insert) {
|
|
437
|
+
if (insert.hasOwnProperty(newToken)) {
|
|
438
|
+
ret[newToken] = insert[newToken];
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
// Do not insert token which also occur in insert. See #1525
|
|
444
|
+
if (!insert.hasOwnProperty(token)) {
|
|
445
|
+
ret[token] = grammar[token];
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
var old = root[inside];
|
|
451
|
+
root[inside] = ret;
|
|
452
|
+
|
|
453
|
+
// Update references in other language definitions
|
|
454
|
+
_.languages.DFS(_.languages, function (key, value) {
|
|
455
|
+
if (value === old && key != inside) {
|
|
456
|
+
this[key] = ret;
|
|
457
|
+
}
|
|
458
|
+
});
|
|
459
|
+
|
|
460
|
+
return ret;
|
|
461
|
+
},
|
|
462
|
+
|
|
463
|
+
// Traverse a language definition with Depth First Search
|
|
464
|
+
DFS: function DFS(o, callback, type, visited) {
|
|
465
|
+
visited = visited || {};
|
|
466
|
+
|
|
467
|
+
var objId = _.util.objId;
|
|
468
|
+
|
|
469
|
+
for (var i in o) {
|
|
470
|
+
if (o.hasOwnProperty(i)) {
|
|
471
|
+
callback.call(o, i, o[i], type || i);
|
|
472
|
+
|
|
473
|
+
var property = o[i];
|
|
474
|
+
var propertyType = _.util.type(property);
|
|
475
|
+
|
|
476
|
+
if (propertyType === 'Object' && !visited[objId(property)]) {
|
|
477
|
+
visited[objId(property)] = true;
|
|
478
|
+
DFS(property, callback, null, visited);
|
|
479
|
+
} else if (propertyType === 'Array' && !visited[objId(property)]) {
|
|
480
|
+
visited[objId(property)] = true;
|
|
481
|
+
DFS(property, callback, i, visited);
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
},
|
|
487
|
+
|
|
488
|
+
plugins: {},
|
|
489
|
+
|
|
490
|
+
/**
|
|
491
|
+
* This is the most high-level function in Prism’s API.
|
|
492
|
+
* It fetches all the elements that have a `.language-xxxx` class and then calls {@link Prism.highlightElement} on
|
|
493
|
+
* each one of them.
|
|
494
|
+
*
|
|
495
|
+
* This is equivalent to `Prism.highlightAllUnder(document, async, callback)`.
|
|
496
|
+
*
|
|
497
|
+
* @param {boolean} [async=false] Same as in {@link Prism.highlightAllUnder}.
|
|
498
|
+
* @param {HighlightCallback} [callback] Same as in {@link Prism.highlightAllUnder}.
|
|
499
|
+
* @memberof Prism
|
|
500
|
+
* @public
|
|
501
|
+
*/
|
|
502
|
+
highlightAll: function (async, callback) {
|
|
503
|
+
_.highlightAllUnder(document, async, callback);
|
|
504
|
+
},
|
|
505
|
+
|
|
506
|
+
/**
|
|
507
|
+
* Fetches all the descendants of `container` that have a `.language-xxxx` class and then calls
|
|
508
|
+
* {@link Prism.highlightElement} on each one of them.
|
|
509
|
+
*
|
|
510
|
+
* The following hooks will be run:
|
|
511
|
+
* 1. `before-highlightall`
|
|
512
|
+
* 2. `before-all-elements-highlight`
|
|
513
|
+
* 3. All hooks of {@link Prism.highlightElement} for each element.
|
|
514
|
+
*
|
|
515
|
+
* @param {ParentNode} container The root element, whose descendants that have a `.language-xxxx` class will be highlighted.
|
|
516
|
+
* @param {boolean} [async=false] Whether each element is to be highlighted asynchronously using Web Workers.
|
|
517
|
+
* @param {HighlightCallback} [callback] An optional callback to be invoked on each element after its highlighting is done.
|
|
518
|
+
* @memberof Prism
|
|
519
|
+
* @public
|
|
520
|
+
*/
|
|
521
|
+
highlightAllUnder: function (container, async, callback) {
|
|
522
|
+
var env = {
|
|
523
|
+
callback: callback,
|
|
524
|
+
container: container,
|
|
525
|
+
selector: 'code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'
|
|
526
|
+
};
|
|
527
|
+
|
|
528
|
+
_.hooks.run('before-highlightall', env);
|
|
529
|
+
|
|
530
|
+
env.elements = Array.prototype.slice.apply(env.container.querySelectorAll(env.selector));
|
|
531
|
+
|
|
532
|
+
_.hooks.run('before-all-elements-highlight', env);
|
|
533
|
+
|
|
534
|
+
for (var i = 0, element; (element = env.elements[i++]);) {
|
|
535
|
+
_.highlightElement(element, async === true, env.callback);
|
|
536
|
+
}
|
|
537
|
+
},
|
|
538
|
+
|
|
539
|
+
/**
|
|
540
|
+
* Highlights the code inside a single element.
|
|
541
|
+
*
|
|
542
|
+
* The following hooks will be run:
|
|
543
|
+
* 1. `before-sanity-check`
|
|
544
|
+
* 2. `before-highlight`
|
|
545
|
+
* 3. All hooks of {@link Prism.highlight}. These hooks will be run by an asynchronous worker if `async` is `true`.
|
|
546
|
+
* 4. `before-insert`
|
|
547
|
+
* 5. `after-highlight`
|
|
548
|
+
* 6. `complete`
|
|
549
|
+
*
|
|
550
|
+
* Some the above hooks will be skipped if the element doesn't contain any text or there is no grammar loaded for
|
|
551
|
+
* the element's language.
|
|
552
|
+
*
|
|
553
|
+
* @param {Element} element The element containing the code.
|
|
554
|
+
* It must have a class of `language-xxxx` to be processed, where `xxxx` is a valid language identifier.
|
|
555
|
+
* @param {boolean} [async=false] Whether the element is to be highlighted asynchronously using Web Workers
|
|
556
|
+
* to improve performance and avoid blocking the UI when highlighting very large chunks of code. This option is
|
|
557
|
+
* [disabled by default](https://prismjs.com/faq.html#why-is-asynchronous-highlighting-disabled-by-default).
|
|
558
|
+
*
|
|
559
|
+
* Note: All language definitions required to highlight the code must be included in the main `prism.js` file for
|
|
560
|
+
* asynchronous highlighting to work. You can build your own bundle on the
|
|
561
|
+
* [Download page](https://prismjs.com/download.html).
|
|
562
|
+
* @param {HighlightCallback} [callback] An optional callback to be invoked after the highlighting is done.
|
|
563
|
+
* Mostly useful when `async` is `true`, since in that case, the highlighting is done asynchronously.
|
|
564
|
+
* @memberof Prism
|
|
565
|
+
* @public
|
|
566
|
+
*/
|
|
567
|
+
highlightElement: function (element, async, callback) {
|
|
568
|
+
// Find language
|
|
569
|
+
var language = _.util.getLanguage(element);
|
|
570
|
+
var grammar = _.languages[language];
|
|
571
|
+
|
|
572
|
+
// Set language on the element, if not present
|
|
573
|
+
_.util.setLanguage(element, language);
|
|
574
|
+
|
|
575
|
+
// Set language on the parent, for styling
|
|
576
|
+
var parent = element.parentElement;
|
|
577
|
+
if (parent && parent.nodeName.toLowerCase() === 'pre') {
|
|
578
|
+
_.util.setLanguage(parent, language);
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
var code = element.textContent;
|
|
582
|
+
|
|
583
|
+
var env = {
|
|
584
|
+
element: element,
|
|
585
|
+
language: language,
|
|
586
|
+
grammar: grammar,
|
|
587
|
+
code: code
|
|
588
|
+
};
|
|
589
|
+
|
|
590
|
+
function insertHighlightedCode(highlightedCode) {
|
|
591
|
+
env.highlightedCode = highlightedCode;
|
|
592
|
+
|
|
593
|
+
_.hooks.run('before-insert', env);
|
|
594
|
+
|
|
595
|
+
env.element.innerHTML = env.highlightedCode;
|
|
596
|
+
|
|
597
|
+
_.hooks.run('after-highlight', env);
|
|
598
|
+
_.hooks.run('complete', env);
|
|
599
|
+
callback && callback.call(env.element);
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
_.hooks.run('before-sanity-check', env);
|
|
603
|
+
|
|
604
|
+
// plugins may change/add the parent/element
|
|
605
|
+
parent = env.element.parentElement;
|
|
606
|
+
if (parent && parent.nodeName.toLowerCase() === 'pre' && !parent.hasAttribute('tabindex')) {
|
|
607
|
+
parent.setAttribute('tabindex', '0');
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
if (!env.code) {
|
|
611
|
+
_.hooks.run('complete', env);
|
|
612
|
+
callback && callback.call(env.element);
|
|
613
|
+
return;
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
_.hooks.run('before-highlight', env);
|
|
617
|
+
|
|
618
|
+
if (!env.grammar) {
|
|
619
|
+
insertHighlightedCode(_.util.encode(env.code));
|
|
620
|
+
return;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
if (async && _self.Worker) {
|
|
624
|
+
var worker = new Worker(_.filename);
|
|
625
|
+
|
|
626
|
+
worker.onmessage = function (evt) {
|
|
627
|
+
insertHighlightedCode(evt.data);
|
|
628
|
+
};
|
|
629
|
+
|
|
630
|
+
worker.postMessage(JSON.stringify({
|
|
631
|
+
language: env.language,
|
|
632
|
+
code: env.code,
|
|
633
|
+
immediateClose: true
|
|
634
|
+
}));
|
|
635
|
+
} else {
|
|
636
|
+
insertHighlightedCode(_.highlight(env.code, env.grammar, env.language));
|
|
637
|
+
}
|
|
638
|
+
},
|
|
639
|
+
|
|
640
|
+
/**
|
|
641
|
+
* Low-level function, only use if you know what you’re doing. It accepts a string of text as input
|
|
642
|
+
* and the language definitions to use, and returns a string with the HTML produced.
|
|
643
|
+
*
|
|
644
|
+
* The following hooks will be run:
|
|
645
|
+
* 1. `before-tokenize`
|
|
646
|
+
* 2. `after-tokenize`
|
|
647
|
+
* 3. `wrap`: On each {@link Token}.
|
|
648
|
+
*
|
|
649
|
+
* @param {string} text A string with the code to be highlighted.
|
|
650
|
+
* @param {Grammar} grammar An object containing the tokens to use.
|
|
651
|
+
*
|
|
652
|
+
* Usually a language definition like `Prism.languages.markup`.
|
|
653
|
+
* @param {string} language The name of the language definition passed to `grammar`.
|
|
654
|
+
* @returns {string} The highlighted HTML.
|
|
655
|
+
* @memberof Prism
|
|
656
|
+
* @public
|
|
657
|
+
* @example
|
|
658
|
+
* Prism.highlight('var foo = true;', Prism.languages.javascript, 'javascript');
|
|
659
|
+
*/
|
|
660
|
+
highlight: function (text, grammar, language) {
|
|
661
|
+
var env = {
|
|
662
|
+
code: text,
|
|
663
|
+
grammar: grammar,
|
|
664
|
+
language: language
|
|
665
|
+
};
|
|
666
|
+
_.hooks.run('before-tokenize', env);
|
|
667
|
+
if (!env.grammar) {
|
|
668
|
+
throw new Error('The language "' + env.language + '" has no grammar.');
|
|
669
|
+
}
|
|
670
|
+
env.tokens = _.tokenize(env.code, env.grammar);
|
|
671
|
+
_.hooks.run('after-tokenize', env);
|
|
672
|
+
return Token.stringify(_.util.encode(env.tokens), env.language);
|
|
673
|
+
},
|
|
674
|
+
|
|
675
|
+
/**
|
|
676
|
+
* This is the heart of Prism, and the most low-level function you can use. It accepts a string of text as input
|
|
677
|
+
* and the language definitions to use, and returns an array with the tokenized code.
|
|
678
|
+
*
|
|
679
|
+
* When the language definition includes nested tokens, the function is called recursively on each of these tokens.
|
|
680
|
+
*
|
|
681
|
+
* This method could be useful in other contexts as well, as a very crude parser.
|
|
682
|
+
*
|
|
683
|
+
* @param {string} text A string with the code to be highlighted.
|
|
684
|
+
* @param {Grammar} grammar An object containing the tokens to use.
|
|
685
|
+
*
|
|
686
|
+
* Usually a language definition like `Prism.languages.markup`.
|
|
687
|
+
* @returns {TokenStream} An array of strings and tokens, a token stream.
|
|
688
|
+
* @memberof Prism
|
|
689
|
+
* @public
|
|
690
|
+
* @example
|
|
691
|
+
* let code = `var foo = 0;`;
|
|
692
|
+
* let tokens = Prism.tokenize(code, Prism.languages.javascript);
|
|
693
|
+
* tokens.forEach(token => {
|
|
694
|
+
* if (token instanceof Prism.Token && token.type === 'number') {
|
|
695
|
+
* console.log(`Found numeric literal: ${token.content}`);
|
|
696
|
+
* }
|
|
697
|
+
* });
|
|
698
|
+
*/
|
|
699
|
+
tokenize: function (text, grammar) {
|
|
700
|
+
var rest = grammar.rest;
|
|
701
|
+
if (rest) {
|
|
702
|
+
for (var token in rest) {
|
|
703
|
+
grammar[token] = rest[token];
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
delete grammar.rest;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
var tokenList = new LinkedList();
|
|
710
|
+
addAfter(tokenList, tokenList.head, text);
|
|
711
|
+
|
|
712
|
+
matchGrammar(text, tokenList, grammar, tokenList.head, 0);
|
|
713
|
+
|
|
714
|
+
return toArray(tokenList);
|
|
715
|
+
},
|
|
716
|
+
|
|
717
|
+
/**
|
|
718
|
+
* @namespace
|
|
719
|
+
* @memberof Prism
|
|
720
|
+
* @public
|
|
721
|
+
*/
|
|
722
|
+
hooks: {
|
|
723
|
+
all: {},
|
|
724
|
+
|
|
725
|
+
/**
|
|
726
|
+
* Adds the given callback to the list of callbacks for the given hook.
|
|
727
|
+
*
|
|
728
|
+
* The callback will be invoked when the hook it is registered for is run.
|
|
729
|
+
* Hooks are usually directly run by a highlight function but you can also run hooks yourself.
|
|
730
|
+
*
|
|
731
|
+
* One callback function can be registered to multiple hooks and the same hook multiple times.
|
|
732
|
+
*
|
|
733
|
+
* @param {string} name The name of the hook.
|
|
734
|
+
* @param {HookCallback} callback The callback function which is given environment variables.
|
|
735
|
+
* @public
|
|
736
|
+
*/
|
|
737
|
+
add: function (name, callback) {
|
|
738
|
+
var hooks = _.hooks.all;
|
|
739
|
+
|
|
740
|
+
hooks[name] = hooks[name] || [];
|
|
741
|
+
|
|
742
|
+
hooks[name].push(callback);
|
|
743
|
+
},
|
|
744
|
+
|
|
745
|
+
/**
|
|
746
|
+
* Runs a hook invoking all registered callbacks with the given environment variables.
|
|
747
|
+
*
|
|
748
|
+
* Callbacks will be invoked synchronously and in the order in which they were registered.
|
|
749
|
+
*
|
|
750
|
+
* @param {string} name The name of the hook.
|
|
751
|
+
* @param {Object<string, any>} env The environment variables of the hook passed to all callbacks registered.
|
|
752
|
+
* @public
|
|
753
|
+
*/
|
|
754
|
+
run: function (name, env) {
|
|
755
|
+
var callbacks = _.hooks.all[name];
|
|
756
|
+
|
|
757
|
+
if (!callbacks || !callbacks.length) {
|
|
758
|
+
return;
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
for (var i = 0, callback; (callback = callbacks[i++]);) {
|
|
762
|
+
callback(env);
|
|
763
|
+
}
|
|
764
|
+
}
|
|
765
|
+
},
|
|
766
|
+
|
|
767
|
+
Token: Token
|
|
768
|
+
};
|
|
769
|
+
_self.Prism = _;
|
|
770
|
+
|
|
771
|
+
|
|
772
|
+
// Typescript note:
|
|
773
|
+
// The following can be used to import the Token type in JSDoc:
|
|
774
|
+
//
|
|
775
|
+
// @typedef {InstanceType<import("./prism-core")["Token"]>} Token
|
|
776
|
+
|
|
777
|
+
/**
|
|
778
|
+
* Creates a new token.
|
|
779
|
+
*
|
|
780
|
+
* @param {string} type See {@link Token#type type}
|
|
781
|
+
* @param {string | TokenStream} content See {@link Token#content content}
|
|
782
|
+
* @param {string|string[]} [alias] The alias(es) of the token.
|
|
783
|
+
* @param {string} [matchedStr=""] A copy of the full string this token was created from.
|
|
784
|
+
* @class
|
|
785
|
+
* @global
|
|
786
|
+
* @public
|
|
787
|
+
*/
|
|
788
|
+
function Token(type, content, alias, matchedStr) {
|
|
789
|
+
/**
|
|
790
|
+
* The type of the token.
|
|
791
|
+
*
|
|
792
|
+
* This is usually the key of a pattern in a {@link Grammar}.
|
|
793
|
+
*
|
|
794
|
+
* @type {string}
|
|
795
|
+
* @see GrammarToken
|
|
796
|
+
* @public
|
|
797
|
+
*/
|
|
798
|
+
this.type = type;
|
|
799
|
+
/**
|
|
800
|
+
* The strings or tokens contained by this token.
|
|
801
|
+
*
|
|
802
|
+
* This will be a token stream if the pattern matched also defined an `inside` grammar.
|
|
803
|
+
*
|
|
804
|
+
* @type {string | TokenStream}
|
|
805
|
+
* @public
|
|
806
|
+
*/
|
|
807
|
+
this.content = content;
|
|
808
|
+
/**
|
|
809
|
+
* The alias(es) of the token.
|
|
810
|
+
*
|
|
811
|
+
* @type {string|string[]}
|
|
812
|
+
* @see GrammarToken
|
|
813
|
+
* @public
|
|
814
|
+
*/
|
|
815
|
+
this.alias = alias;
|
|
816
|
+
// Copy of the full string this token was created from
|
|
817
|
+
this.length = (matchedStr || '').length | 0;
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
/**
|
|
821
|
+
* A token stream is an array of strings and {@link Token Token} objects.
|
|
822
|
+
*
|
|
823
|
+
* Token streams have to fulfill a few properties that are assumed by most functions (mostly internal ones) that process
|
|
824
|
+
* them.
|
|
825
|
+
*
|
|
826
|
+
* 1. No adjacent strings.
|
|
827
|
+
* 2. No empty strings.
|
|
828
|
+
*
|
|
829
|
+
* The only exception here is the token stream that only contains the empty string and nothing else.
|
|
830
|
+
*
|
|
831
|
+
* @typedef {Array<string | Token>} TokenStream
|
|
832
|
+
* @global
|
|
833
|
+
* @public
|
|
834
|
+
*/
|
|
835
|
+
|
|
836
|
+
/**
|
|
837
|
+
* Converts the given token or token stream to an HTML representation.
|
|
838
|
+
*
|
|
839
|
+
* The following hooks will be run:
|
|
840
|
+
* 1. `wrap`: On each {@link Token}.
|
|
841
|
+
*
|
|
842
|
+
* @param {string | Token | TokenStream} o The token or token stream to be converted.
|
|
843
|
+
* @param {string} language The name of current language.
|
|
844
|
+
* @returns {string} The HTML representation of the token or token stream.
|
|
845
|
+
* @memberof Token
|
|
846
|
+
* @static
|
|
847
|
+
*/
|
|
848
|
+
Token.stringify = function stringify(o, language) {
|
|
849
|
+
if (typeof o == 'string') {
|
|
850
|
+
return o;
|
|
851
|
+
}
|
|
852
|
+
if (Array.isArray(o)) {
|
|
853
|
+
var s = '';
|
|
854
|
+
o.forEach(function (e) {
|
|
855
|
+
s += stringify(e, language);
|
|
856
|
+
});
|
|
857
|
+
return s;
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
var env = {
|
|
861
|
+
type: o.type,
|
|
862
|
+
content: stringify(o.content, language),
|
|
863
|
+
tag: 'span',
|
|
864
|
+
classes: ['token', o.type],
|
|
865
|
+
attributes: {},
|
|
866
|
+
language: language
|
|
867
|
+
};
|
|
868
|
+
|
|
869
|
+
var aliases = o.alias;
|
|
870
|
+
if (aliases) {
|
|
871
|
+
if (Array.isArray(aliases)) {
|
|
872
|
+
Array.prototype.push.apply(env.classes, aliases);
|
|
873
|
+
} else {
|
|
874
|
+
env.classes.push(aliases);
|
|
875
|
+
}
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
_.hooks.run('wrap', env);
|
|
879
|
+
|
|
880
|
+
var attributes = '';
|
|
881
|
+
for (var name in env.attributes) {
|
|
882
|
+
attributes += ' ' + name + '="' + (env.attributes[name] || '').replace(/"/g, '"') + '"';
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
return '<' + env.tag + ' class="' + env.classes.join(' ') + '"' + attributes + '>' + env.content + '</' + env.tag + '>';
|
|
886
|
+
};
|
|
887
|
+
|
|
888
|
+
/**
|
|
889
|
+
* @param {RegExp} pattern
|
|
890
|
+
* @param {number} pos
|
|
891
|
+
* @param {string} text
|
|
892
|
+
* @param {boolean} lookbehind
|
|
893
|
+
* @returns {RegExpExecArray | null}
|
|
894
|
+
*/
|
|
895
|
+
function matchPattern(pattern, pos, text, lookbehind) {
|
|
896
|
+
pattern.lastIndex = pos;
|
|
897
|
+
var match = pattern.exec(text);
|
|
898
|
+
if (match && lookbehind && match[1]) {
|
|
899
|
+
// change the match to remove the text matched by the Prism lookbehind group
|
|
900
|
+
var lookbehindLength = match[1].length;
|
|
901
|
+
match.index += lookbehindLength;
|
|
902
|
+
match[0] = match[0].slice(lookbehindLength);
|
|
903
|
+
}
|
|
904
|
+
return match;
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
/**
|
|
908
|
+
* @param {string} text
|
|
909
|
+
* @param {LinkedList<string | Token>} tokenList
|
|
910
|
+
* @param {any} grammar
|
|
911
|
+
* @param {LinkedListNode<string | Token>} startNode
|
|
912
|
+
* @param {number} startPos
|
|
913
|
+
* @param {RematchOptions} [rematch]
|
|
914
|
+
* @returns {void}
|
|
915
|
+
* @private
|
|
916
|
+
*
|
|
917
|
+
* @typedef RematchOptions
|
|
918
|
+
* @property {string} cause
|
|
919
|
+
* @property {number} reach
|
|
920
|
+
*/
|
|
921
|
+
function matchGrammar(text, tokenList, grammar, startNode, startPos, rematch) {
|
|
922
|
+
for (var token in grammar) {
|
|
923
|
+
if (!grammar.hasOwnProperty(token) || !grammar[token]) {
|
|
924
|
+
continue;
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
var patterns = grammar[token];
|
|
928
|
+
patterns = Array.isArray(patterns) ? patterns : [patterns];
|
|
929
|
+
|
|
930
|
+
for (var j = 0; j < patterns.length; ++j) {
|
|
931
|
+
if (rematch && rematch.cause == token + ',' + j) {
|
|
932
|
+
return;
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
var patternObj = patterns[j];
|
|
936
|
+
var inside = patternObj.inside;
|
|
937
|
+
var lookbehind = !!patternObj.lookbehind;
|
|
938
|
+
var greedy = !!patternObj.greedy;
|
|
939
|
+
var alias = patternObj.alias;
|
|
940
|
+
|
|
941
|
+
if (greedy && !patternObj.pattern.global) {
|
|
942
|
+
// Without the global flag, lastIndex won't work
|
|
943
|
+
var flags = patternObj.pattern.toString().match(/[imsuy]*$/)[0];
|
|
944
|
+
patternObj.pattern = RegExp(patternObj.pattern.source, flags + 'g');
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
/** @type {RegExp} */
|
|
948
|
+
var pattern = patternObj.pattern || patternObj;
|
|
949
|
+
|
|
950
|
+
for ( // iterate the token list and keep track of the current token/string position
|
|
951
|
+
var currentNode = startNode.next, pos = startPos;
|
|
952
|
+
currentNode !== tokenList.tail;
|
|
953
|
+
pos += currentNode.value.length, currentNode = currentNode.next
|
|
954
|
+
) {
|
|
955
|
+
|
|
956
|
+
if (rematch && pos >= rematch.reach) {
|
|
957
|
+
break;
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
var str = currentNode.value;
|
|
961
|
+
|
|
962
|
+
if (tokenList.length > text.length) {
|
|
963
|
+
// Something went terribly wrong, ABORT, ABORT!
|
|
964
|
+
return;
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
if (str instanceof Token) {
|
|
968
|
+
continue;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
var removeCount = 1; // this is the to parameter of removeBetween
|
|
972
|
+
var match;
|
|
973
|
+
|
|
974
|
+
if (greedy) {
|
|
975
|
+
match = matchPattern(pattern, pos, text, lookbehind);
|
|
976
|
+
if (!match || match.index >= text.length) {
|
|
977
|
+
break;
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
var from = match.index;
|
|
981
|
+
var to = match.index + match[0].length;
|
|
982
|
+
var p = pos;
|
|
983
|
+
|
|
984
|
+
// find the node that contains the match
|
|
985
|
+
p += currentNode.value.length;
|
|
986
|
+
while (from >= p) {
|
|
987
|
+
currentNode = currentNode.next;
|
|
988
|
+
p += currentNode.value.length;
|
|
989
|
+
}
|
|
990
|
+
// adjust pos (and p)
|
|
991
|
+
p -= currentNode.value.length;
|
|
992
|
+
pos = p;
|
|
993
|
+
|
|
994
|
+
// the current node is a Token, then the match starts inside another Token, which is invalid
|
|
995
|
+
if (currentNode.value instanceof Token) {
|
|
996
|
+
continue;
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
// find the last node which is affected by this match
|
|
1000
|
+
for (
|
|
1001
|
+
var k = currentNode;
|
|
1002
|
+
k !== tokenList.tail && (p < to || typeof k.value === 'string');
|
|
1003
|
+
k = k.next
|
|
1004
|
+
) {
|
|
1005
|
+
removeCount++;
|
|
1006
|
+
p += k.value.length;
|
|
1007
|
+
}
|
|
1008
|
+
removeCount--;
|
|
1009
|
+
|
|
1010
|
+
// replace with the new match
|
|
1011
|
+
str = text.slice(pos, p);
|
|
1012
|
+
match.index -= pos;
|
|
1013
|
+
} else {
|
|
1014
|
+
match = matchPattern(pattern, 0, str, lookbehind);
|
|
1015
|
+
if (!match) {
|
|
1016
|
+
continue;
|
|
1017
|
+
}
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
// eslint-disable-next-line no-redeclare
|
|
1021
|
+
var from = match.index;
|
|
1022
|
+
var matchStr = match[0];
|
|
1023
|
+
var before = str.slice(0, from);
|
|
1024
|
+
var after = str.slice(from + matchStr.length);
|
|
1025
|
+
|
|
1026
|
+
var reach = pos + str.length;
|
|
1027
|
+
if (rematch && reach > rematch.reach) {
|
|
1028
|
+
rematch.reach = reach;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
var removeFrom = currentNode.prev;
|
|
1032
|
+
|
|
1033
|
+
if (before) {
|
|
1034
|
+
removeFrom = addAfter(tokenList, removeFrom, before);
|
|
1035
|
+
pos += before.length;
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
removeRange(tokenList, removeFrom, removeCount);
|
|
1039
|
+
|
|
1040
|
+
var wrapped = new Token(token, inside ? _.tokenize(matchStr, inside) : matchStr, alias, matchStr);
|
|
1041
|
+
currentNode = addAfter(tokenList, removeFrom, wrapped);
|
|
1042
|
+
|
|
1043
|
+
if (after) {
|
|
1044
|
+
addAfter(tokenList, currentNode, after);
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
if (removeCount > 1) {
|
|
1048
|
+
// at least one Token object was removed, so we have to do some rematching
|
|
1049
|
+
// this can only happen if the current pattern is greedy
|
|
1050
|
+
|
|
1051
|
+
/** @type {RematchOptions} */
|
|
1052
|
+
var nestedRematch = {
|
|
1053
|
+
cause: token + ',' + j,
|
|
1054
|
+
reach: reach
|
|
1055
|
+
};
|
|
1056
|
+
matchGrammar(text, tokenList, grammar, currentNode.prev, pos, nestedRematch);
|
|
1057
|
+
|
|
1058
|
+
// the reach might have been extended because of the rematching
|
|
1059
|
+
if (rematch && nestedRematch.reach > rematch.reach) {
|
|
1060
|
+
rematch.reach = nestedRematch.reach;
|
|
1061
|
+
}
|
|
1062
|
+
}
|
|
1063
|
+
}
|
|
1064
|
+
}
|
|
1065
|
+
}
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
/**
|
|
1069
|
+
* @typedef LinkedListNode
|
|
1070
|
+
* @property {T} value
|
|
1071
|
+
* @property {LinkedListNode<T> | null} prev The previous node.
|
|
1072
|
+
* @property {LinkedListNode<T> | null} next The next node.
|
|
1073
|
+
* @template T
|
|
1074
|
+
* @private
|
|
1075
|
+
*/
|
|
1076
|
+
|
|
1077
|
+
/**
|
|
1078
|
+
* @template T
|
|
1079
|
+
* @private
|
|
1080
|
+
*/
|
|
1081
|
+
function LinkedList() {
|
|
1082
|
+
/** @type {LinkedListNode<T>} */
|
|
1083
|
+
var head = { value: null, prev: null, next: null };
|
|
1084
|
+
/** @type {LinkedListNode<T>} */
|
|
1085
|
+
var tail = { value: null, prev: head, next: null };
|
|
1086
|
+
head.next = tail;
|
|
1087
|
+
|
|
1088
|
+
/** @type {LinkedListNode<T>} */
|
|
1089
|
+
this.head = head;
|
|
1090
|
+
/** @type {LinkedListNode<T>} */
|
|
1091
|
+
this.tail = tail;
|
|
1092
|
+
this.length = 0;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
/**
|
|
1096
|
+
* Adds a new node with the given value to the list.
|
|
1097
|
+
*
|
|
1098
|
+
* @param {LinkedList<T>} list
|
|
1099
|
+
* @param {LinkedListNode<T>} node
|
|
1100
|
+
* @param {T} value
|
|
1101
|
+
* @returns {LinkedListNode<T>} The added node.
|
|
1102
|
+
* @template T
|
|
1103
|
+
*/
|
|
1104
|
+
function addAfter(list, node, value) {
|
|
1105
|
+
// assumes that node != list.tail && values.length >= 0
|
|
1106
|
+
var next = node.next;
|
|
1107
|
+
|
|
1108
|
+
var newNode = { value: value, prev: node, next: next };
|
|
1109
|
+
node.next = newNode;
|
|
1110
|
+
next.prev = newNode;
|
|
1111
|
+
list.length++;
|
|
1112
|
+
|
|
1113
|
+
return newNode;
|
|
1114
|
+
}
|
|
1115
|
+
/**
|
|
1116
|
+
* Removes `count` nodes after the given node. The given node will not be removed.
|
|
1117
|
+
*
|
|
1118
|
+
* @param {LinkedList<T>} list
|
|
1119
|
+
* @param {LinkedListNode<T>} node
|
|
1120
|
+
* @param {number} count
|
|
1121
|
+
* @template T
|
|
1122
|
+
*/
|
|
1123
|
+
function removeRange(list, node, count) {
|
|
1124
|
+
var next = node.next;
|
|
1125
|
+
for (var i = 0; i < count && next !== list.tail; i++) {
|
|
1126
|
+
next = next.next;
|
|
1127
|
+
}
|
|
1128
|
+
node.next = next;
|
|
1129
|
+
next.prev = node;
|
|
1130
|
+
list.length -= i;
|
|
1131
|
+
}
|
|
1132
|
+
/**
|
|
1133
|
+
* @param {LinkedList<T>} list
|
|
1134
|
+
* @returns {T[]}
|
|
1135
|
+
* @template T
|
|
1136
|
+
*/
|
|
1137
|
+
function toArray(list) {
|
|
1138
|
+
var array = [];
|
|
1139
|
+
var node = list.head.next;
|
|
1140
|
+
while (node !== list.tail) {
|
|
1141
|
+
array.push(node.value);
|
|
1142
|
+
node = node.next;
|
|
1143
|
+
}
|
|
1144
|
+
return array;
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
|
|
1148
|
+
if (!_self.document) {
|
|
1149
|
+
if (!_self.addEventListener) {
|
|
1150
|
+
// in Node.js
|
|
1151
|
+
return _;
|
|
1152
|
+
}
|
|
1153
|
+
|
|
1154
|
+
if (!_.disableWorkerMessageHandler) {
|
|
1155
|
+
// In worker
|
|
1156
|
+
_self.addEventListener('message', function (evt) {
|
|
1157
|
+
var message = JSON.parse(evt.data);
|
|
1158
|
+
var lang = message.language;
|
|
1159
|
+
var code = message.code;
|
|
1160
|
+
var immediateClose = message.immediateClose;
|
|
1161
|
+
|
|
1162
|
+
_self.postMessage(_.highlight(code, _.languages[lang], lang));
|
|
1163
|
+
if (immediateClose) {
|
|
1164
|
+
_self.close();
|
|
1165
|
+
}
|
|
1166
|
+
}, false);
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
return _;
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
// Get current script and highlight
|
|
1173
|
+
var script = _.util.currentScript();
|
|
1174
|
+
|
|
1175
|
+
if (script) {
|
|
1176
|
+
_.filename = script.src;
|
|
1177
|
+
|
|
1178
|
+
if (script.hasAttribute('data-manual')) {
|
|
1179
|
+
_.manual = true;
|
|
1180
|
+
}
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
function highlightAutomaticallyCallback() {
|
|
1184
|
+
if (!_.manual) {
|
|
1185
|
+
_.highlightAll();
|
|
1186
|
+
}
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
if (!_.manual) {
|
|
1190
|
+
// If the document state is "loading", then we'll use DOMContentLoaded.
|
|
1191
|
+
// If the document state is "interactive" and the prism.js script is deferred, then we'll also use the
|
|
1192
|
+
// DOMContentLoaded event because there might be some plugins or languages which have also been deferred and they
|
|
1193
|
+
// might take longer one animation frame to execute which can create a race condition where only some plugins have
|
|
1194
|
+
// been loaded when Prism.highlightAll() is executed, depending on how fast resources are loaded.
|
|
1195
|
+
// See https://github.com/PrismJS/prism/issues/2102
|
|
1196
|
+
var readyState = document.readyState;
|
|
1197
|
+
if (readyState === 'loading' || readyState === 'interactive' && script && script.defer) {
|
|
1198
|
+
document.addEventListener('DOMContentLoaded', highlightAutomaticallyCallback);
|
|
1199
|
+
} else {
|
|
1200
|
+
if (window.requestAnimationFrame) {
|
|
1201
|
+
window.requestAnimationFrame(highlightAutomaticallyCallback);
|
|
1202
|
+
} else {
|
|
1203
|
+
window.setTimeout(highlightAutomaticallyCallback, 16);
|
|
1204
|
+
}
|
|
1205
|
+
}
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
return _;
|
|
1209
|
+
|
|
1210
|
+
}(_self));
|
|
1211
|
+
|
|
1212
|
+
if (typeof module !== 'undefined' && module.exports) {
|
|
1213
|
+
module.exports = Prism;
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
// hack for components to work correctly in node.js
|
|
1217
|
+
if (typeof global !== 'undefined') {
|
|
1218
|
+
global.Prism = Prism;
|
|
1219
|
+
}
|
|
1220
|
+
|
|
1221
|
+
// some additional documentation/types
|
|
1222
|
+
|
|
1223
|
+
/**
|
|
1224
|
+
* The expansion of a simple `RegExp` literal to support additional properties.
|
|
1225
|
+
*
|
|
1226
|
+
* @typedef GrammarToken
|
|
1227
|
+
* @property {RegExp} pattern The regular expression of the token.
|
|
1228
|
+
* @property {boolean} [lookbehind=false] If `true`, then the first capturing group of `pattern` will (effectively)
|
|
1229
|
+
* behave as a lookbehind group meaning that the captured text will not be part of the matched text of the new token.
|
|
1230
|
+
* @property {boolean} [greedy=false] Whether the token is greedy.
|
|
1231
|
+
* @property {string|string[]} [alias] An optional alias or list of aliases.
|
|
1232
|
+
* @property {Grammar} [inside] The nested grammar of this token.
|
|
1233
|
+
*
|
|
1234
|
+
* The `inside` grammar will be used to tokenize the text value of each token of this kind.
|
|
1235
|
+
*
|
|
1236
|
+
* This can be used to make nested and even recursive language definitions.
|
|
1237
|
+
*
|
|
1238
|
+
* Note: This can cause infinite recursion. Be careful when you embed different languages or even the same language into
|
|
1239
|
+
* each another.
|
|
1240
|
+
* @global
|
|
1241
|
+
* @public
|
|
1242
|
+
*/
|
|
1243
|
+
|
|
1244
|
+
/**
|
|
1245
|
+
* @typedef Grammar
|
|
1246
|
+
* @type {Object<string, RegExp | GrammarToken | Array<RegExp | GrammarToken>>}
|
|
1247
|
+
* @property {Grammar} [rest] An optional grammar object that will be appended to this grammar.
|
|
1248
|
+
* @global
|
|
1249
|
+
* @public
|
|
1250
|
+
*/
|
|
1251
|
+
|
|
1252
|
+
/**
|
|
1253
|
+
* A function which will invoked after an element was successfully highlighted.
|
|
1254
|
+
*
|
|
1255
|
+
* @callback HighlightCallback
|
|
1256
|
+
* @param {Element} element The element successfully highlighted.
|
|
1257
|
+
* @returns {void}
|
|
1258
|
+
* @global
|
|
1259
|
+
* @public
|
|
1260
|
+
*/
|
|
1261
|
+
|
|
1262
|
+
/**
|
|
1263
|
+
* @callback HookCallback
|
|
1264
|
+
* @param {Object<string, any>} env The environment variables of the hook.
|
|
1265
|
+
* @returns {void}
|
|
1266
|
+
* @global
|
|
1267
|
+
* @public
|
|
1268
|
+
*/
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
/* **********************************************
|
|
1272
|
+
Begin prism-markup.js
|
|
1273
|
+
********************************************** */
|
|
1274
|
+
|
|
1275
|
+
Prism.languages.markup = {
|
|
1276
|
+
'comment': {
|
|
1277
|
+
pattern: /<!--(?:(?!<!--)[\s\S])*?-->/,
|
|
1278
|
+
greedy: true
|
|
1279
|
+
},
|
|
1280
|
+
'prolog': {
|
|
1281
|
+
pattern: /<\?[\s\S]+?\?>/,
|
|
1282
|
+
greedy: true
|
|
1283
|
+
},
|
|
1284
|
+
'doctype': {
|
|
1285
|
+
// https://www.w3.org/TR/xml/#NT-doctypedecl
|
|
1286
|
+
pattern: /<!DOCTYPE(?:[^>"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:[^<"'\]]|"[^"]*"|'[^']*'|<(?!!--)|<!--(?:[^-]|-(?!->))*-->)*\]\s*)?>/i,
|
|
1287
|
+
greedy: true,
|
|
1288
|
+
inside: {
|
|
1289
|
+
'internal-subset': {
|
|
1290
|
+
pattern: /(^[^\[]*\[)[\s\S]+(?=\]>$)/,
|
|
1291
|
+
lookbehind: true,
|
|
1292
|
+
greedy: true,
|
|
1293
|
+
inside: null // see below
|
|
1294
|
+
},
|
|
1295
|
+
'string': {
|
|
1296
|
+
pattern: /"[^"]*"|'[^']*'/,
|
|
1297
|
+
greedy: true
|
|
1298
|
+
},
|
|
1299
|
+
'punctuation': /^<!|>$|[[\]]/,
|
|
1300
|
+
'doctype-tag': /^DOCTYPE/i,
|
|
1301
|
+
'name': /[^\s<>'"]+/
|
|
1302
|
+
}
|
|
1303
|
+
},
|
|
1304
|
+
'cdata': {
|
|
1305
|
+
pattern: /<!\[CDATA\[[\s\S]*?\]\]>/i,
|
|
1306
|
+
greedy: true
|
|
1307
|
+
},
|
|
1308
|
+
'tag': {
|
|
1309
|
+
pattern: /<\/?(?!\d)[^\s>\/=$<%]+(?:\s(?:\s*[^\s>\/=]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))|(?=[\s/>])))+)?\s*\/?>/,
|
|
1310
|
+
greedy: true,
|
|
1311
|
+
inside: {
|
|
1312
|
+
'tag': {
|
|
1313
|
+
pattern: /^<\/?[^\s>\/]+/,
|
|
1314
|
+
inside: {
|
|
1315
|
+
'punctuation': /^<\/?/,
|
|
1316
|
+
'namespace': /^[^\s>\/:]+:/
|
|
1317
|
+
}
|
|
1318
|
+
},
|
|
1319
|
+
'special-attr': [],
|
|
1320
|
+
'attr-value': {
|
|
1321
|
+
pattern: /=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+)/,
|
|
1322
|
+
inside: {
|
|
1323
|
+
'punctuation': [
|
|
1324
|
+
{
|
|
1325
|
+
pattern: /^=/,
|
|
1326
|
+
alias: 'attr-equals'
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
pattern: /^(\s*)["']|["']$/,
|
|
1330
|
+
lookbehind: true
|
|
1331
|
+
}
|
|
1332
|
+
]
|
|
1333
|
+
}
|
|
1334
|
+
},
|
|
1335
|
+
'punctuation': /\/?>/,
|
|
1336
|
+
'attr-name': {
|
|
1337
|
+
pattern: /[^\s>\/]+/,
|
|
1338
|
+
inside: {
|
|
1339
|
+
'namespace': /^[^\s>\/:]+:/
|
|
1340
|
+
}
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
}
|
|
1344
|
+
},
|
|
1345
|
+
'entity': [
|
|
1346
|
+
{
|
|
1347
|
+
pattern: /&[\da-z]{1,8};/i,
|
|
1348
|
+
alias: 'named-entity'
|
|
1349
|
+
},
|
|
1350
|
+
/&#x?[\da-f]{1,8};/i
|
|
1351
|
+
]
|
|
1352
|
+
};
|
|
1353
|
+
|
|
1354
|
+
Prism.languages.markup['tag'].inside['attr-value'].inside['entity'] =
|
|
1355
|
+
Prism.languages.markup['entity'];
|
|
1356
|
+
Prism.languages.markup['doctype'].inside['internal-subset'].inside = Prism.languages.markup;
|
|
1357
|
+
|
|
1358
|
+
// Plugin to make entity title show the real entity, idea by Roman Komarov
|
|
1359
|
+
Prism.hooks.add('wrap', function (env) {
|
|
1360
|
+
|
|
1361
|
+
if (env.type === 'entity') {
|
|
1362
|
+
env.attributes['title'] = env.content.replace(/&/, '&');
|
|
1363
|
+
}
|
|
1364
|
+
});
|
|
1365
|
+
|
|
1366
|
+
Object.defineProperty(Prism.languages.markup.tag, 'addInlined', {
|
|
1367
|
+
/**
|
|
1368
|
+
* Adds an inlined language to markup.
|
|
1369
|
+
*
|
|
1370
|
+
* An example of an inlined language is CSS with `<style>` tags.
|
|
1371
|
+
*
|
|
1372
|
+
* @param {string} tagName The name of the tag that contains the inlined language. This name will be treated as
|
|
1373
|
+
* case insensitive.
|
|
1374
|
+
* @param {string} lang The language key.
|
|
1375
|
+
* @example
|
|
1376
|
+
* addInlined('style', 'css');
|
|
1377
|
+
*/
|
|
1378
|
+
value: function addInlined(tagName, lang) {
|
|
1379
|
+
var includedCdataInside = {};
|
|
1380
|
+
includedCdataInside['language-' + lang] = {
|
|
1381
|
+
pattern: /(^<!\[CDATA\[)[\s\S]+?(?=\]\]>$)/i,
|
|
1382
|
+
lookbehind: true,
|
|
1383
|
+
inside: Prism.languages[lang]
|
|
1384
|
+
};
|
|
1385
|
+
includedCdataInside['cdata'] = /^<!\[CDATA\[|\]\]>$/i;
|
|
1386
|
+
|
|
1387
|
+
var inside = {
|
|
1388
|
+
'included-cdata': {
|
|
1389
|
+
pattern: /<!\[CDATA\[[\s\S]*?\]\]>/i,
|
|
1390
|
+
inside: includedCdataInside
|
|
1391
|
+
}
|
|
1392
|
+
};
|
|
1393
|
+
inside['language-' + lang] = {
|
|
1394
|
+
pattern: /[\s\S]+/,
|
|
1395
|
+
inside: Prism.languages[lang]
|
|
1396
|
+
};
|
|
1397
|
+
|
|
1398
|
+
var def = {};
|
|
1399
|
+
def[tagName] = {
|
|
1400
|
+
pattern: RegExp(/(<__[^>]*>)(?:<!\[CDATA\[(?:[^\]]|\](?!\]>))*\]\]>|(?!<!\[CDATA\[)[\s\S])*?(?=<\/__>)/.source.replace(/__/g, function () { return tagName; }), 'i'),
|
|
1401
|
+
lookbehind: true,
|
|
1402
|
+
greedy: true,
|
|
1403
|
+
inside: inside
|
|
1404
|
+
};
|
|
1405
|
+
|
|
1406
|
+
Prism.languages.insertBefore('markup', 'cdata', def);
|
|
1407
|
+
}
|
|
1408
|
+
});
|
|
1409
|
+
Object.defineProperty(Prism.languages.markup.tag, 'addAttribute', {
|
|
1410
|
+
/**
|
|
1411
|
+
* Adds an pattern to highlight languages embedded in HTML attributes.
|
|
1412
|
+
*
|
|
1413
|
+
* An example of an inlined language is CSS with `style` attributes.
|
|
1414
|
+
*
|
|
1415
|
+
* @param {string} attrName The name of the tag that contains the inlined language. This name will be treated as
|
|
1416
|
+
* case insensitive.
|
|
1417
|
+
* @param {string} lang The language key.
|
|
1418
|
+
* @example
|
|
1419
|
+
* addAttribute('style', 'css');
|
|
1420
|
+
*/
|
|
1421
|
+
value: function (attrName, lang) {
|
|
1422
|
+
Prism.languages.markup.tag.inside['special-attr'].push({
|
|
1423
|
+
pattern: RegExp(
|
|
1424
|
+
/(^|["'\s])/.source + '(?:' + attrName + ')' + /\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))/.source,
|
|
1425
|
+
'i'
|
|
1426
|
+
),
|
|
1427
|
+
lookbehind: true,
|
|
1428
|
+
inside: {
|
|
1429
|
+
'attr-name': /^[^\s=]+/,
|
|
1430
|
+
'attr-value': {
|
|
1431
|
+
pattern: /=[\s\S]+/,
|
|
1432
|
+
inside: {
|
|
1433
|
+
'value': {
|
|
1434
|
+
pattern: /(^=\s*(["']|(?!["'])))\S[\s\S]*(?=\2$)/,
|
|
1435
|
+
lookbehind: true,
|
|
1436
|
+
alias: [lang, 'language-' + lang],
|
|
1437
|
+
inside: Prism.languages[lang]
|
|
1438
|
+
},
|
|
1439
|
+
'punctuation': [
|
|
1440
|
+
{
|
|
1441
|
+
pattern: /^=/,
|
|
1442
|
+
alias: 'attr-equals'
|
|
1443
|
+
},
|
|
1444
|
+
/"|'/
|
|
1445
|
+
]
|
|
1446
|
+
}
|
|
1447
|
+
}
|
|
1448
|
+
}
|
|
1449
|
+
});
|
|
1450
|
+
}
|
|
1451
|
+
});
|
|
1452
|
+
|
|
1453
|
+
Prism.languages.html = Prism.languages.markup;
|
|
1454
|
+
Prism.languages.mathml = Prism.languages.markup;
|
|
1455
|
+
Prism.languages.svg = Prism.languages.markup;
|
|
1456
|
+
|
|
1457
|
+
Prism.languages.xml = Prism.languages.extend('markup', {});
|
|
1458
|
+
Prism.languages.ssml = Prism.languages.xml;
|
|
1459
|
+
Prism.languages.atom = Prism.languages.xml;
|
|
1460
|
+
Prism.languages.rss = Prism.languages.xml;
|
|
1461
|
+
|
|
1462
|
+
|
|
1463
|
+
/* **********************************************
|
|
1464
|
+
Begin prism-css.js
|
|
1465
|
+
********************************************** */
|
|
1466
|
+
|
|
1467
|
+
(function (Prism) {
|
|
1468
|
+
|
|
1469
|
+
var string = /(?:"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n])*')/;
|
|
1470
|
+
|
|
1471
|
+
Prism.languages.css = {
|
|
1472
|
+
'comment': /\/\*[\s\S]*?\*\//,
|
|
1473
|
+
'atrule': {
|
|
1474
|
+
pattern: RegExp('@[\\w-](?:' + /[^;{\s"']|\s+(?!\s)/.source + '|' + string.source + ')*?' + /(?:;|(?=\s*\{))/.source),
|
|
1475
|
+
inside: {
|
|
1476
|
+
'rule': /^@[\w-]+/,
|
|
1477
|
+
'selector-function-argument': {
|
|
1478
|
+
pattern: /(\bselector\s*\(\s*(?![\s)]))(?:[^()\s]|\s+(?![\s)])|\((?:[^()]|\([^()]*\))*\))+(?=\s*\))/,
|
|
1479
|
+
lookbehind: true,
|
|
1480
|
+
alias: 'selector'
|
|
1481
|
+
},
|
|
1482
|
+
'keyword': {
|
|
1483
|
+
pattern: /(^|[^\w-])(?:and|not|only|or)(?![\w-])/,
|
|
1484
|
+
lookbehind: true
|
|
1485
|
+
}
|
|
1486
|
+
// See rest below
|
|
1487
|
+
}
|
|
1488
|
+
},
|
|
1489
|
+
'url': {
|
|
1490
|
+
// https://drafts.csswg.org/css-values-3/#urls
|
|
1491
|
+
pattern: RegExp('\\burl\\((?:' + string.source + '|' + /(?:[^\\\r\n()"']|\\[\s\S])*/.source + ')\\)', 'i'),
|
|
1492
|
+
greedy: true,
|
|
1493
|
+
inside: {
|
|
1494
|
+
'function': /^url/i,
|
|
1495
|
+
'punctuation': /^\(|\)$/,
|
|
1496
|
+
'string': {
|
|
1497
|
+
pattern: RegExp('^' + string.source + '$'),
|
|
1498
|
+
alias: 'url'
|
|
1499
|
+
}
|
|
1500
|
+
}
|
|
1501
|
+
},
|
|
1502
|
+
'selector': {
|
|
1503
|
+
pattern: RegExp('(^|[{}\\s])[^{}\\s](?:[^{};"\'\\s]|\\s+(?![\\s{])|' + string.source + ')*(?=\\s*\\{)'),
|
|
1504
|
+
lookbehind: true
|
|
1505
|
+
},
|
|
1506
|
+
'string': {
|
|
1507
|
+
pattern: string,
|
|
1508
|
+
greedy: true
|
|
1509
|
+
},
|
|
1510
|
+
'property': {
|
|
1511
|
+
pattern: /(^|[^-\w\xA0-\uFFFF])(?!\s)[-_a-z\xA0-\uFFFF](?:(?!\s)[-\w\xA0-\uFFFF])*(?=\s*:)/i,
|
|
1512
|
+
lookbehind: true
|
|
1513
|
+
},
|
|
1514
|
+
'important': /!important\b/i,
|
|
1515
|
+
'function': {
|
|
1516
|
+
pattern: /(^|[^-a-z0-9])[-a-z0-9]+(?=\()/i,
|
|
1517
|
+
lookbehind: true
|
|
1518
|
+
},
|
|
1519
|
+
'punctuation': /[(){};:,]/
|
|
1520
|
+
};
|
|
1521
|
+
|
|
1522
|
+
Prism.languages.css['atrule'].inside.rest = Prism.languages.css;
|
|
1523
|
+
|
|
1524
|
+
var markup = Prism.languages.markup;
|
|
1525
|
+
if (markup) {
|
|
1526
|
+
markup.tag.addInlined('style', 'css');
|
|
1527
|
+
markup.tag.addAttribute('style', 'css');
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1530
|
+
}(Prism));
|
|
1531
|
+
|
|
1532
|
+
|
|
1533
|
+
/* **********************************************
|
|
1534
|
+
Begin prism-clike.js
|
|
1535
|
+
********************************************** */
|
|
1536
|
+
|
|
1537
|
+
Prism.languages.clike = {
|
|
1538
|
+
'comment': [
|
|
1539
|
+
{
|
|
1540
|
+
pattern: /(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,
|
|
1541
|
+
lookbehind: true,
|
|
1542
|
+
greedy: true
|
|
1543
|
+
},
|
|
1544
|
+
{
|
|
1545
|
+
pattern: /(^|[^\\:])\/\/.*/,
|
|
1546
|
+
lookbehind: true,
|
|
1547
|
+
greedy: true
|
|
1548
|
+
}
|
|
1549
|
+
],
|
|
1550
|
+
'string': {
|
|
1551
|
+
pattern: /(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,
|
|
1552
|
+
greedy: true
|
|
1553
|
+
},
|
|
1554
|
+
'class-name': {
|
|
1555
|
+
pattern: /(\b(?:class|extends|implements|instanceof|interface|new|trait)\s+|\bcatch\s+\()[\w.\\]+/i,
|
|
1556
|
+
lookbehind: true,
|
|
1557
|
+
inside: {
|
|
1558
|
+
'punctuation': /[.\\]/
|
|
1559
|
+
}
|
|
1560
|
+
},
|
|
1561
|
+
'keyword': /\b(?:break|catch|continue|do|else|finally|for|function|if|in|instanceof|new|null|return|throw|try|while)\b/,
|
|
1562
|
+
'boolean': /\b(?:false|true)\b/,
|
|
1563
|
+
'function': /\b\w+(?=\()/,
|
|
1564
|
+
'number': /\b0x[\da-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?/i,
|
|
1565
|
+
'operator': /[<>]=?|[!=]=?=?|--?|\+\+?|&&?|\|\|?|[?*/~^%]/,
|
|
1566
|
+
'punctuation': /[{}[\];(),.:]/
|
|
1567
|
+
};
|
|
1568
|
+
|
|
1569
|
+
|
|
1570
|
+
/* **********************************************
|
|
1571
|
+
Begin prism-javascript.js
|
|
1572
|
+
********************************************** */
|
|
1573
|
+
|
|
1574
|
+
Prism.languages.javascript = Prism.languages.extend('clike', {
|
|
1575
|
+
'class-name': [
|
|
1576
|
+
Prism.languages.clike['class-name'],
|
|
1577
|
+
{
|
|
1578
|
+
pattern: /(^|[^$\w\xA0-\uFFFF])(?!\s)[_$A-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\.(?:constructor|prototype))/,
|
|
1579
|
+
lookbehind: true
|
|
1580
|
+
}
|
|
1581
|
+
],
|
|
1582
|
+
'keyword': [
|
|
1583
|
+
{
|
|
1584
|
+
pattern: /((?:^|\})\s*)catch\b/,
|
|
1585
|
+
lookbehind: true
|
|
1586
|
+
},
|
|
1587
|
+
{
|
|
1588
|
+
pattern: /(^|[^.]|\.\.\.\s*)\b(?:as|assert(?=\s*\{)|async(?=\s*(?:function\b|\(|[$\w\xA0-\uFFFF]|$))|await|break|case|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally(?=\s*(?:\{|$))|for|from(?=\s*(?:['"]|$))|function|(?:get|set)(?=\s*(?:[#\[$\w\xA0-\uFFFF]|$))|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)\b/,
|
|
1589
|
+
lookbehind: true
|
|
1590
|
+
},
|
|
1591
|
+
],
|
|
1592
|
+
// Allow for all non-ASCII characters (See http://stackoverflow.com/a/2008444)
|
|
1593
|
+
'function': /#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*(?:\.\s*(?:apply|bind|call)\s*)?\()/,
|
|
1594
|
+
'number': {
|
|
1595
|
+
pattern: RegExp(
|
|
1596
|
+
/(^|[^\w$])/.source +
|
|
1597
|
+
'(?:' +
|
|
1598
|
+
(
|
|
1599
|
+
// constant
|
|
1600
|
+
/NaN|Infinity/.source +
|
|
1601
|
+
'|' +
|
|
1602
|
+
// binary integer
|
|
1603
|
+
/0[bB][01]+(?:_[01]+)*n?/.source +
|
|
1604
|
+
'|' +
|
|
1605
|
+
// octal integer
|
|
1606
|
+
/0[oO][0-7]+(?:_[0-7]+)*n?/.source +
|
|
1607
|
+
'|' +
|
|
1608
|
+
// hexadecimal integer
|
|
1609
|
+
/0[xX][\dA-Fa-f]+(?:_[\dA-Fa-f]+)*n?/.source +
|
|
1610
|
+
'|' +
|
|
1611
|
+
// decimal bigint
|
|
1612
|
+
/\d+(?:_\d+)*n/.source +
|
|
1613
|
+
'|' +
|
|
1614
|
+
// decimal number (integer or float) but no bigint
|
|
1615
|
+
/(?:\d+(?:_\d+)*(?:\.(?:\d+(?:_\d+)*)?)?|\.\d+(?:_\d+)*)(?:[Ee][+-]?\d+(?:_\d+)*)?/.source
|
|
1616
|
+
) +
|
|
1617
|
+
')' +
|
|
1618
|
+
/(?![\w$])/.source
|
|
1619
|
+
),
|
|
1620
|
+
lookbehind: true
|
|
1621
|
+
},
|
|
1622
|
+
'operator': /--|\+\+|\*\*=?|=>|&&=?|\|\|=?|[!=]==|<<=?|>>>?=?|[-+*/%&|^!=<>]=?|\.{3}|\?\?=?|\?\.?|[~:]/
|
|
1623
|
+
});
|
|
1624
|
+
|
|
1625
|
+
Prism.languages.javascript['class-name'][0].pattern = /(\b(?:class|extends|implements|instanceof|interface|new)\s+)[\w.\\]+/;
|
|
1626
|
+
|
|
1627
|
+
Prism.languages.insertBefore('javascript', 'keyword', {
|
|
1628
|
+
'regex': {
|
|
1629
|
+
pattern: RegExp(
|
|
1630
|
+
// lookbehind
|
|
1631
|
+
// eslint-disable-next-line regexp/no-dupe-characters-character-class
|
|
1632
|
+
/((?:^|[^$\w\xA0-\uFFFF."'\])\s]|\b(?:return|yield))\s*)/.source +
|
|
1633
|
+
// Regex pattern:
|
|
1634
|
+
// There are 2 regex patterns here. The RegExp set notation proposal added support for nested character
|
|
1635
|
+
// classes if the `v` flag is present. Unfortunately, nested CCs are both context-free and incompatible
|
|
1636
|
+
// with the only syntax, so we have to define 2 different regex patterns.
|
|
1637
|
+
/\//.source +
|
|
1638
|
+
'(?:' +
|
|
1639
|
+
/(?:\[(?:[^\]\\\r\n]|\\.)*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}/.source +
|
|
1640
|
+
'|' +
|
|
1641
|
+
// `v` flag syntax. This supports 3 levels of nested character classes.
|
|
1642
|
+
/(?:\[(?:[^[\]\\\r\n]|\\.|\[(?:[^[\]\\\r\n]|\\.|\[(?:[^[\]\\\r\n]|\\.)*\])*\])*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}v[dgimyus]{0,7}/.source +
|
|
1643
|
+
')' +
|
|
1644
|
+
// lookahead
|
|
1645
|
+
/(?=(?:\s|\/\*(?:[^*]|\*(?!\/))*\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/.source
|
|
1646
|
+
),
|
|
1647
|
+
lookbehind: true,
|
|
1648
|
+
greedy: true,
|
|
1649
|
+
inside: {
|
|
1650
|
+
'regex-source': {
|
|
1651
|
+
pattern: /^(\/)[\s\S]+(?=\/[a-z]*$)/,
|
|
1652
|
+
lookbehind: true,
|
|
1653
|
+
alias: 'language-regex',
|
|
1654
|
+
inside: Prism.languages.regex
|
|
1655
|
+
},
|
|
1656
|
+
'regex-delimiter': /^\/|\/$/,
|
|
1657
|
+
'regex-flags': /^[a-z]+$/,
|
|
1658
|
+
}
|
|
1659
|
+
},
|
|
1660
|
+
// This must be declared before keyword because we use "function" inside the look-forward
|
|
1661
|
+
'function-variable': {
|
|
1662
|
+
pattern: /#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*[=:]\s*(?:async\s*)?(?:\bfunction\b|(?:\((?:[^()]|\([^()]*\))*\)|(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)\s*=>))/,
|
|
1663
|
+
alias: 'function'
|
|
1664
|
+
},
|
|
1665
|
+
'parameter': [
|
|
1666
|
+
{
|
|
1667
|
+
pattern: /(function(?:\s+(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)?\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\))/,
|
|
1668
|
+
lookbehind: true,
|
|
1669
|
+
inside: Prism.languages.javascript
|
|
1670
|
+
},
|
|
1671
|
+
{
|
|
1672
|
+
pattern: /(^|[^$\w\xA0-\uFFFF])(?!\s)[_$a-z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*=>)/i,
|
|
1673
|
+
lookbehind: true,
|
|
1674
|
+
inside: Prism.languages.javascript
|
|
1675
|
+
},
|
|
1676
|
+
{
|
|
1677
|
+
pattern: /(\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*=>)/,
|
|
1678
|
+
lookbehind: true,
|
|
1679
|
+
inside: Prism.languages.javascript
|
|
1680
|
+
},
|
|
1681
|
+
{
|
|
1682
|
+
pattern: /((?:\b|\s|^)(?!(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)(?![$\w\xA0-\uFFFF]))(?:(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*\s*)\(\s*|\]\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*\{)/,
|
|
1683
|
+
lookbehind: true,
|
|
1684
|
+
inside: Prism.languages.javascript
|
|
1685
|
+
}
|
|
1686
|
+
],
|
|
1687
|
+
'constant': /\b[A-Z](?:[A-Z_]|\dx?)*\b/
|
|
1688
|
+
});
|
|
1689
|
+
|
|
1690
|
+
Prism.languages.insertBefore('javascript', 'string', {
|
|
1691
|
+
'hashbang': {
|
|
1692
|
+
pattern: /^#!.*/,
|
|
1693
|
+
greedy: true,
|
|
1694
|
+
alias: 'comment'
|
|
1695
|
+
},
|
|
1696
|
+
'template-string': {
|
|
1697
|
+
pattern: /`(?:\\[\s\S]|\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}|(?!\$\{)[^\\`])*`/,
|
|
1698
|
+
greedy: true,
|
|
1699
|
+
inside: {
|
|
1700
|
+
'template-punctuation': {
|
|
1701
|
+
pattern: /^`|`$/,
|
|
1702
|
+
alias: 'string'
|
|
1703
|
+
},
|
|
1704
|
+
'interpolation': {
|
|
1705
|
+
pattern: /((?:^|[^\\])(?:\\{2})*)\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}/,
|
|
1706
|
+
lookbehind: true,
|
|
1707
|
+
inside: {
|
|
1708
|
+
'interpolation-punctuation': {
|
|
1709
|
+
pattern: /^\$\{|\}$/,
|
|
1710
|
+
alias: 'punctuation'
|
|
1711
|
+
},
|
|
1712
|
+
rest: Prism.languages.javascript
|
|
1713
|
+
}
|
|
1714
|
+
},
|
|
1715
|
+
'string': /[\s\S]+/
|
|
1716
|
+
}
|
|
1717
|
+
},
|
|
1718
|
+
'string-property': {
|
|
1719
|
+
pattern: /((?:^|[,{])[ \t]*)(["'])(?:\\(?:\r\n|[\s\S])|(?!\2)[^\\\r\n])*\2(?=\s*:)/m,
|
|
1720
|
+
lookbehind: true,
|
|
1721
|
+
greedy: true,
|
|
1722
|
+
alias: 'property'
|
|
1723
|
+
}
|
|
1724
|
+
});
|
|
1725
|
+
|
|
1726
|
+
Prism.languages.insertBefore('javascript', 'operator', {
|
|
1727
|
+
'literal-property': {
|
|
1728
|
+
pattern: /((?:^|[,{])[ \t]*)(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*:)/m,
|
|
1729
|
+
lookbehind: true,
|
|
1730
|
+
alias: 'property'
|
|
1731
|
+
},
|
|
1732
|
+
});
|
|
1733
|
+
|
|
1734
|
+
if (Prism.languages.markup) {
|
|
1735
|
+
Prism.languages.markup.tag.addInlined('script', 'javascript');
|
|
1736
|
+
|
|
1737
|
+
// add attribute support for all DOM events.
|
|
1738
|
+
// https://developer.mozilla.org/en-US/docs/Web/Events#Standard_events
|
|
1739
|
+
Prism.languages.markup.tag.addAttribute(
|
|
1740
|
+
/on(?:abort|blur|change|click|composition(?:end|start|update)|dblclick|error|focus(?:in|out)?|key(?:down|up)|load|mouse(?:down|enter|leave|move|out|over|up)|reset|resize|scroll|select|slotchange|submit|unload|wheel)/.source,
|
|
1741
|
+
'javascript'
|
|
1742
|
+
);
|
|
1743
|
+
}
|
|
1744
|
+
|
|
1745
|
+
Prism.languages.js = Prism.languages.javascript;
|
|
1746
|
+
|
|
1747
|
+
|
|
1748
|
+
/* **********************************************
|
|
1749
|
+
Begin prism-file-highlight.js
|
|
1750
|
+
********************************************** */
|
|
1751
|
+
|
|
1752
|
+
(function () {
|
|
1753
|
+
|
|
1754
|
+
if (typeof Prism === 'undefined' || typeof document === 'undefined') {
|
|
1755
|
+
return;
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
// https://developer.mozilla.org/en-US/docs/Web/API/Element/matches#Polyfill
|
|
1759
|
+
if (!Element.prototype.matches) {
|
|
1760
|
+
Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector;
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
var LOADING_MESSAGE = 'Loading…';
|
|
1764
|
+
var FAILURE_MESSAGE = function (status, message) {
|
|
1765
|
+
return '✖ Error ' + status + ' while fetching file: ' + message;
|
|
1766
|
+
};
|
|
1767
|
+
var FAILURE_EMPTY_MESSAGE = '✖ Error: File does not exist or is empty';
|
|
1768
|
+
|
|
1769
|
+
var EXTENSIONS = {
|
|
1770
|
+
'js': 'javascript',
|
|
1771
|
+
'py': 'python',
|
|
1772
|
+
'rb': 'ruby',
|
|
1773
|
+
'ps1': 'powershell',
|
|
1774
|
+
'psm1': 'powershell',
|
|
1775
|
+
'sh': 'bash',
|
|
1776
|
+
'bat': 'batch',
|
|
1777
|
+
'h': 'c',
|
|
1778
|
+
'tex': 'latex'
|
|
1779
|
+
};
|
|
1780
|
+
|
|
1781
|
+
var STATUS_ATTR = 'data-src-status';
|
|
1782
|
+
var STATUS_LOADING = 'loading';
|
|
1783
|
+
var STATUS_LOADED = 'loaded';
|
|
1784
|
+
var STATUS_FAILED = 'failed';
|
|
1785
|
+
|
|
1786
|
+
var SELECTOR = 'pre[data-src]:not([' + STATUS_ATTR + '="' + STATUS_LOADED + '"])'
|
|
1787
|
+
+ ':not([' + STATUS_ATTR + '="' + STATUS_LOADING + '"])';
|
|
1788
|
+
|
|
1789
|
+
/**
|
|
1790
|
+
* Loads the given file.
|
|
1791
|
+
*
|
|
1792
|
+
* @param {string} src The URL or path of the source file to load.
|
|
1793
|
+
* @param {(result: string) => void} success
|
|
1794
|
+
* @param {(reason: string) => void} error
|
|
1795
|
+
*/
|
|
1796
|
+
function loadFile(src, success, error) {
|
|
1797
|
+
var xhr = new XMLHttpRequest();
|
|
1798
|
+
xhr.open('GET', src, true);
|
|
1799
|
+
xhr.onreadystatechange = function () {
|
|
1800
|
+
if (xhr.readyState == 4) {
|
|
1801
|
+
if (xhr.status < 400 && xhr.responseText) {
|
|
1802
|
+
success(xhr.responseText);
|
|
1803
|
+
} else {
|
|
1804
|
+
if (xhr.status >= 400) {
|
|
1805
|
+
error(FAILURE_MESSAGE(xhr.status, xhr.statusText));
|
|
1806
|
+
} else {
|
|
1807
|
+
error(FAILURE_EMPTY_MESSAGE);
|
|
1808
|
+
}
|
|
1809
|
+
}
|
|
1810
|
+
}
|
|
1811
|
+
};
|
|
1812
|
+
xhr.send(null);
|
|
1813
|
+
}
|
|
1814
|
+
|
|
1815
|
+
/**
|
|
1816
|
+
* Parses the given range.
|
|
1817
|
+
*
|
|
1818
|
+
* This returns a range with inclusive ends.
|
|
1819
|
+
*
|
|
1820
|
+
* @param {string | null | undefined} range
|
|
1821
|
+
* @returns {[number, number | undefined] | undefined}
|
|
1822
|
+
*/
|
|
1823
|
+
function parseRange(range) {
|
|
1824
|
+
var m = /^\s*(\d+)\s*(?:(,)\s*(?:(\d+)\s*)?)?$/.exec(range || '');
|
|
1825
|
+
if (m) {
|
|
1826
|
+
var start = Number(m[1]);
|
|
1827
|
+
var comma = m[2];
|
|
1828
|
+
var end = m[3];
|
|
1829
|
+
|
|
1830
|
+
if (!comma) {
|
|
1831
|
+
return [start, start];
|
|
1832
|
+
}
|
|
1833
|
+
if (!end) {
|
|
1834
|
+
return [start, undefined];
|
|
1835
|
+
}
|
|
1836
|
+
return [start, Number(end)];
|
|
1837
|
+
}
|
|
1838
|
+
return undefined;
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1841
|
+
Prism.hooks.add('before-highlightall', function (env) {
|
|
1842
|
+
env.selector += ', ' + SELECTOR;
|
|
1843
|
+
});
|
|
1844
|
+
|
|
1845
|
+
Prism.hooks.add('before-sanity-check', function (env) {
|
|
1846
|
+
var pre = /** @type {HTMLPreElement} */ (env.element);
|
|
1847
|
+
if (pre.matches(SELECTOR)) {
|
|
1848
|
+
env.code = ''; // fast-path the whole thing and go to complete
|
|
1849
|
+
|
|
1850
|
+
pre.setAttribute(STATUS_ATTR, STATUS_LOADING); // mark as loading
|
|
1851
|
+
|
|
1852
|
+
// add code element with loading message
|
|
1853
|
+
var code = pre.appendChild(document.createElement('CODE'));
|
|
1854
|
+
code.textContent = LOADING_MESSAGE;
|
|
1855
|
+
|
|
1856
|
+
var src = pre.getAttribute('data-src');
|
|
1857
|
+
|
|
1858
|
+
var language = env.language;
|
|
1859
|
+
if (language === 'none') {
|
|
1860
|
+
// the language might be 'none' because there is no language set;
|
|
1861
|
+
// in this case, we want to use the extension as the language
|
|
1862
|
+
var extension = (/\.(\w+)$/.exec(src) || [, 'none'])[1];
|
|
1863
|
+
language = EXTENSIONS[extension] || extension;
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
// set language classes
|
|
1867
|
+
Prism.util.setLanguage(code, language);
|
|
1868
|
+
Prism.util.setLanguage(pre, language);
|
|
1869
|
+
|
|
1870
|
+
// preload the language
|
|
1871
|
+
var autoloader = Prism.plugins.autoloader;
|
|
1872
|
+
if (autoloader) {
|
|
1873
|
+
autoloader.loadLanguages(language);
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1876
|
+
// load file
|
|
1877
|
+
loadFile(
|
|
1878
|
+
src,
|
|
1879
|
+
function (text) {
|
|
1880
|
+
// mark as loaded
|
|
1881
|
+
pre.setAttribute(STATUS_ATTR, STATUS_LOADED);
|
|
1882
|
+
|
|
1883
|
+
// handle data-range
|
|
1884
|
+
var range = parseRange(pre.getAttribute('data-range'));
|
|
1885
|
+
if (range) {
|
|
1886
|
+
var lines = text.split(/\r\n?|\n/g);
|
|
1887
|
+
|
|
1888
|
+
// the range is one-based and inclusive on both ends
|
|
1889
|
+
var start = range[0];
|
|
1890
|
+
var end = range[1] == null ? lines.length : range[1];
|
|
1891
|
+
|
|
1892
|
+
if (start < 0) { start += lines.length; }
|
|
1893
|
+
start = Math.max(0, Math.min(start - 1, lines.length));
|
|
1894
|
+
if (end < 0) { end += lines.length; }
|
|
1895
|
+
end = Math.max(0, Math.min(end, lines.length));
|
|
1896
|
+
|
|
1897
|
+
text = lines.slice(start, end).join('\n');
|
|
1898
|
+
|
|
1899
|
+
// add data-start for line numbers
|
|
1900
|
+
if (!pre.hasAttribute('data-start')) {
|
|
1901
|
+
pre.setAttribute('data-start', String(start + 1));
|
|
1902
|
+
}
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1905
|
+
// highlight code
|
|
1906
|
+
code.textContent = text;
|
|
1907
|
+
Prism.highlightElement(code);
|
|
1908
|
+
},
|
|
1909
|
+
function (error) {
|
|
1910
|
+
// mark as failed
|
|
1911
|
+
pre.setAttribute(STATUS_ATTR, STATUS_FAILED);
|
|
1912
|
+
|
|
1913
|
+
code.textContent = error;
|
|
1914
|
+
}
|
|
1915
|
+
);
|
|
1916
|
+
}
|
|
1917
|
+
});
|
|
1918
|
+
|
|
1919
|
+
Prism.plugins.fileHighlight = {
|
|
1920
|
+
/**
|
|
1921
|
+
* Executes the File Highlight plugin for all matching `pre` elements under the given container.
|
|
1922
|
+
*
|
|
1923
|
+
* Note: Elements which are already loaded or currently loading will not be touched by this method.
|
|
1924
|
+
*
|
|
1925
|
+
* @param {ParentNode} [container=document]
|
|
1926
|
+
*/
|
|
1927
|
+
highlight: function highlight(container) {
|
|
1928
|
+
var elements = (container || document).querySelectorAll(SELECTOR);
|
|
1929
|
+
|
|
1930
|
+
for (var i = 0, element; (element = elements[i++]);) {
|
|
1931
|
+
Prism.highlightElement(element);
|
|
1932
|
+
}
|
|
1933
|
+
}
|
|
1934
|
+
};
|
|
1935
|
+
|
|
1936
|
+
var logged = false;
|
|
1937
|
+
/** @deprecated Use `Prism.plugins.fileHighlight.highlight` instead. */
|
|
1938
|
+
Prism.fileHighlight = function () {
|
|
1939
|
+
if (!logged) {
|
|
1940
|
+
console.warn('Prism.fileHighlight is deprecated. Use `Prism.plugins.fileHighlight.highlight` instead.');
|
|
1941
|
+
logged = true;
|
|
1942
|
+
}
|
|
1943
|
+
Prism.plugins.fileHighlight.highlight.apply(this, arguments);
|
|
1944
|
+
};
|
|
1945
|
+
|
|
1946
|
+
}());
|