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,2132 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Map of named character references.
|
|
3
|
+
*
|
|
4
|
+
* @type {Record<string, string>}
|
|
5
|
+
*/
|
|
6
|
+
export const characterEntities = {
|
|
7
|
+
AElig: 'Æ',
|
|
8
|
+
AMP: '&',
|
|
9
|
+
Aacute: 'Á',
|
|
10
|
+
Abreve: 'Ă',
|
|
11
|
+
Acirc: 'Â',
|
|
12
|
+
Acy: 'А',
|
|
13
|
+
Afr: '𝔄',
|
|
14
|
+
Agrave: 'À',
|
|
15
|
+
Alpha: 'Α',
|
|
16
|
+
Amacr: 'Ā',
|
|
17
|
+
And: '⩓',
|
|
18
|
+
Aogon: 'Ą',
|
|
19
|
+
Aopf: '𝔸',
|
|
20
|
+
ApplyFunction: '',
|
|
21
|
+
Aring: 'Å',
|
|
22
|
+
Ascr: '𝒜',
|
|
23
|
+
Assign: '≔',
|
|
24
|
+
Atilde: 'Ã',
|
|
25
|
+
Auml: 'Ä',
|
|
26
|
+
Backslash: '∖',
|
|
27
|
+
Barv: '⫧',
|
|
28
|
+
Barwed: '⌆',
|
|
29
|
+
Bcy: 'Б',
|
|
30
|
+
Because: '∵',
|
|
31
|
+
Bernoullis: 'ℬ',
|
|
32
|
+
Beta: 'Β',
|
|
33
|
+
Bfr: '𝔅',
|
|
34
|
+
Bopf: '𝔹',
|
|
35
|
+
Breve: '˘',
|
|
36
|
+
Bscr: 'ℬ',
|
|
37
|
+
Bumpeq: '≎',
|
|
38
|
+
CHcy: 'Ч',
|
|
39
|
+
COPY: '©',
|
|
40
|
+
Cacute: 'Ć',
|
|
41
|
+
Cap: '⋒',
|
|
42
|
+
CapitalDifferentialD: 'ⅅ',
|
|
43
|
+
Cayleys: 'ℭ',
|
|
44
|
+
Ccaron: 'Č',
|
|
45
|
+
Ccedil: 'Ç',
|
|
46
|
+
Ccirc: 'Ĉ',
|
|
47
|
+
Cconint: '∰',
|
|
48
|
+
Cdot: 'Ċ',
|
|
49
|
+
Cedilla: '¸',
|
|
50
|
+
CenterDot: '·',
|
|
51
|
+
Cfr: 'ℭ',
|
|
52
|
+
Chi: 'Χ',
|
|
53
|
+
CircleDot: '⊙',
|
|
54
|
+
CircleMinus: '⊖',
|
|
55
|
+
CirclePlus: '⊕',
|
|
56
|
+
CircleTimes: '⊗',
|
|
57
|
+
ClockwiseContourIntegral: '∲',
|
|
58
|
+
CloseCurlyDoubleQuote: '”',
|
|
59
|
+
CloseCurlyQuote: '’',
|
|
60
|
+
Colon: '∷',
|
|
61
|
+
Colone: '⩴',
|
|
62
|
+
Congruent: '≡',
|
|
63
|
+
Conint: '∯',
|
|
64
|
+
ContourIntegral: '∮',
|
|
65
|
+
Copf: 'ℂ',
|
|
66
|
+
Coproduct: '∐',
|
|
67
|
+
CounterClockwiseContourIntegral: '∳',
|
|
68
|
+
Cross: '⨯',
|
|
69
|
+
Cscr: '𝒞',
|
|
70
|
+
Cup: '⋓',
|
|
71
|
+
CupCap: '≍',
|
|
72
|
+
DD: 'ⅅ',
|
|
73
|
+
DDotrahd: '⤑',
|
|
74
|
+
DJcy: 'Ђ',
|
|
75
|
+
DScy: 'Ѕ',
|
|
76
|
+
DZcy: 'Џ',
|
|
77
|
+
Dagger: '‡',
|
|
78
|
+
Darr: '↡',
|
|
79
|
+
Dashv: '⫤',
|
|
80
|
+
Dcaron: 'Ď',
|
|
81
|
+
Dcy: 'Д',
|
|
82
|
+
Del: '∇',
|
|
83
|
+
Delta: 'Δ',
|
|
84
|
+
Dfr: '𝔇',
|
|
85
|
+
DiacriticalAcute: '´',
|
|
86
|
+
DiacriticalDot: '˙',
|
|
87
|
+
DiacriticalDoubleAcute: '˝',
|
|
88
|
+
DiacriticalGrave: '`',
|
|
89
|
+
DiacriticalTilde: '˜',
|
|
90
|
+
Diamond: '⋄',
|
|
91
|
+
DifferentialD: 'ⅆ',
|
|
92
|
+
Dopf: '𝔻',
|
|
93
|
+
Dot: '¨',
|
|
94
|
+
DotDot: '⃜',
|
|
95
|
+
DotEqual: '≐',
|
|
96
|
+
DoubleContourIntegral: '∯',
|
|
97
|
+
DoubleDot: '¨',
|
|
98
|
+
DoubleDownArrow: '⇓',
|
|
99
|
+
DoubleLeftArrow: '⇐',
|
|
100
|
+
DoubleLeftRightArrow: '⇔',
|
|
101
|
+
DoubleLeftTee: '⫤',
|
|
102
|
+
DoubleLongLeftArrow: '⟸',
|
|
103
|
+
DoubleLongLeftRightArrow: '⟺',
|
|
104
|
+
DoubleLongRightArrow: '⟹',
|
|
105
|
+
DoubleRightArrow: '⇒',
|
|
106
|
+
DoubleRightTee: '⊨',
|
|
107
|
+
DoubleUpArrow: '⇑',
|
|
108
|
+
DoubleUpDownArrow: '⇕',
|
|
109
|
+
DoubleVerticalBar: '∥',
|
|
110
|
+
DownArrow: '↓',
|
|
111
|
+
DownArrowBar: '⤓',
|
|
112
|
+
DownArrowUpArrow: '⇵',
|
|
113
|
+
DownBreve: '̑',
|
|
114
|
+
DownLeftRightVector: '⥐',
|
|
115
|
+
DownLeftTeeVector: '⥞',
|
|
116
|
+
DownLeftVector: '↽',
|
|
117
|
+
DownLeftVectorBar: '⥖',
|
|
118
|
+
DownRightTeeVector: '⥟',
|
|
119
|
+
DownRightVector: '⇁',
|
|
120
|
+
DownRightVectorBar: '⥗',
|
|
121
|
+
DownTee: '⊤',
|
|
122
|
+
DownTeeArrow: '↧',
|
|
123
|
+
Downarrow: '⇓',
|
|
124
|
+
Dscr: '𝒟',
|
|
125
|
+
Dstrok: 'Đ',
|
|
126
|
+
ENG: 'Ŋ',
|
|
127
|
+
ETH: 'Ð',
|
|
128
|
+
Eacute: 'É',
|
|
129
|
+
Ecaron: 'Ě',
|
|
130
|
+
Ecirc: 'Ê',
|
|
131
|
+
Ecy: 'Э',
|
|
132
|
+
Edot: 'Ė',
|
|
133
|
+
Efr: '𝔈',
|
|
134
|
+
Egrave: 'È',
|
|
135
|
+
Element: '∈',
|
|
136
|
+
Emacr: 'Ē',
|
|
137
|
+
EmptySmallSquare: '◻',
|
|
138
|
+
EmptyVerySmallSquare: '▫',
|
|
139
|
+
Eogon: 'Ę',
|
|
140
|
+
Eopf: '𝔼',
|
|
141
|
+
Epsilon: 'Ε',
|
|
142
|
+
Equal: '⩵',
|
|
143
|
+
EqualTilde: '≂',
|
|
144
|
+
Equilibrium: '⇌',
|
|
145
|
+
Escr: 'ℰ',
|
|
146
|
+
Esim: '⩳',
|
|
147
|
+
Eta: 'Η',
|
|
148
|
+
Euml: 'Ë',
|
|
149
|
+
Exists: '∃',
|
|
150
|
+
ExponentialE: 'ⅇ',
|
|
151
|
+
Fcy: 'Ф',
|
|
152
|
+
Ffr: '𝔉',
|
|
153
|
+
FilledSmallSquare: '◼',
|
|
154
|
+
FilledVerySmallSquare: '▪',
|
|
155
|
+
Fopf: '𝔽',
|
|
156
|
+
ForAll: '∀',
|
|
157
|
+
Fouriertrf: 'ℱ',
|
|
158
|
+
Fscr: 'ℱ',
|
|
159
|
+
GJcy: 'Ѓ',
|
|
160
|
+
GT: '>',
|
|
161
|
+
Gamma: 'Γ',
|
|
162
|
+
Gammad: 'Ϝ',
|
|
163
|
+
Gbreve: 'Ğ',
|
|
164
|
+
Gcedil: 'Ģ',
|
|
165
|
+
Gcirc: 'Ĝ',
|
|
166
|
+
Gcy: 'Г',
|
|
167
|
+
Gdot: 'Ġ',
|
|
168
|
+
Gfr: '𝔊',
|
|
169
|
+
Gg: '⋙',
|
|
170
|
+
Gopf: '𝔾',
|
|
171
|
+
GreaterEqual: '≥',
|
|
172
|
+
GreaterEqualLess: '⋛',
|
|
173
|
+
GreaterFullEqual: '≧',
|
|
174
|
+
GreaterGreater: '⪢',
|
|
175
|
+
GreaterLess: '≷',
|
|
176
|
+
GreaterSlantEqual: '⩾',
|
|
177
|
+
GreaterTilde: '≳',
|
|
178
|
+
Gscr: '𝒢',
|
|
179
|
+
Gt: '≫',
|
|
180
|
+
HARDcy: 'Ъ',
|
|
181
|
+
Hacek: 'ˇ',
|
|
182
|
+
Hat: '^',
|
|
183
|
+
Hcirc: 'Ĥ',
|
|
184
|
+
Hfr: 'ℌ',
|
|
185
|
+
HilbertSpace: 'ℋ',
|
|
186
|
+
Hopf: 'ℍ',
|
|
187
|
+
HorizontalLine: '─',
|
|
188
|
+
Hscr: 'ℋ',
|
|
189
|
+
Hstrok: 'Ħ',
|
|
190
|
+
HumpDownHump: '≎',
|
|
191
|
+
HumpEqual: '≏',
|
|
192
|
+
IEcy: 'Е',
|
|
193
|
+
IJlig: 'IJ',
|
|
194
|
+
IOcy: 'Ё',
|
|
195
|
+
Iacute: 'Í',
|
|
196
|
+
Icirc: 'Î',
|
|
197
|
+
Icy: 'И',
|
|
198
|
+
Idot: 'İ',
|
|
199
|
+
Ifr: 'ℑ',
|
|
200
|
+
Igrave: 'Ì',
|
|
201
|
+
Im: 'ℑ',
|
|
202
|
+
Imacr: 'Ī',
|
|
203
|
+
ImaginaryI: 'ⅈ',
|
|
204
|
+
Implies: '⇒',
|
|
205
|
+
Int: '∬',
|
|
206
|
+
Integral: '∫',
|
|
207
|
+
Intersection: '⋂',
|
|
208
|
+
InvisibleComma: '',
|
|
209
|
+
InvisibleTimes: '',
|
|
210
|
+
Iogon: 'Į',
|
|
211
|
+
Iopf: '𝕀',
|
|
212
|
+
Iota: 'Ι',
|
|
213
|
+
Iscr: 'ℐ',
|
|
214
|
+
Itilde: 'Ĩ',
|
|
215
|
+
Iukcy: 'І',
|
|
216
|
+
Iuml: 'Ï',
|
|
217
|
+
Jcirc: 'Ĵ',
|
|
218
|
+
Jcy: 'Й',
|
|
219
|
+
Jfr: '𝔍',
|
|
220
|
+
Jopf: '𝕁',
|
|
221
|
+
Jscr: '𝒥',
|
|
222
|
+
Jsercy: 'Ј',
|
|
223
|
+
Jukcy: 'Є',
|
|
224
|
+
KHcy: 'Х',
|
|
225
|
+
KJcy: 'Ќ',
|
|
226
|
+
Kappa: 'Κ',
|
|
227
|
+
Kcedil: 'Ķ',
|
|
228
|
+
Kcy: 'К',
|
|
229
|
+
Kfr: '𝔎',
|
|
230
|
+
Kopf: '𝕂',
|
|
231
|
+
Kscr: '𝒦',
|
|
232
|
+
LJcy: 'Љ',
|
|
233
|
+
LT: '<',
|
|
234
|
+
Lacute: 'Ĺ',
|
|
235
|
+
Lambda: 'Λ',
|
|
236
|
+
Lang: '⟪',
|
|
237
|
+
Laplacetrf: 'ℒ',
|
|
238
|
+
Larr: '↞',
|
|
239
|
+
Lcaron: 'Ľ',
|
|
240
|
+
Lcedil: 'Ļ',
|
|
241
|
+
Lcy: 'Л',
|
|
242
|
+
LeftAngleBracket: '⟨',
|
|
243
|
+
LeftArrow: '←',
|
|
244
|
+
LeftArrowBar: '⇤',
|
|
245
|
+
LeftArrowRightArrow: '⇆',
|
|
246
|
+
LeftCeiling: '⌈',
|
|
247
|
+
LeftDoubleBracket: '⟦',
|
|
248
|
+
LeftDownTeeVector: '⥡',
|
|
249
|
+
LeftDownVector: '⇃',
|
|
250
|
+
LeftDownVectorBar: '⥙',
|
|
251
|
+
LeftFloor: '⌊',
|
|
252
|
+
LeftRightArrow: '↔',
|
|
253
|
+
LeftRightVector: '⥎',
|
|
254
|
+
LeftTee: '⊣',
|
|
255
|
+
LeftTeeArrow: '↤',
|
|
256
|
+
LeftTeeVector: '⥚',
|
|
257
|
+
LeftTriangle: '⊲',
|
|
258
|
+
LeftTriangleBar: '⧏',
|
|
259
|
+
LeftTriangleEqual: '⊴',
|
|
260
|
+
LeftUpDownVector: '⥑',
|
|
261
|
+
LeftUpTeeVector: '⥠',
|
|
262
|
+
LeftUpVector: '↿',
|
|
263
|
+
LeftUpVectorBar: '⥘',
|
|
264
|
+
LeftVector: '↼',
|
|
265
|
+
LeftVectorBar: '⥒',
|
|
266
|
+
Leftarrow: '⇐',
|
|
267
|
+
Leftrightarrow: '⇔',
|
|
268
|
+
LessEqualGreater: '⋚',
|
|
269
|
+
LessFullEqual: '≦',
|
|
270
|
+
LessGreater: '≶',
|
|
271
|
+
LessLess: '⪡',
|
|
272
|
+
LessSlantEqual: '⩽',
|
|
273
|
+
LessTilde: '≲',
|
|
274
|
+
Lfr: '𝔏',
|
|
275
|
+
Ll: '⋘',
|
|
276
|
+
Lleftarrow: '⇚',
|
|
277
|
+
Lmidot: 'Ŀ',
|
|
278
|
+
LongLeftArrow: '⟵',
|
|
279
|
+
LongLeftRightArrow: '⟷',
|
|
280
|
+
LongRightArrow: '⟶',
|
|
281
|
+
Longleftarrow: '⟸',
|
|
282
|
+
Longleftrightarrow: '⟺',
|
|
283
|
+
Longrightarrow: '⟹',
|
|
284
|
+
Lopf: '𝕃',
|
|
285
|
+
LowerLeftArrow: '↙',
|
|
286
|
+
LowerRightArrow: '↘',
|
|
287
|
+
Lscr: 'ℒ',
|
|
288
|
+
Lsh: '↰',
|
|
289
|
+
Lstrok: 'Ł',
|
|
290
|
+
Lt: '≪',
|
|
291
|
+
Map: '⤅',
|
|
292
|
+
Mcy: 'М',
|
|
293
|
+
MediumSpace: ' ',
|
|
294
|
+
Mellintrf: 'ℳ',
|
|
295
|
+
Mfr: '𝔐',
|
|
296
|
+
MinusPlus: '∓',
|
|
297
|
+
Mopf: '𝕄',
|
|
298
|
+
Mscr: 'ℳ',
|
|
299
|
+
Mu: 'Μ',
|
|
300
|
+
NJcy: 'Њ',
|
|
301
|
+
Nacute: 'Ń',
|
|
302
|
+
Ncaron: 'Ň',
|
|
303
|
+
Ncedil: 'Ņ',
|
|
304
|
+
Ncy: 'Н',
|
|
305
|
+
NegativeMediumSpace: '',
|
|
306
|
+
NegativeThickSpace: '',
|
|
307
|
+
NegativeThinSpace: '',
|
|
308
|
+
NegativeVeryThinSpace: '',
|
|
309
|
+
NestedGreaterGreater: '≫',
|
|
310
|
+
NestedLessLess: '≪',
|
|
311
|
+
NewLine: '\n',
|
|
312
|
+
Nfr: '𝔑',
|
|
313
|
+
NoBreak: '',
|
|
314
|
+
NonBreakingSpace: ' ',
|
|
315
|
+
Nopf: 'ℕ',
|
|
316
|
+
Not: '⫬',
|
|
317
|
+
NotCongruent: '≢',
|
|
318
|
+
NotCupCap: '≭',
|
|
319
|
+
NotDoubleVerticalBar: '∦',
|
|
320
|
+
NotElement: '∉',
|
|
321
|
+
NotEqual: '≠',
|
|
322
|
+
NotEqualTilde: '≂̸',
|
|
323
|
+
NotExists: '∄',
|
|
324
|
+
NotGreater: '≯',
|
|
325
|
+
NotGreaterEqual: '≱',
|
|
326
|
+
NotGreaterFullEqual: '≧̸',
|
|
327
|
+
NotGreaterGreater: '≫̸',
|
|
328
|
+
NotGreaterLess: '≹',
|
|
329
|
+
NotGreaterSlantEqual: '⩾̸',
|
|
330
|
+
NotGreaterTilde: '≵',
|
|
331
|
+
NotHumpDownHump: '≎̸',
|
|
332
|
+
NotHumpEqual: '≏̸',
|
|
333
|
+
NotLeftTriangle: '⋪',
|
|
334
|
+
NotLeftTriangleBar: '⧏̸',
|
|
335
|
+
NotLeftTriangleEqual: '⋬',
|
|
336
|
+
NotLess: '≮',
|
|
337
|
+
NotLessEqual: '≰',
|
|
338
|
+
NotLessGreater: '≸',
|
|
339
|
+
NotLessLess: '≪̸',
|
|
340
|
+
NotLessSlantEqual: '⩽̸',
|
|
341
|
+
NotLessTilde: '≴',
|
|
342
|
+
NotNestedGreaterGreater: '⪢̸',
|
|
343
|
+
NotNestedLessLess: '⪡̸',
|
|
344
|
+
NotPrecedes: '⊀',
|
|
345
|
+
NotPrecedesEqual: '⪯̸',
|
|
346
|
+
NotPrecedesSlantEqual: '⋠',
|
|
347
|
+
NotReverseElement: '∌',
|
|
348
|
+
NotRightTriangle: '⋫',
|
|
349
|
+
NotRightTriangleBar: '⧐̸',
|
|
350
|
+
NotRightTriangleEqual: '⋭',
|
|
351
|
+
NotSquareSubset: '⊏̸',
|
|
352
|
+
NotSquareSubsetEqual: '⋢',
|
|
353
|
+
NotSquareSuperset: '⊐̸',
|
|
354
|
+
NotSquareSupersetEqual: '⋣',
|
|
355
|
+
NotSubset: '⊂⃒',
|
|
356
|
+
NotSubsetEqual: '⊈',
|
|
357
|
+
NotSucceeds: '⊁',
|
|
358
|
+
NotSucceedsEqual: '⪰̸',
|
|
359
|
+
NotSucceedsSlantEqual: '⋡',
|
|
360
|
+
NotSucceedsTilde: '≿̸',
|
|
361
|
+
NotSuperset: '⊃⃒',
|
|
362
|
+
NotSupersetEqual: '⊉',
|
|
363
|
+
NotTilde: '≁',
|
|
364
|
+
NotTildeEqual: '≄',
|
|
365
|
+
NotTildeFullEqual: '≇',
|
|
366
|
+
NotTildeTilde: '≉',
|
|
367
|
+
NotVerticalBar: '∤',
|
|
368
|
+
Nscr: '𝒩',
|
|
369
|
+
Ntilde: 'Ñ',
|
|
370
|
+
Nu: 'Ν',
|
|
371
|
+
OElig: 'Œ',
|
|
372
|
+
Oacute: 'Ó',
|
|
373
|
+
Ocirc: 'Ô',
|
|
374
|
+
Ocy: 'О',
|
|
375
|
+
Odblac: 'Ő',
|
|
376
|
+
Ofr: '𝔒',
|
|
377
|
+
Ograve: 'Ò',
|
|
378
|
+
Omacr: 'Ō',
|
|
379
|
+
Omega: 'Ω',
|
|
380
|
+
Omicron: 'Ο',
|
|
381
|
+
Oopf: '𝕆',
|
|
382
|
+
OpenCurlyDoubleQuote: '“',
|
|
383
|
+
OpenCurlyQuote: '‘',
|
|
384
|
+
Or: '⩔',
|
|
385
|
+
Oscr: '𝒪',
|
|
386
|
+
Oslash: 'Ø',
|
|
387
|
+
Otilde: 'Õ',
|
|
388
|
+
Otimes: '⨷',
|
|
389
|
+
Ouml: 'Ö',
|
|
390
|
+
OverBar: '‾',
|
|
391
|
+
OverBrace: '⏞',
|
|
392
|
+
OverBracket: '⎴',
|
|
393
|
+
OverParenthesis: '⏜',
|
|
394
|
+
PartialD: '∂',
|
|
395
|
+
Pcy: 'П',
|
|
396
|
+
Pfr: '𝔓',
|
|
397
|
+
Phi: 'Φ',
|
|
398
|
+
Pi: 'Π',
|
|
399
|
+
PlusMinus: '±',
|
|
400
|
+
Poincareplane: 'ℌ',
|
|
401
|
+
Popf: 'ℙ',
|
|
402
|
+
Pr: '⪻',
|
|
403
|
+
Precedes: '≺',
|
|
404
|
+
PrecedesEqual: '⪯',
|
|
405
|
+
PrecedesSlantEqual: '≼',
|
|
406
|
+
PrecedesTilde: '≾',
|
|
407
|
+
Prime: '″',
|
|
408
|
+
Product: '∏',
|
|
409
|
+
Proportion: '∷',
|
|
410
|
+
Proportional: '∝',
|
|
411
|
+
Pscr: '𝒫',
|
|
412
|
+
Psi: 'Ψ',
|
|
413
|
+
QUOT: '"',
|
|
414
|
+
Qfr: '𝔔',
|
|
415
|
+
Qopf: 'ℚ',
|
|
416
|
+
Qscr: '𝒬',
|
|
417
|
+
RBarr: '⤐',
|
|
418
|
+
REG: '®',
|
|
419
|
+
Racute: 'Ŕ',
|
|
420
|
+
Rang: '⟫',
|
|
421
|
+
Rarr: '↠',
|
|
422
|
+
Rarrtl: '⤖',
|
|
423
|
+
Rcaron: 'Ř',
|
|
424
|
+
Rcedil: 'Ŗ',
|
|
425
|
+
Rcy: 'Р',
|
|
426
|
+
Re: 'ℜ',
|
|
427
|
+
ReverseElement: '∋',
|
|
428
|
+
ReverseEquilibrium: '⇋',
|
|
429
|
+
ReverseUpEquilibrium: '⥯',
|
|
430
|
+
Rfr: 'ℜ',
|
|
431
|
+
Rho: 'Ρ',
|
|
432
|
+
RightAngleBracket: '⟩',
|
|
433
|
+
RightArrow: '→',
|
|
434
|
+
RightArrowBar: '⇥',
|
|
435
|
+
RightArrowLeftArrow: '⇄',
|
|
436
|
+
RightCeiling: '⌉',
|
|
437
|
+
RightDoubleBracket: '⟧',
|
|
438
|
+
RightDownTeeVector: '⥝',
|
|
439
|
+
RightDownVector: '⇂',
|
|
440
|
+
RightDownVectorBar: '⥕',
|
|
441
|
+
RightFloor: '⌋',
|
|
442
|
+
RightTee: '⊢',
|
|
443
|
+
RightTeeArrow: '↦',
|
|
444
|
+
RightTeeVector: '⥛',
|
|
445
|
+
RightTriangle: '⊳',
|
|
446
|
+
RightTriangleBar: '⧐',
|
|
447
|
+
RightTriangleEqual: '⊵',
|
|
448
|
+
RightUpDownVector: '⥏',
|
|
449
|
+
RightUpTeeVector: '⥜',
|
|
450
|
+
RightUpVector: '↾',
|
|
451
|
+
RightUpVectorBar: '⥔',
|
|
452
|
+
RightVector: '⇀',
|
|
453
|
+
RightVectorBar: '⥓',
|
|
454
|
+
Rightarrow: '⇒',
|
|
455
|
+
Ropf: 'ℝ',
|
|
456
|
+
RoundImplies: '⥰',
|
|
457
|
+
Rrightarrow: '⇛',
|
|
458
|
+
Rscr: 'ℛ',
|
|
459
|
+
Rsh: '↱',
|
|
460
|
+
RuleDelayed: '⧴',
|
|
461
|
+
SHCHcy: 'Щ',
|
|
462
|
+
SHcy: 'Ш',
|
|
463
|
+
SOFTcy: 'Ь',
|
|
464
|
+
Sacute: 'Ś',
|
|
465
|
+
Sc: '⪼',
|
|
466
|
+
Scaron: 'Š',
|
|
467
|
+
Scedil: 'Ş',
|
|
468
|
+
Scirc: 'Ŝ',
|
|
469
|
+
Scy: 'С',
|
|
470
|
+
Sfr: '𝔖',
|
|
471
|
+
ShortDownArrow: '↓',
|
|
472
|
+
ShortLeftArrow: '←',
|
|
473
|
+
ShortRightArrow: '→',
|
|
474
|
+
ShortUpArrow: '↑',
|
|
475
|
+
Sigma: 'Σ',
|
|
476
|
+
SmallCircle: '∘',
|
|
477
|
+
Sopf: '𝕊',
|
|
478
|
+
Sqrt: '√',
|
|
479
|
+
Square: '□',
|
|
480
|
+
SquareIntersection: '⊓',
|
|
481
|
+
SquareSubset: '⊏',
|
|
482
|
+
SquareSubsetEqual: '⊑',
|
|
483
|
+
SquareSuperset: '⊐',
|
|
484
|
+
SquareSupersetEqual: '⊒',
|
|
485
|
+
SquareUnion: '⊔',
|
|
486
|
+
Sscr: '𝒮',
|
|
487
|
+
Star: '⋆',
|
|
488
|
+
Sub: '⋐',
|
|
489
|
+
Subset: '⋐',
|
|
490
|
+
SubsetEqual: '⊆',
|
|
491
|
+
Succeeds: '≻',
|
|
492
|
+
SucceedsEqual: '⪰',
|
|
493
|
+
SucceedsSlantEqual: '≽',
|
|
494
|
+
SucceedsTilde: '≿',
|
|
495
|
+
SuchThat: '∋',
|
|
496
|
+
Sum: '∑',
|
|
497
|
+
Sup: '⋑',
|
|
498
|
+
Superset: '⊃',
|
|
499
|
+
SupersetEqual: '⊇',
|
|
500
|
+
Supset: '⋑',
|
|
501
|
+
THORN: 'Þ',
|
|
502
|
+
TRADE: '™',
|
|
503
|
+
TSHcy: 'Ћ',
|
|
504
|
+
TScy: 'Ц',
|
|
505
|
+
Tab: '\t',
|
|
506
|
+
Tau: 'Τ',
|
|
507
|
+
Tcaron: 'Ť',
|
|
508
|
+
Tcedil: 'Ţ',
|
|
509
|
+
Tcy: 'Т',
|
|
510
|
+
Tfr: '𝔗',
|
|
511
|
+
Therefore: '∴',
|
|
512
|
+
Theta: 'Θ',
|
|
513
|
+
ThickSpace: ' ',
|
|
514
|
+
ThinSpace: ' ',
|
|
515
|
+
Tilde: '∼',
|
|
516
|
+
TildeEqual: '≃',
|
|
517
|
+
TildeFullEqual: '≅',
|
|
518
|
+
TildeTilde: '≈',
|
|
519
|
+
Topf: '𝕋',
|
|
520
|
+
TripleDot: '⃛',
|
|
521
|
+
Tscr: '𝒯',
|
|
522
|
+
Tstrok: 'Ŧ',
|
|
523
|
+
Uacute: 'Ú',
|
|
524
|
+
Uarr: '↟',
|
|
525
|
+
Uarrocir: '⥉',
|
|
526
|
+
Ubrcy: 'Ў',
|
|
527
|
+
Ubreve: 'Ŭ',
|
|
528
|
+
Ucirc: 'Û',
|
|
529
|
+
Ucy: 'У',
|
|
530
|
+
Udblac: 'Ű',
|
|
531
|
+
Ufr: '𝔘',
|
|
532
|
+
Ugrave: 'Ù',
|
|
533
|
+
Umacr: 'Ū',
|
|
534
|
+
UnderBar: '_',
|
|
535
|
+
UnderBrace: '⏟',
|
|
536
|
+
UnderBracket: '⎵',
|
|
537
|
+
UnderParenthesis: '⏝',
|
|
538
|
+
Union: '⋃',
|
|
539
|
+
UnionPlus: '⊎',
|
|
540
|
+
Uogon: 'Ų',
|
|
541
|
+
Uopf: '𝕌',
|
|
542
|
+
UpArrow: '↑',
|
|
543
|
+
UpArrowBar: '⤒',
|
|
544
|
+
UpArrowDownArrow: '⇅',
|
|
545
|
+
UpDownArrow: '↕',
|
|
546
|
+
UpEquilibrium: '⥮',
|
|
547
|
+
UpTee: '⊥',
|
|
548
|
+
UpTeeArrow: '↥',
|
|
549
|
+
Uparrow: '⇑',
|
|
550
|
+
Updownarrow: '⇕',
|
|
551
|
+
UpperLeftArrow: '↖',
|
|
552
|
+
UpperRightArrow: '↗',
|
|
553
|
+
Upsi: 'ϒ',
|
|
554
|
+
Upsilon: 'Υ',
|
|
555
|
+
Uring: 'Ů',
|
|
556
|
+
Uscr: '𝒰',
|
|
557
|
+
Utilde: 'Ũ',
|
|
558
|
+
Uuml: 'Ü',
|
|
559
|
+
VDash: '⊫',
|
|
560
|
+
Vbar: '⫫',
|
|
561
|
+
Vcy: 'В',
|
|
562
|
+
Vdash: '⊩',
|
|
563
|
+
Vdashl: '⫦',
|
|
564
|
+
Vee: '⋁',
|
|
565
|
+
Verbar: '‖',
|
|
566
|
+
Vert: '‖',
|
|
567
|
+
VerticalBar: '∣',
|
|
568
|
+
VerticalLine: '|',
|
|
569
|
+
VerticalSeparator: '❘',
|
|
570
|
+
VerticalTilde: '≀',
|
|
571
|
+
VeryThinSpace: ' ',
|
|
572
|
+
Vfr: '𝔙',
|
|
573
|
+
Vopf: '𝕍',
|
|
574
|
+
Vscr: '𝒱',
|
|
575
|
+
Vvdash: '⊪',
|
|
576
|
+
Wcirc: 'Ŵ',
|
|
577
|
+
Wedge: '⋀',
|
|
578
|
+
Wfr: '𝔚',
|
|
579
|
+
Wopf: '𝕎',
|
|
580
|
+
Wscr: '𝒲',
|
|
581
|
+
Xfr: '𝔛',
|
|
582
|
+
Xi: 'Ξ',
|
|
583
|
+
Xopf: '𝕏',
|
|
584
|
+
Xscr: '𝒳',
|
|
585
|
+
YAcy: 'Я',
|
|
586
|
+
YIcy: 'Ї',
|
|
587
|
+
YUcy: 'Ю',
|
|
588
|
+
Yacute: 'Ý',
|
|
589
|
+
Ycirc: 'Ŷ',
|
|
590
|
+
Ycy: 'Ы',
|
|
591
|
+
Yfr: '𝔜',
|
|
592
|
+
Yopf: '𝕐',
|
|
593
|
+
Yscr: '𝒴',
|
|
594
|
+
Yuml: 'Ÿ',
|
|
595
|
+
ZHcy: 'Ж',
|
|
596
|
+
Zacute: 'Ź',
|
|
597
|
+
Zcaron: 'Ž',
|
|
598
|
+
Zcy: 'З',
|
|
599
|
+
Zdot: 'Ż',
|
|
600
|
+
ZeroWidthSpace: '',
|
|
601
|
+
Zeta: 'Ζ',
|
|
602
|
+
Zfr: 'ℨ',
|
|
603
|
+
Zopf: 'ℤ',
|
|
604
|
+
Zscr: '𝒵',
|
|
605
|
+
aacute: 'á',
|
|
606
|
+
abreve: 'ă',
|
|
607
|
+
ac: '∾',
|
|
608
|
+
acE: '∾̳',
|
|
609
|
+
acd: '∿',
|
|
610
|
+
acirc: 'â',
|
|
611
|
+
acute: '´',
|
|
612
|
+
acy: 'а',
|
|
613
|
+
aelig: 'æ',
|
|
614
|
+
af: '',
|
|
615
|
+
afr: '𝔞',
|
|
616
|
+
agrave: 'à',
|
|
617
|
+
alefsym: 'ℵ',
|
|
618
|
+
aleph: 'ℵ',
|
|
619
|
+
alpha: 'α',
|
|
620
|
+
amacr: 'ā',
|
|
621
|
+
amalg: '⨿',
|
|
622
|
+
amp: '&',
|
|
623
|
+
and: '∧',
|
|
624
|
+
andand: '⩕',
|
|
625
|
+
andd: '⩜',
|
|
626
|
+
andslope: '⩘',
|
|
627
|
+
andv: '⩚',
|
|
628
|
+
ang: '∠',
|
|
629
|
+
ange: '⦤',
|
|
630
|
+
angle: '∠',
|
|
631
|
+
angmsd: '∡',
|
|
632
|
+
angmsdaa: '⦨',
|
|
633
|
+
angmsdab: '⦩',
|
|
634
|
+
angmsdac: '⦪',
|
|
635
|
+
angmsdad: '⦫',
|
|
636
|
+
angmsdae: '⦬',
|
|
637
|
+
angmsdaf: '⦭',
|
|
638
|
+
angmsdag: '⦮',
|
|
639
|
+
angmsdah: '⦯',
|
|
640
|
+
angrt: '∟',
|
|
641
|
+
angrtvb: '⊾',
|
|
642
|
+
angrtvbd: '⦝',
|
|
643
|
+
angsph: '∢',
|
|
644
|
+
angst: 'Å',
|
|
645
|
+
angzarr: '⍼',
|
|
646
|
+
aogon: 'ą',
|
|
647
|
+
aopf: '𝕒',
|
|
648
|
+
ap: '≈',
|
|
649
|
+
apE: '⩰',
|
|
650
|
+
apacir: '⩯',
|
|
651
|
+
ape: '≊',
|
|
652
|
+
apid: '≋',
|
|
653
|
+
apos: "'",
|
|
654
|
+
approx: '≈',
|
|
655
|
+
approxeq: '≊',
|
|
656
|
+
aring: 'å',
|
|
657
|
+
ascr: '𝒶',
|
|
658
|
+
ast: '*',
|
|
659
|
+
asymp: '≈',
|
|
660
|
+
asympeq: '≍',
|
|
661
|
+
atilde: 'ã',
|
|
662
|
+
auml: 'ä',
|
|
663
|
+
awconint: '∳',
|
|
664
|
+
awint: '⨑',
|
|
665
|
+
bNot: '⫭',
|
|
666
|
+
backcong: '≌',
|
|
667
|
+
backepsilon: '϶',
|
|
668
|
+
backprime: '‵',
|
|
669
|
+
backsim: '∽',
|
|
670
|
+
backsimeq: '⋍',
|
|
671
|
+
barvee: '⊽',
|
|
672
|
+
barwed: '⌅',
|
|
673
|
+
barwedge: '⌅',
|
|
674
|
+
bbrk: '⎵',
|
|
675
|
+
bbrktbrk: '⎶',
|
|
676
|
+
bcong: '≌',
|
|
677
|
+
bcy: 'б',
|
|
678
|
+
bdquo: '„',
|
|
679
|
+
becaus: '∵',
|
|
680
|
+
because: '∵',
|
|
681
|
+
bemptyv: '⦰',
|
|
682
|
+
bepsi: '϶',
|
|
683
|
+
bernou: 'ℬ',
|
|
684
|
+
beta: 'β',
|
|
685
|
+
beth: 'ℶ',
|
|
686
|
+
between: '≬',
|
|
687
|
+
bfr: '𝔟',
|
|
688
|
+
bigcap: '⋂',
|
|
689
|
+
bigcirc: '◯',
|
|
690
|
+
bigcup: '⋃',
|
|
691
|
+
bigodot: '⨀',
|
|
692
|
+
bigoplus: '⨁',
|
|
693
|
+
bigotimes: '⨂',
|
|
694
|
+
bigsqcup: '⨆',
|
|
695
|
+
bigstar: '★',
|
|
696
|
+
bigtriangledown: '▽',
|
|
697
|
+
bigtriangleup: '△',
|
|
698
|
+
biguplus: '⨄',
|
|
699
|
+
bigvee: '⋁',
|
|
700
|
+
bigwedge: '⋀',
|
|
701
|
+
bkarow: '⤍',
|
|
702
|
+
blacklozenge: '⧫',
|
|
703
|
+
blacksquare: '▪',
|
|
704
|
+
blacktriangle: '▴',
|
|
705
|
+
blacktriangledown: '▾',
|
|
706
|
+
blacktriangleleft: '◂',
|
|
707
|
+
blacktriangleright: '▸',
|
|
708
|
+
blank: '␣',
|
|
709
|
+
blk12: '▒',
|
|
710
|
+
blk14: '░',
|
|
711
|
+
blk34: '▓',
|
|
712
|
+
block: '█',
|
|
713
|
+
bne: '=⃥',
|
|
714
|
+
bnequiv: '≡⃥',
|
|
715
|
+
bnot: '⌐',
|
|
716
|
+
bopf: '𝕓',
|
|
717
|
+
bot: '⊥',
|
|
718
|
+
bottom: '⊥',
|
|
719
|
+
bowtie: '⋈',
|
|
720
|
+
boxDL: '╗',
|
|
721
|
+
boxDR: '╔',
|
|
722
|
+
boxDl: '╖',
|
|
723
|
+
boxDr: '╓',
|
|
724
|
+
boxH: '═',
|
|
725
|
+
boxHD: '╦',
|
|
726
|
+
boxHU: '╩',
|
|
727
|
+
boxHd: '╤',
|
|
728
|
+
boxHu: '╧',
|
|
729
|
+
boxUL: '╝',
|
|
730
|
+
boxUR: '╚',
|
|
731
|
+
boxUl: '╜',
|
|
732
|
+
boxUr: '╙',
|
|
733
|
+
boxV: '║',
|
|
734
|
+
boxVH: '╬',
|
|
735
|
+
boxVL: '╣',
|
|
736
|
+
boxVR: '╠',
|
|
737
|
+
boxVh: '╫',
|
|
738
|
+
boxVl: '╢',
|
|
739
|
+
boxVr: '╟',
|
|
740
|
+
boxbox: '⧉',
|
|
741
|
+
boxdL: '╕',
|
|
742
|
+
boxdR: '╒',
|
|
743
|
+
boxdl: '┐',
|
|
744
|
+
boxdr: '┌',
|
|
745
|
+
boxh: '─',
|
|
746
|
+
boxhD: '╥',
|
|
747
|
+
boxhU: '╨',
|
|
748
|
+
boxhd: '┬',
|
|
749
|
+
boxhu: '┴',
|
|
750
|
+
boxminus: '⊟',
|
|
751
|
+
boxplus: '⊞',
|
|
752
|
+
boxtimes: '⊠',
|
|
753
|
+
boxuL: '╛',
|
|
754
|
+
boxuR: '╘',
|
|
755
|
+
boxul: '┘',
|
|
756
|
+
boxur: '└',
|
|
757
|
+
boxv: '│',
|
|
758
|
+
boxvH: '╪',
|
|
759
|
+
boxvL: '╡',
|
|
760
|
+
boxvR: '╞',
|
|
761
|
+
boxvh: '┼',
|
|
762
|
+
boxvl: '┤',
|
|
763
|
+
boxvr: '├',
|
|
764
|
+
bprime: '‵',
|
|
765
|
+
breve: '˘',
|
|
766
|
+
brvbar: '¦',
|
|
767
|
+
bscr: '𝒷',
|
|
768
|
+
bsemi: '⁏',
|
|
769
|
+
bsim: '∽',
|
|
770
|
+
bsime: '⋍',
|
|
771
|
+
bsol: '\\',
|
|
772
|
+
bsolb: '⧅',
|
|
773
|
+
bsolhsub: '⟈',
|
|
774
|
+
bull: '•',
|
|
775
|
+
bullet: '•',
|
|
776
|
+
bump: '≎',
|
|
777
|
+
bumpE: '⪮',
|
|
778
|
+
bumpe: '≏',
|
|
779
|
+
bumpeq: '≏',
|
|
780
|
+
cacute: 'ć',
|
|
781
|
+
cap: '∩',
|
|
782
|
+
capand: '⩄',
|
|
783
|
+
capbrcup: '⩉',
|
|
784
|
+
capcap: '⩋',
|
|
785
|
+
capcup: '⩇',
|
|
786
|
+
capdot: '⩀',
|
|
787
|
+
caps: '∩︀',
|
|
788
|
+
caret: '⁁',
|
|
789
|
+
caron: 'ˇ',
|
|
790
|
+
ccaps: '⩍',
|
|
791
|
+
ccaron: 'č',
|
|
792
|
+
ccedil: 'ç',
|
|
793
|
+
ccirc: 'ĉ',
|
|
794
|
+
ccups: '⩌',
|
|
795
|
+
ccupssm: '⩐',
|
|
796
|
+
cdot: 'ċ',
|
|
797
|
+
cedil: '¸',
|
|
798
|
+
cemptyv: '⦲',
|
|
799
|
+
cent: '¢',
|
|
800
|
+
centerdot: '·',
|
|
801
|
+
cfr: '𝔠',
|
|
802
|
+
chcy: 'ч',
|
|
803
|
+
check: '✓',
|
|
804
|
+
checkmark: '✓',
|
|
805
|
+
chi: 'χ',
|
|
806
|
+
cir: '○',
|
|
807
|
+
cirE: '⧃',
|
|
808
|
+
circ: 'ˆ',
|
|
809
|
+
circeq: '≗',
|
|
810
|
+
circlearrowleft: '↺',
|
|
811
|
+
circlearrowright: '↻',
|
|
812
|
+
circledR: '®',
|
|
813
|
+
circledS: 'Ⓢ',
|
|
814
|
+
circledast: '⊛',
|
|
815
|
+
circledcirc: '⊚',
|
|
816
|
+
circleddash: '⊝',
|
|
817
|
+
cire: '≗',
|
|
818
|
+
cirfnint: '⨐',
|
|
819
|
+
cirmid: '⫯',
|
|
820
|
+
cirscir: '⧂',
|
|
821
|
+
clubs: '♣',
|
|
822
|
+
clubsuit: '♣',
|
|
823
|
+
colon: ':',
|
|
824
|
+
colone: '≔',
|
|
825
|
+
coloneq: '≔',
|
|
826
|
+
comma: ',',
|
|
827
|
+
commat: '@',
|
|
828
|
+
comp: '∁',
|
|
829
|
+
compfn: '∘',
|
|
830
|
+
complement: '∁',
|
|
831
|
+
complexes: 'ℂ',
|
|
832
|
+
cong: '≅',
|
|
833
|
+
congdot: '⩭',
|
|
834
|
+
conint: '∮',
|
|
835
|
+
copf: '𝕔',
|
|
836
|
+
coprod: '∐',
|
|
837
|
+
copy: '©',
|
|
838
|
+
copysr: '℗',
|
|
839
|
+
crarr: '↵',
|
|
840
|
+
cross: '✗',
|
|
841
|
+
cscr: '𝒸',
|
|
842
|
+
csub: '⫏',
|
|
843
|
+
csube: '⫑',
|
|
844
|
+
csup: '⫐',
|
|
845
|
+
csupe: '⫒',
|
|
846
|
+
ctdot: '⋯',
|
|
847
|
+
cudarrl: '⤸',
|
|
848
|
+
cudarrr: '⤵',
|
|
849
|
+
cuepr: '⋞',
|
|
850
|
+
cuesc: '⋟',
|
|
851
|
+
cularr: '↶',
|
|
852
|
+
cularrp: '⤽',
|
|
853
|
+
cup: '∪',
|
|
854
|
+
cupbrcap: '⩈',
|
|
855
|
+
cupcap: '⩆',
|
|
856
|
+
cupcup: '⩊',
|
|
857
|
+
cupdot: '⊍',
|
|
858
|
+
cupor: '⩅',
|
|
859
|
+
cups: '∪︀',
|
|
860
|
+
curarr: '↷',
|
|
861
|
+
curarrm: '⤼',
|
|
862
|
+
curlyeqprec: '⋞',
|
|
863
|
+
curlyeqsucc: '⋟',
|
|
864
|
+
curlyvee: '⋎',
|
|
865
|
+
curlywedge: '⋏',
|
|
866
|
+
curren: '¤',
|
|
867
|
+
curvearrowleft: '↶',
|
|
868
|
+
curvearrowright: '↷',
|
|
869
|
+
cuvee: '⋎',
|
|
870
|
+
cuwed: '⋏',
|
|
871
|
+
cwconint: '∲',
|
|
872
|
+
cwint: '∱',
|
|
873
|
+
cylcty: '⌭',
|
|
874
|
+
dArr: '⇓',
|
|
875
|
+
dHar: '⥥',
|
|
876
|
+
dagger: '†',
|
|
877
|
+
daleth: 'ℸ',
|
|
878
|
+
darr: '↓',
|
|
879
|
+
dash: '‐',
|
|
880
|
+
dashv: '⊣',
|
|
881
|
+
dbkarow: '⤏',
|
|
882
|
+
dblac: '˝',
|
|
883
|
+
dcaron: 'ď',
|
|
884
|
+
dcy: 'д',
|
|
885
|
+
dd: 'ⅆ',
|
|
886
|
+
ddagger: '‡',
|
|
887
|
+
ddarr: '⇊',
|
|
888
|
+
ddotseq: '⩷',
|
|
889
|
+
deg: '°',
|
|
890
|
+
delta: 'δ',
|
|
891
|
+
demptyv: '⦱',
|
|
892
|
+
dfisht: '⥿',
|
|
893
|
+
dfr: '𝔡',
|
|
894
|
+
dharl: '⇃',
|
|
895
|
+
dharr: '⇂',
|
|
896
|
+
diam: '⋄',
|
|
897
|
+
diamond: '⋄',
|
|
898
|
+
diamondsuit: '♦',
|
|
899
|
+
diams: '♦',
|
|
900
|
+
die: '¨',
|
|
901
|
+
digamma: 'ϝ',
|
|
902
|
+
disin: '⋲',
|
|
903
|
+
div: '÷',
|
|
904
|
+
divide: '÷',
|
|
905
|
+
divideontimes: '⋇',
|
|
906
|
+
divonx: '⋇',
|
|
907
|
+
djcy: 'ђ',
|
|
908
|
+
dlcorn: '⌞',
|
|
909
|
+
dlcrop: '⌍',
|
|
910
|
+
dollar: '$',
|
|
911
|
+
dopf: '𝕕',
|
|
912
|
+
dot: '˙',
|
|
913
|
+
doteq: '≐',
|
|
914
|
+
doteqdot: '≑',
|
|
915
|
+
dotminus: '∸',
|
|
916
|
+
dotplus: '∔',
|
|
917
|
+
dotsquare: '⊡',
|
|
918
|
+
doublebarwedge: '⌆',
|
|
919
|
+
downarrow: '↓',
|
|
920
|
+
downdownarrows: '⇊',
|
|
921
|
+
downharpoonleft: '⇃',
|
|
922
|
+
downharpoonright: '⇂',
|
|
923
|
+
drbkarow: '⤐',
|
|
924
|
+
drcorn: '⌟',
|
|
925
|
+
drcrop: '⌌',
|
|
926
|
+
dscr: '𝒹',
|
|
927
|
+
dscy: 'ѕ',
|
|
928
|
+
dsol: '⧶',
|
|
929
|
+
dstrok: 'đ',
|
|
930
|
+
dtdot: '⋱',
|
|
931
|
+
dtri: '▿',
|
|
932
|
+
dtrif: '▾',
|
|
933
|
+
duarr: '⇵',
|
|
934
|
+
duhar: '⥯',
|
|
935
|
+
dwangle: '⦦',
|
|
936
|
+
dzcy: 'џ',
|
|
937
|
+
dzigrarr: '⟿',
|
|
938
|
+
eDDot: '⩷',
|
|
939
|
+
eDot: '≑',
|
|
940
|
+
eacute: 'é',
|
|
941
|
+
easter: '⩮',
|
|
942
|
+
ecaron: 'ě',
|
|
943
|
+
ecir: '≖',
|
|
944
|
+
ecirc: 'ê',
|
|
945
|
+
ecolon: '≕',
|
|
946
|
+
ecy: 'э',
|
|
947
|
+
edot: 'ė',
|
|
948
|
+
ee: 'ⅇ',
|
|
949
|
+
efDot: '≒',
|
|
950
|
+
efr: '𝔢',
|
|
951
|
+
eg: '⪚',
|
|
952
|
+
egrave: 'è',
|
|
953
|
+
egs: '⪖',
|
|
954
|
+
egsdot: '⪘',
|
|
955
|
+
el: '⪙',
|
|
956
|
+
elinters: '⏧',
|
|
957
|
+
ell: 'ℓ',
|
|
958
|
+
els: '⪕',
|
|
959
|
+
elsdot: '⪗',
|
|
960
|
+
emacr: 'ē',
|
|
961
|
+
empty: '∅',
|
|
962
|
+
emptyset: '∅',
|
|
963
|
+
emptyv: '∅',
|
|
964
|
+
emsp13: ' ',
|
|
965
|
+
emsp14: ' ',
|
|
966
|
+
emsp: ' ',
|
|
967
|
+
eng: 'ŋ',
|
|
968
|
+
ensp: ' ',
|
|
969
|
+
eogon: 'ę',
|
|
970
|
+
eopf: '𝕖',
|
|
971
|
+
epar: '⋕',
|
|
972
|
+
eparsl: '⧣',
|
|
973
|
+
eplus: '⩱',
|
|
974
|
+
epsi: 'ε',
|
|
975
|
+
epsilon: 'ε',
|
|
976
|
+
epsiv: 'ϵ',
|
|
977
|
+
eqcirc: '≖',
|
|
978
|
+
eqcolon: '≕',
|
|
979
|
+
eqsim: '≂',
|
|
980
|
+
eqslantgtr: '⪖',
|
|
981
|
+
eqslantless: '⪕',
|
|
982
|
+
equals: '=',
|
|
983
|
+
equest: '≟',
|
|
984
|
+
equiv: '≡',
|
|
985
|
+
equivDD: '⩸',
|
|
986
|
+
eqvparsl: '⧥',
|
|
987
|
+
erDot: '≓',
|
|
988
|
+
erarr: '⥱',
|
|
989
|
+
escr: 'ℯ',
|
|
990
|
+
esdot: '≐',
|
|
991
|
+
esim: '≂',
|
|
992
|
+
eta: 'η',
|
|
993
|
+
eth: 'ð',
|
|
994
|
+
euml: 'ë',
|
|
995
|
+
euro: '€',
|
|
996
|
+
excl: '!',
|
|
997
|
+
exist: '∃',
|
|
998
|
+
expectation: 'ℰ',
|
|
999
|
+
exponentiale: 'ⅇ',
|
|
1000
|
+
fallingdotseq: '≒',
|
|
1001
|
+
fcy: 'ф',
|
|
1002
|
+
female: '♀',
|
|
1003
|
+
ffilig: 'ffi',
|
|
1004
|
+
fflig: 'ff',
|
|
1005
|
+
ffllig: 'ffl',
|
|
1006
|
+
ffr: '𝔣',
|
|
1007
|
+
filig: 'fi',
|
|
1008
|
+
fjlig: 'fj',
|
|
1009
|
+
flat: '♭',
|
|
1010
|
+
fllig: 'fl',
|
|
1011
|
+
fltns: '▱',
|
|
1012
|
+
fnof: 'ƒ',
|
|
1013
|
+
fopf: '𝕗',
|
|
1014
|
+
forall: '∀',
|
|
1015
|
+
fork: '⋔',
|
|
1016
|
+
forkv: '⫙',
|
|
1017
|
+
fpartint: '⨍',
|
|
1018
|
+
frac12: '½',
|
|
1019
|
+
frac13: '⅓',
|
|
1020
|
+
frac14: '¼',
|
|
1021
|
+
frac15: '⅕',
|
|
1022
|
+
frac16: '⅙',
|
|
1023
|
+
frac18: '⅛',
|
|
1024
|
+
frac23: '⅔',
|
|
1025
|
+
frac25: '⅖',
|
|
1026
|
+
frac34: '¾',
|
|
1027
|
+
frac35: '⅗',
|
|
1028
|
+
frac38: '⅜',
|
|
1029
|
+
frac45: '⅘',
|
|
1030
|
+
frac56: '⅚',
|
|
1031
|
+
frac58: '⅝',
|
|
1032
|
+
frac78: '⅞',
|
|
1033
|
+
frasl: '⁄',
|
|
1034
|
+
frown: '⌢',
|
|
1035
|
+
fscr: '𝒻',
|
|
1036
|
+
gE: '≧',
|
|
1037
|
+
gEl: '⪌',
|
|
1038
|
+
gacute: 'ǵ',
|
|
1039
|
+
gamma: 'γ',
|
|
1040
|
+
gammad: 'ϝ',
|
|
1041
|
+
gap: '⪆',
|
|
1042
|
+
gbreve: 'ğ',
|
|
1043
|
+
gcirc: 'ĝ',
|
|
1044
|
+
gcy: 'г',
|
|
1045
|
+
gdot: 'ġ',
|
|
1046
|
+
ge: '≥',
|
|
1047
|
+
gel: '⋛',
|
|
1048
|
+
geq: '≥',
|
|
1049
|
+
geqq: '≧',
|
|
1050
|
+
geqslant: '⩾',
|
|
1051
|
+
ges: '⩾',
|
|
1052
|
+
gescc: '⪩',
|
|
1053
|
+
gesdot: '⪀',
|
|
1054
|
+
gesdoto: '⪂',
|
|
1055
|
+
gesdotol: '⪄',
|
|
1056
|
+
gesl: '⋛︀',
|
|
1057
|
+
gesles: '⪔',
|
|
1058
|
+
gfr: '𝔤',
|
|
1059
|
+
gg: '≫',
|
|
1060
|
+
ggg: '⋙',
|
|
1061
|
+
gimel: 'ℷ',
|
|
1062
|
+
gjcy: 'ѓ',
|
|
1063
|
+
gl: '≷',
|
|
1064
|
+
glE: '⪒',
|
|
1065
|
+
gla: '⪥',
|
|
1066
|
+
glj: '⪤',
|
|
1067
|
+
gnE: '≩',
|
|
1068
|
+
gnap: '⪊',
|
|
1069
|
+
gnapprox: '⪊',
|
|
1070
|
+
gne: '⪈',
|
|
1071
|
+
gneq: '⪈',
|
|
1072
|
+
gneqq: '≩',
|
|
1073
|
+
gnsim: '⋧',
|
|
1074
|
+
gopf: '𝕘',
|
|
1075
|
+
grave: '`',
|
|
1076
|
+
gscr: 'ℊ',
|
|
1077
|
+
gsim: '≳',
|
|
1078
|
+
gsime: '⪎',
|
|
1079
|
+
gsiml: '⪐',
|
|
1080
|
+
gt: '>',
|
|
1081
|
+
gtcc: '⪧',
|
|
1082
|
+
gtcir: '⩺',
|
|
1083
|
+
gtdot: '⋗',
|
|
1084
|
+
gtlPar: '⦕',
|
|
1085
|
+
gtquest: '⩼',
|
|
1086
|
+
gtrapprox: '⪆',
|
|
1087
|
+
gtrarr: '⥸',
|
|
1088
|
+
gtrdot: '⋗',
|
|
1089
|
+
gtreqless: '⋛',
|
|
1090
|
+
gtreqqless: '⪌',
|
|
1091
|
+
gtrless: '≷',
|
|
1092
|
+
gtrsim: '≳',
|
|
1093
|
+
gvertneqq: '≩︀',
|
|
1094
|
+
gvnE: '≩︀',
|
|
1095
|
+
hArr: '⇔',
|
|
1096
|
+
hairsp: ' ',
|
|
1097
|
+
half: '½',
|
|
1098
|
+
hamilt: 'ℋ',
|
|
1099
|
+
hardcy: 'ъ',
|
|
1100
|
+
harr: '↔',
|
|
1101
|
+
harrcir: '⥈',
|
|
1102
|
+
harrw: '↭',
|
|
1103
|
+
hbar: 'ℏ',
|
|
1104
|
+
hcirc: 'ĥ',
|
|
1105
|
+
hearts: '♥',
|
|
1106
|
+
heartsuit: '♥',
|
|
1107
|
+
hellip: '…',
|
|
1108
|
+
hercon: '⊹',
|
|
1109
|
+
hfr: '𝔥',
|
|
1110
|
+
hksearow: '⤥',
|
|
1111
|
+
hkswarow: '⤦',
|
|
1112
|
+
hoarr: '⇿',
|
|
1113
|
+
homtht: '∻',
|
|
1114
|
+
hookleftarrow: '↩',
|
|
1115
|
+
hookrightarrow: '↪',
|
|
1116
|
+
hopf: '𝕙',
|
|
1117
|
+
horbar: '―',
|
|
1118
|
+
hscr: '𝒽',
|
|
1119
|
+
hslash: 'ℏ',
|
|
1120
|
+
hstrok: 'ħ',
|
|
1121
|
+
hybull: '⁃',
|
|
1122
|
+
hyphen: '‐',
|
|
1123
|
+
iacute: 'í',
|
|
1124
|
+
ic: '',
|
|
1125
|
+
icirc: 'î',
|
|
1126
|
+
icy: 'и',
|
|
1127
|
+
iecy: 'е',
|
|
1128
|
+
iexcl: '¡',
|
|
1129
|
+
iff: '⇔',
|
|
1130
|
+
ifr: '𝔦',
|
|
1131
|
+
igrave: 'ì',
|
|
1132
|
+
ii: 'ⅈ',
|
|
1133
|
+
iiiint: '⨌',
|
|
1134
|
+
iiint: '∭',
|
|
1135
|
+
iinfin: '⧜',
|
|
1136
|
+
iiota: '℩',
|
|
1137
|
+
ijlig: 'ij',
|
|
1138
|
+
imacr: 'ī',
|
|
1139
|
+
image: 'ℑ',
|
|
1140
|
+
imagline: 'ℐ',
|
|
1141
|
+
imagpart: 'ℑ',
|
|
1142
|
+
imath: 'ı',
|
|
1143
|
+
imof: '⊷',
|
|
1144
|
+
imped: 'Ƶ',
|
|
1145
|
+
in: '∈',
|
|
1146
|
+
incare: '℅',
|
|
1147
|
+
infin: '∞',
|
|
1148
|
+
infintie: '⧝',
|
|
1149
|
+
inodot: 'ı',
|
|
1150
|
+
int: '∫',
|
|
1151
|
+
intcal: '⊺',
|
|
1152
|
+
integers: 'ℤ',
|
|
1153
|
+
intercal: '⊺',
|
|
1154
|
+
intlarhk: '⨗',
|
|
1155
|
+
intprod: '⨼',
|
|
1156
|
+
iocy: 'ё',
|
|
1157
|
+
iogon: 'į',
|
|
1158
|
+
iopf: '𝕚',
|
|
1159
|
+
iota: 'ι',
|
|
1160
|
+
iprod: '⨼',
|
|
1161
|
+
iquest: '¿',
|
|
1162
|
+
iscr: '𝒾',
|
|
1163
|
+
isin: '∈',
|
|
1164
|
+
isinE: '⋹',
|
|
1165
|
+
isindot: '⋵',
|
|
1166
|
+
isins: '⋴',
|
|
1167
|
+
isinsv: '⋳',
|
|
1168
|
+
isinv: '∈',
|
|
1169
|
+
it: '',
|
|
1170
|
+
itilde: 'ĩ',
|
|
1171
|
+
iukcy: 'і',
|
|
1172
|
+
iuml: 'ï',
|
|
1173
|
+
jcirc: 'ĵ',
|
|
1174
|
+
jcy: 'й',
|
|
1175
|
+
jfr: '𝔧',
|
|
1176
|
+
jmath: 'ȷ',
|
|
1177
|
+
jopf: '𝕛',
|
|
1178
|
+
jscr: '𝒿',
|
|
1179
|
+
jsercy: 'ј',
|
|
1180
|
+
jukcy: 'є',
|
|
1181
|
+
kappa: 'κ',
|
|
1182
|
+
kappav: 'ϰ',
|
|
1183
|
+
kcedil: 'ķ',
|
|
1184
|
+
kcy: 'к',
|
|
1185
|
+
kfr: '𝔨',
|
|
1186
|
+
kgreen: 'ĸ',
|
|
1187
|
+
khcy: 'х',
|
|
1188
|
+
kjcy: 'ќ',
|
|
1189
|
+
kopf: '𝕜',
|
|
1190
|
+
kscr: '𝓀',
|
|
1191
|
+
lAarr: '⇚',
|
|
1192
|
+
lArr: '⇐',
|
|
1193
|
+
lAtail: '⤛',
|
|
1194
|
+
lBarr: '⤎',
|
|
1195
|
+
lE: '≦',
|
|
1196
|
+
lEg: '⪋',
|
|
1197
|
+
lHar: '⥢',
|
|
1198
|
+
lacute: 'ĺ',
|
|
1199
|
+
laemptyv: '⦴',
|
|
1200
|
+
lagran: 'ℒ',
|
|
1201
|
+
lambda: 'λ',
|
|
1202
|
+
lang: '⟨',
|
|
1203
|
+
langd: '⦑',
|
|
1204
|
+
langle: '⟨',
|
|
1205
|
+
lap: '⪅',
|
|
1206
|
+
laquo: '«',
|
|
1207
|
+
larr: '←',
|
|
1208
|
+
larrb: '⇤',
|
|
1209
|
+
larrbfs: '⤟',
|
|
1210
|
+
larrfs: '⤝',
|
|
1211
|
+
larrhk: '↩',
|
|
1212
|
+
larrlp: '↫',
|
|
1213
|
+
larrpl: '⤹',
|
|
1214
|
+
larrsim: '⥳',
|
|
1215
|
+
larrtl: '↢',
|
|
1216
|
+
lat: '⪫',
|
|
1217
|
+
latail: '⤙',
|
|
1218
|
+
late: '⪭',
|
|
1219
|
+
lates: '⪭︀',
|
|
1220
|
+
lbarr: '⤌',
|
|
1221
|
+
lbbrk: '❲',
|
|
1222
|
+
lbrace: '{',
|
|
1223
|
+
lbrack: '[',
|
|
1224
|
+
lbrke: '⦋',
|
|
1225
|
+
lbrksld: '⦏',
|
|
1226
|
+
lbrkslu: '⦍',
|
|
1227
|
+
lcaron: 'ľ',
|
|
1228
|
+
lcedil: 'ļ',
|
|
1229
|
+
lceil: '⌈',
|
|
1230
|
+
lcub: '{',
|
|
1231
|
+
lcy: 'л',
|
|
1232
|
+
ldca: '⤶',
|
|
1233
|
+
ldquo: '“',
|
|
1234
|
+
ldquor: '„',
|
|
1235
|
+
ldrdhar: '⥧',
|
|
1236
|
+
ldrushar: '⥋',
|
|
1237
|
+
ldsh: '↲',
|
|
1238
|
+
le: '≤',
|
|
1239
|
+
leftarrow: '←',
|
|
1240
|
+
leftarrowtail: '↢',
|
|
1241
|
+
leftharpoondown: '↽',
|
|
1242
|
+
leftharpoonup: '↼',
|
|
1243
|
+
leftleftarrows: '⇇',
|
|
1244
|
+
leftrightarrow: '↔',
|
|
1245
|
+
leftrightarrows: '⇆',
|
|
1246
|
+
leftrightharpoons: '⇋',
|
|
1247
|
+
leftrightsquigarrow: '↭',
|
|
1248
|
+
leftthreetimes: '⋋',
|
|
1249
|
+
leg: '⋚',
|
|
1250
|
+
leq: '≤',
|
|
1251
|
+
leqq: '≦',
|
|
1252
|
+
leqslant: '⩽',
|
|
1253
|
+
les: '⩽',
|
|
1254
|
+
lescc: '⪨',
|
|
1255
|
+
lesdot: '⩿',
|
|
1256
|
+
lesdoto: '⪁',
|
|
1257
|
+
lesdotor: '⪃',
|
|
1258
|
+
lesg: '⋚︀',
|
|
1259
|
+
lesges: '⪓',
|
|
1260
|
+
lessapprox: '⪅',
|
|
1261
|
+
lessdot: '⋖',
|
|
1262
|
+
lesseqgtr: '⋚',
|
|
1263
|
+
lesseqqgtr: '⪋',
|
|
1264
|
+
lessgtr: '≶',
|
|
1265
|
+
lesssim: '≲',
|
|
1266
|
+
lfisht: '⥼',
|
|
1267
|
+
lfloor: '⌊',
|
|
1268
|
+
lfr: '𝔩',
|
|
1269
|
+
lg: '≶',
|
|
1270
|
+
lgE: '⪑',
|
|
1271
|
+
lhard: '↽',
|
|
1272
|
+
lharu: '↼',
|
|
1273
|
+
lharul: '⥪',
|
|
1274
|
+
lhblk: '▄',
|
|
1275
|
+
ljcy: 'љ',
|
|
1276
|
+
ll: '≪',
|
|
1277
|
+
llarr: '⇇',
|
|
1278
|
+
llcorner: '⌞',
|
|
1279
|
+
llhard: '⥫',
|
|
1280
|
+
lltri: '◺',
|
|
1281
|
+
lmidot: 'ŀ',
|
|
1282
|
+
lmoust: '⎰',
|
|
1283
|
+
lmoustache: '⎰',
|
|
1284
|
+
lnE: '≨',
|
|
1285
|
+
lnap: '⪉',
|
|
1286
|
+
lnapprox: '⪉',
|
|
1287
|
+
lne: '⪇',
|
|
1288
|
+
lneq: '⪇',
|
|
1289
|
+
lneqq: '≨',
|
|
1290
|
+
lnsim: '⋦',
|
|
1291
|
+
loang: '⟬',
|
|
1292
|
+
loarr: '⇽',
|
|
1293
|
+
lobrk: '⟦',
|
|
1294
|
+
longleftarrow: '⟵',
|
|
1295
|
+
longleftrightarrow: '⟷',
|
|
1296
|
+
longmapsto: '⟼',
|
|
1297
|
+
longrightarrow: '⟶',
|
|
1298
|
+
looparrowleft: '↫',
|
|
1299
|
+
looparrowright: '↬',
|
|
1300
|
+
lopar: '⦅',
|
|
1301
|
+
lopf: '𝕝',
|
|
1302
|
+
loplus: '⨭',
|
|
1303
|
+
lotimes: '⨴',
|
|
1304
|
+
lowast: '∗',
|
|
1305
|
+
lowbar: '_',
|
|
1306
|
+
loz: '◊',
|
|
1307
|
+
lozenge: '◊',
|
|
1308
|
+
lozf: '⧫',
|
|
1309
|
+
lpar: '(',
|
|
1310
|
+
lparlt: '⦓',
|
|
1311
|
+
lrarr: '⇆',
|
|
1312
|
+
lrcorner: '⌟',
|
|
1313
|
+
lrhar: '⇋',
|
|
1314
|
+
lrhard: '⥭',
|
|
1315
|
+
lrm: '',
|
|
1316
|
+
lrtri: '⊿',
|
|
1317
|
+
lsaquo: '‹',
|
|
1318
|
+
lscr: '𝓁',
|
|
1319
|
+
lsh: '↰',
|
|
1320
|
+
lsim: '≲',
|
|
1321
|
+
lsime: '⪍',
|
|
1322
|
+
lsimg: '⪏',
|
|
1323
|
+
lsqb: '[',
|
|
1324
|
+
lsquo: '‘',
|
|
1325
|
+
lsquor: '‚',
|
|
1326
|
+
lstrok: 'ł',
|
|
1327
|
+
lt: '<',
|
|
1328
|
+
ltcc: '⪦',
|
|
1329
|
+
ltcir: '⩹',
|
|
1330
|
+
ltdot: '⋖',
|
|
1331
|
+
lthree: '⋋',
|
|
1332
|
+
ltimes: '⋉',
|
|
1333
|
+
ltlarr: '⥶',
|
|
1334
|
+
ltquest: '⩻',
|
|
1335
|
+
ltrPar: '⦖',
|
|
1336
|
+
ltri: '◃',
|
|
1337
|
+
ltrie: '⊴',
|
|
1338
|
+
ltrif: '◂',
|
|
1339
|
+
lurdshar: '⥊',
|
|
1340
|
+
luruhar: '⥦',
|
|
1341
|
+
lvertneqq: '≨︀',
|
|
1342
|
+
lvnE: '≨︀',
|
|
1343
|
+
mDDot: '∺',
|
|
1344
|
+
macr: '¯',
|
|
1345
|
+
male: '♂',
|
|
1346
|
+
malt: '✠',
|
|
1347
|
+
maltese: '✠',
|
|
1348
|
+
map: '↦',
|
|
1349
|
+
mapsto: '↦',
|
|
1350
|
+
mapstodown: '↧',
|
|
1351
|
+
mapstoleft: '↤',
|
|
1352
|
+
mapstoup: '↥',
|
|
1353
|
+
marker: '▮',
|
|
1354
|
+
mcomma: '⨩',
|
|
1355
|
+
mcy: 'м',
|
|
1356
|
+
mdash: '—',
|
|
1357
|
+
measuredangle: '∡',
|
|
1358
|
+
mfr: '𝔪',
|
|
1359
|
+
mho: '℧',
|
|
1360
|
+
micro: 'µ',
|
|
1361
|
+
mid: '∣',
|
|
1362
|
+
midast: '*',
|
|
1363
|
+
midcir: '⫰',
|
|
1364
|
+
middot: '·',
|
|
1365
|
+
minus: '−',
|
|
1366
|
+
minusb: '⊟',
|
|
1367
|
+
minusd: '∸',
|
|
1368
|
+
minusdu: '⨪',
|
|
1369
|
+
mlcp: '⫛',
|
|
1370
|
+
mldr: '…',
|
|
1371
|
+
mnplus: '∓',
|
|
1372
|
+
models: '⊧',
|
|
1373
|
+
mopf: '𝕞',
|
|
1374
|
+
mp: '∓',
|
|
1375
|
+
mscr: '𝓂',
|
|
1376
|
+
mstpos: '∾',
|
|
1377
|
+
mu: 'μ',
|
|
1378
|
+
multimap: '⊸',
|
|
1379
|
+
mumap: '⊸',
|
|
1380
|
+
nGg: '⋙̸',
|
|
1381
|
+
nGt: '≫⃒',
|
|
1382
|
+
nGtv: '≫̸',
|
|
1383
|
+
nLeftarrow: '⇍',
|
|
1384
|
+
nLeftrightarrow: '⇎',
|
|
1385
|
+
nLl: '⋘̸',
|
|
1386
|
+
nLt: '≪⃒',
|
|
1387
|
+
nLtv: '≪̸',
|
|
1388
|
+
nRightarrow: '⇏',
|
|
1389
|
+
nVDash: '⊯',
|
|
1390
|
+
nVdash: '⊮',
|
|
1391
|
+
nabla: '∇',
|
|
1392
|
+
nacute: 'ń',
|
|
1393
|
+
nang: '∠⃒',
|
|
1394
|
+
nap: '≉',
|
|
1395
|
+
napE: '⩰̸',
|
|
1396
|
+
napid: '≋̸',
|
|
1397
|
+
napos: 'ʼn',
|
|
1398
|
+
napprox: '≉',
|
|
1399
|
+
natur: '♮',
|
|
1400
|
+
natural: '♮',
|
|
1401
|
+
naturals: 'ℕ',
|
|
1402
|
+
nbsp: ' ',
|
|
1403
|
+
nbump: '≎̸',
|
|
1404
|
+
nbumpe: '≏̸',
|
|
1405
|
+
ncap: '⩃',
|
|
1406
|
+
ncaron: 'ň',
|
|
1407
|
+
ncedil: 'ņ',
|
|
1408
|
+
ncong: '≇',
|
|
1409
|
+
ncongdot: '⩭̸',
|
|
1410
|
+
ncup: '⩂',
|
|
1411
|
+
ncy: 'н',
|
|
1412
|
+
ndash: '–',
|
|
1413
|
+
ne: '≠',
|
|
1414
|
+
neArr: '⇗',
|
|
1415
|
+
nearhk: '⤤',
|
|
1416
|
+
nearr: '↗',
|
|
1417
|
+
nearrow: '↗',
|
|
1418
|
+
nedot: '≐̸',
|
|
1419
|
+
nequiv: '≢',
|
|
1420
|
+
nesear: '⤨',
|
|
1421
|
+
nesim: '≂̸',
|
|
1422
|
+
nexist: '∄',
|
|
1423
|
+
nexists: '∄',
|
|
1424
|
+
nfr: '𝔫',
|
|
1425
|
+
ngE: '≧̸',
|
|
1426
|
+
nge: '≱',
|
|
1427
|
+
ngeq: '≱',
|
|
1428
|
+
ngeqq: '≧̸',
|
|
1429
|
+
ngeqslant: '⩾̸',
|
|
1430
|
+
nges: '⩾̸',
|
|
1431
|
+
ngsim: '≵',
|
|
1432
|
+
ngt: '≯',
|
|
1433
|
+
ngtr: '≯',
|
|
1434
|
+
nhArr: '⇎',
|
|
1435
|
+
nharr: '↮',
|
|
1436
|
+
nhpar: '⫲',
|
|
1437
|
+
ni: '∋',
|
|
1438
|
+
nis: '⋼',
|
|
1439
|
+
nisd: '⋺',
|
|
1440
|
+
niv: '∋',
|
|
1441
|
+
njcy: 'њ',
|
|
1442
|
+
nlArr: '⇍',
|
|
1443
|
+
nlE: '≦̸',
|
|
1444
|
+
nlarr: '↚',
|
|
1445
|
+
nldr: '‥',
|
|
1446
|
+
nle: '≰',
|
|
1447
|
+
nleftarrow: '↚',
|
|
1448
|
+
nleftrightarrow: '↮',
|
|
1449
|
+
nleq: '≰',
|
|
1450
|
+
nleqq: '≦̸',
|
|
1451
|
+
nleqslant: '⩽̸',
|
|
1452
|
+
nles: '⩽̸',
|
|
1453
|
+
nless: '≮',
|
|
1454
|
+
nlsim: '≴',
|
|
1455
|
+
nlt: '≮',
|
|
1456
|
+
nltri: '⋪',
|
|
1457
|
+
nltrie: '⋬',
|
|
1458
|
+
nmid: '∤',
|
|
1459
|
+
nopf: '𝕟',
|
|
1460
|
+
not: '¬',
|
|
1461
|
+
notin: '∉',
|
|
1462
|
+
notinE: '⋹̸',
|
|
1463
|
+
notindot: '⋵̸',
|
|
1464
|
+
notinva: '∉',
|
|
1465
|
+
notinvb: '⋷',
|
|
1466
|
+
notinvc: '⋶',
|
|
1467
|
+
notni: '∌',
|
|
1468
|
+
notniva: '∌',
|
|
1469
|
+
notnivb: '⋾',
|
|
1470
|
+
notnivc: '⋽',
|
|
1471
|
+
npar: '∦',
|
|
1472
|
+
nparallel: '∦',
|
|
1473
|
+
nparsl: '⫽⃥',
|
|
1474
|
+
npart: '∂̸',
|
|
1475
|
+
npolint: '⨔',
|
|
1476
|
+
npr: '⊀',
|
|
1477
|
+
nprcue: '⋠',
|
|
1478
|
+
npre: '⪯̸',
|
|
1479
|
+
nprec: '⊀',
|
|
1480
|
+
npreceq: '⪯̸',
|
|
1481
|
+
nrArr: '⇏',
|
|
1482
|
+
nrarr: '↛',
|
|
1483
|
+
nrarrc: '⤳̸',
|
|
1484
|
+
nrarrw: '↝̸',
|
|
1485
|
+
nrightarrow: '↛',
|
|
1486
|
+
nrtri: '⋫',
|
|
1487
|
+
nrtrie: '⋭',
|
|
1488
|
+
nsc: '⊁',
|
|
1489
|
+
nsccue: '⋡',
|
|
1490
|
+
nsce: '⪰̸',
|
|
1491
|
+
nscr: '𝓃',
|
|
1492
|
+
nshortmid: '∤',
|
|
1493
|
+
nshortparallel: '∦',
|
|
1494
|
+
nsim: '≁',
|
|
1495
|
+
nsime: '≄',
|
|
1496
|
+
nsimeq: '≄',
|
|
1497
|
+
nsmid: '∤',
|
|
1498
|
+
nspar: '∦',
|
|
1499
|
+
nsqsube: '⋢',
|
|
1500
|
+
nsqsupe: '⋣',
|
|
1501
|
+
nsub: '⊄',
|
|
1502
|
+
nsubE: '⫅̸',
|
|
1503
|
+
nsube: '⊈',
|
|
1504
|
+
nsubset: '⊂⃒',
|
|
1505
|
+
nsubseteq: '⊈',
|
|
1506
|
+
nsubseteqq: '⫅̸',
|
|
1507
|
+
nsucc: '⊁',
|
|
1508
|
+
nsucceq: '⪰̸',
|
|
1509
|
+
nsup: '⊅',
|
|
1510
|
+
nsupE: '⫆̸',
|
|
1511
|
+
nsupe: '⊉',
|
|
1512
|
+
nsupset: '⊃⃒',
|
|
1513
|
+
nsupseteq: '⊉',
|
|
1514
|
+
nsupseteqq: '⫆̸',
|
|
1515
|
+
ntgl: '≹',
|
|
1516
|
+
ntilde: 'ñ',
|
|
1517
|
+
ntlg: '≸',
|
|
1518
|
+
ntriangleleft: '⋪',
|
|
1519
|
+
ntrianglelefteq: '⋬',
|
|
1520
|
+
ntriangleright: '⋫',
|
|
1521
|
+
ntrianglerighteq: '⋭',
|
|
1522
|
+
nu: 'ν',
|
|
1523
|
+
num: '#',
|
|
1524
|
+
numero: '№',
|
|
1525
|
+
numsp: ' ',
|
|
1526
|
+
nvDash: '⊭',
|
|
1527
|
+
nvHarr: '⤄',
|
|
1528
|
+
nvap: '≍⃒',
|
|
1529
|
+
nvdash: '⊬',
|
|
1530
|
+
nvge: '≥⃒',
|
|
1531
|
+
nvgt: '>⃒',
|
|
1532
|
+
nvinfin: '⧞',
|
|
1533
|
+
nvlArr: '⤂',
|
|
1534
|
+
nvle: '≤⃒',
|
|
1535
|
+
nvlt: '<⃒',
|
|
1536
|
+
nvltrie: '⊴⃒',
|
|
1537
|
+
nvrArr: '⤃',
|
|
1538
|
+
nvrtrie: '⊵⃒',
|
|
1539
|
+
nvsim: '∼⃒',
|
|
1540
|
+
nwArr: '⇖',
|
|
1541
|
+
nwarhk: '⤣',
|
|
1542
|
+
nwarr: '↖',
|
|
1543
|
+
nwarrow: '↖',
|
|
1544
|
+
nwnear: '⤧',
|
|
1545
|
+
oS: 'Ⓢ',
|
|
1546
|
+
oacute: 'ó',
|
|
1547
|
+
oast: '⊛',
|
|
1548
|
+
ocir: '⊚',
|
|
1549
|
+
ocirc: 'ô',
|
|
1550
|
+
ocy: 'о',
|
|
1551
|
+
odash: '⊝',
|
|
1552
|
+
odblac: 'ő',
|
|
1553
|
+
odiv: '⨸',
|
|
1554
|
+
odot: '⊙',
|
|
1555
|
+
odsold: '⦼',
|
|
1556
|
+
oelig: 'œ',
|
|
1557
|
+
ofcir: '⦿',
|
|
1558
|
+
ofr: '𝔬',
|
|
1559
|
+
ogon: '˛',
|
|
1560
|
+
ograve: 'ò',
|
|
1561
|
+
ogt: '⧁',
|
|
1562
|
+
ohbar: '⦵',
|
|
1563
|
+
ohm: 'Ω',
|
|
1564
|
+
oint: '∮',
|
|
1565
|
+
olarr: '↺',
|
|
1566
|
+
olcir: '⦾',
|
|
1567
|
+
olcross: '⦻',
|
|
1568
|
+
oline: '‾',
|
|
1569
|
+
olt: '⧀',
|
|
1570
|
+
omacr: 'ō',
|
|
1571
|
+
omega: 'ω',
|
|
1572
|
+
omicron: 'ο',
|
|
1573
|
+
omid: '⦶',
|
|
1574
|
+
ominus: '⊖',
|
|
1575
|
+
oopf: '𝕠',
|
|
1576
|
+
opar: '⦷',
|
|
1577
|
+
operp: '⦹',
|
|
1578
|
+
oplus: '⊕',
|
|
1579
|
+
or: '∨',
|
|
1580
|
+
orarr: '↻',
|
|
1581
|
+
ord: '⩝',
|
|
1582
|
+
order: 'ℴ',
|
|
1583
|
+
orderof: 'ℴ',
|
|
1584
|
+
ordf: 'ª',
|
|
1585
|
+
ordm: 'º',
|
|
1586
|
+
origof: '⊶',
|
|
1587
|
+
oror: '⩖',
|
|
1588
|
+
orslope: '⩗',
|
|
1589
|
+
orv: '⩛',
|
|
1590
|
+
oscr: 'ℴ',
|
|
1591
|
+
oslash: 'ø',
|
|
1592
|
+
osol: '⊘',
|
|
1593
|
+
otilde: 'õ',
|
|
1594
|
+
otimes: '⊗',
|
|
1595
|
+
otimesas: '⨶',
|
|
1596
|
+
ouml: 'ö',
|
|
1597
|
+
ovbar: '⌽',
|
|
1598
|
+
par: '∥',
|
|
1599
|
+
para: '¶',
|
|
1600
|
+
parallel: '∥',
|
|
1601
|
+
parsim: '⫳',
|
|
1602
|
+
parsl: '⫽',
|
|
1603
|
+
part: '∂',
|
|
1604
|
+
pcy: 'п',
|
|
1605
|
+
percnt: '%',
|
|
1606
|
+
period: '.',
|
|
1607
|
+
permil: '‰',
|
|
1608
|
+
perp: '⊥',
|
|
1609
|
+
pertenk: '‱',
|
|
1610
|
+
pfr: '𝔭',
|
|
1611
|
+
phi: 'φ',
|
|
1612
|
+
phiv: 'ϕ',
|
|
1613
|
+
phmmat: 'ℳ',
|
|
1614
|
+
phone: '☎',
|
|
1615
|
+
pi: 'π',
|
|
1616
|
+
pitchfork: '⋔',
|
|
1617
|
+
piv: 'ϖ',
|
|
1618
|
+
planck: 'ℏ',
|
|
1619
|
+
planckh: 'ℎ',
|
|
1620
|
+
plankv: 'ℏ',
|
|
1621
|
+
plus: '+',
|
|
1622
|
+
plusacir: '⨣',
|
|
1623
|
+
plusb: '⊞',
|
|
1624
|
+
pluscir: '⨢',
|
|
1625
|
+
plusdo: '∔',
|
|
1626
|
+
plusdu: '⨥',
|
|
1627
|
+
pluse: '⩲',
|
|
1628
|
+
plusmn: '±',
|
|
1629
|
+
plussim: '⨦',
|
|
1630
|
+
plustwo: '⨧',
|
|
1631
|
+
pm: '±',
|
|
1632
|
+
pointint: '⨕',
|
|
1633
|
+
popf: '𝕡',
|
|
1634
|
+
pound: '£',
|
|
1635
|
+
pr: '≺',
|
|
1636
|
+
prE: '⪳',
|
|
1637
|
+
prap: '⪷',
|
|
1638
|
+
prcue: '≼',
|
|
1639
|
+
pre: '⪯',
|
|
1640
|
+
prec: '≺',
|
|
1641
|
+
precapprox: '⪷',
|
|
1642
|
+
preccurlyeq: '≼',
|
|
1643
|
+
preceq: '⪯',
|
|
1644
|
+
precnapprox: '⪹',
|
|
1645
|
+
precneqq: '⪵',
|
|
1646
|
+
precnsim: '⋨',
|
|
1647
|
+
precsim: '≾',
|
|
1648
|
+
prime: '′',
|
|
1649
|
+
primes: 'ℙ',
|
|
1650
|
+
prnE: '⪵',
|
|
1651
|
+
prnap: '⪹',
|
|
1652
|
+
prnsim: '⋨',
|
|
1653
|
+
prod: '∏',
|
|
1654
|
+
profalar: '⌮',
|
|
1655
|
+
profline: '⌒',
|
|
1656
|
+
profsurf: '⌓',
|
|
1657
|
+
prop: '∝',
|
|
1658
|
+
propto: '∝',
|
|
1659
|
+
prsim: '≾',
|
|
1660
|
+
prurel: '⊰',
|
|
1661
|
+
pscr: '𝓅',
|
|
1662
|
+
psi: 'ψ',
|
|
1663
|
+
puncsp: ' ',
|
|
1664
|
+
qfr: '𝔮',
|
|
1665
|
+
qint: '⨌',
|
|
1666
|
+
qopf: '𝕢',
|
|
1667
|
+
qprime: '⁗',
|
|
1668
|
+
qscr: '𝓆',
|
|
1669
|
+
quaternions: 'ℍ',
|
|
1670
|
+
quatint: '⨖',
|
|
1671
|
+
quest: '?',
|
|
1672
|
+
questeq: '≟',
|
|
1673
|
+
quot: '"',
|
|
1674
|
+
rAarr: '⇛',
|
|
1675
|
+
rArr: '⇒',
|
|
1676
|
+
rAtail: '⤜',
|
|
1677
|
+
rBarr: '⤏',
|
|
1678
|
+
rHar: '⥤',
|
|
1679
|
+
race: '∽̱',
|
|
1680
|
+
racute: 'ŕ',
|
|
1681
|
+
radic: '√',
|
|
1682
|
+
raemptyv: '⦳',
|
|
1683
|
+
rang: '⟩',
|
|
1684
|
+
rangd: '⦒',
|
|
1685
|
+
range: '⦥',
|
|
1686
|
+
rangle: '⟩',
|
|
1687
|
+
raquo: '»',
|
|
1688
|
+
rarr: '→',
|
|
1689
|
+
rarrap: '⥵',
|
|
1690
|
+
rarrb: '⇥',
|
|
1691
|
+
rarrbfs: '⤠',
|
|
1692
|
+
rarrc: '⤳',
|
|
1693
|
+
rarrfs: '⤞',
|
|
1694
|
+
rarrhk: '↪',
|
|
1695
|
+
rarrlp: '↬',
|
|
1696
|
+
rarrpl: '⥅',
|
|
1697
|
+
rarrsim: '⥴',
|
|
1698
|
+
rarrtl: '↣',
|
|
1699
|
+
rarrw: '↝',
|
|
1700
|
+
ratail: '⤚',
|
|
1701
|
+
ratio: '∶',
|
|
1702
|
+
rationals: 'ℚ',
|
|
1703
|
+
rbarr: '⤍',
|
|
1704
|
+
rbbrk: '❳',
|
|
1705
|
+
rbrace: '}',
|
|
1706
|
+
rbrack: ']',
|
|
1707
|
+
rbrke: '⦌',
|
|
1708
|
+
rbrksld: '⦎',
|
|
1709
|
+
rbrkslu: '⦐',
|
|
1710
|
+
rcaron: 'ř',
|
|
1711
|
+
rcedil: 'ŗ',
|
|
1712
|
+
rceil: '⌉',
|
|
1713
|
+
rcub: '}',
|
|
1714
|
+
rcy: 'р',
|
|
1715
|
+
rdca: '⤷',
|
|
1716
|
+
rdldhar: '⥩',
|
|
1717
|
+
rdquo: '”',
|
|
1718
|
+
rdquor: '”',
|
|
1719
|
+
rdsh: '↳',
|
|
1720
|
+
real: 'ℜ',
|
|
1721
|
+
realine: 'ℛ',
|
|
1722
|
+
realpart: 'ℜ',
|
|
1723
|
+
reals: 'ℝ',
|
|
1724
|
+
rect: '▭',
|
|
1725
|
+
reg: '®',
|
|
1726
|
+
rfisht: '⥽',
|
|
1727
|
+
rfloor: '⌋',
|
|
1728
|
+
rfr: '𝔯',
|
|
1729
|
+
rhard: '⇁',
|
|
1730
|
+
rharu: '⇀',
|
|
1731
|
+
rharul: '⥬',
|
|
1732
|
+
rho: 'ρ',
|
|
1733
|
+
rhov: 'ϱ',
|
|
1734
|
+
rightarrow: '→',
|
|
1735
|
+
rightarrowtail: '↣',
|
|
1736
|
+
rightharpoondown: '⇁',
|
|
1737
|
+
rightharpoonup: '⇀',
|
|
1738
|
+
rightleftarrows: '⇄',
|
|
1739
|
+
rightleftharpoons: '⇌',
|
|
1740
|
+
rightrightarrows: '⇉',
|
|
1741
|
+
rightsquigarrow: '↝',
|
|
1742
|
+
rightthreetimes: '⋌',
|
|
1743
|
+
ring: '˚',
|
|
1744
|
+
risingdotseq: '≓',
|
|
1745
|
+
rlarr: '⇄',
|
|
1746
|
+
rlhar: '⇌',
|
|
1747
|
+
rlm: '',
|
|
1748
|
+
rmoust: '⎱',
|
|
1749
|
+
rmoustache: '⎱',
|
|
1750
|
+
rnmid: '⫮',
|
|
1751
|
+
roang: '⟭',
|
|
1752
|
+
roarr: '⇾',
|
|
1753
|
+
robrk: '⟧',
|
|
1754
|
+
ropar: '⦆',
|
|
1755
|
+
ropf: '𝕣',
|
|
1756
|
+
roplus: '⨮',
|
|
1757
|
+
rotimes: '⨵',
|
|
1758
|
+
rpar: ')',
|
|
1759
|
+
rpargt: '⦔',
|
|
1760
|
+
rppolint: '⨒',
|
|
1761
|
+
rrarr: '⇉',
|
|
1762
|
+
rsaquo: '›',
|
|
1763
|
+
rscr: '𝓇',
|
|
1764
|
+
rsh: '↱',
|
|
1765
|
+
rsqb: ']',
|
|
1766
|
+
rsquo: '’',
|
|
1767
|
+
rsquor: '’',
|
|
1768
|
+
rthree: '⋌',
|
|
1769
|
+
rtimes: '⋊',
|
|
1770
|
+
rtri: '▹',
|
|
1771
|
+
rtrie: '⊵',
|
|
1772
|
+
rtrif: '▸',
|
|
1773
|
+
rtriltri: '⧎',
|
|
1774
|
+
ruluhar: '⥨',
|
|
1775
|
+
rx: '℞',
|
|
1776
|
+
sacute: 'ś',
|
|
1777
|
+
sbquo: '‚',
|
|
1778
|
+
sc: '≻',
|
|
1779
|
+
scE: '⪴',
|
|
1780
|
+
scap: '⪸',
|
|
1781
|
+
scaron: 'š',
|
|
1782
|
+
sccue: '≽',
|
|
1783
|
+
sce: '⪰',
|
|
1784
|
+
scedil: 'ş',
|
|
1785
|
+
scirc: 'ŝ',
|
|
1786
|
+
scnE: '⪶',
|
|
1787
|
+
scnap: '⪺',
|
|
1788
|
+
scnsim: '⋩',
|
|
1789
|
+
scpolint: '⨓',
|
|
1790
|
+
scsim: '≿',
|
|
1791
|
+
scy: 'с',
|
|
1792
|
+
sdot: '⋅',
|
|
1793
|
+
sdotb: '⊡',
|
|
1794
|
+
sdote: '⩦',
|
|
1795
|
+
seArr: '⇘',
|
|
1796
|
+
searhk: '⤥',
|
|
1797
|
+
searr: '↘',
|
|
1798
|
+
searrow: '↘',
|
|
1799
|
+
sect: '§',
|
|
1800
|
+
semi: ';',
|
|
1801
|
+
seswar: '⤩',
|
|
1802
|
+
setminus: '∖',
|
|
1803
|
+
setmn: '∖',
|
|
1804
|
+
sext: '✶',
|
|
1805
|
+
sfr: '𝔰',
|
|
1806
|
+
sfrown: '⌢',
|
|
1807
|
+
sharp: '♯',
|
|
1808
|
+
shchcy: 'щ',
|
|
1809
|
+
shcy: 'ш',
|
|
1810
|
+
shortmid: '∣',
|
|
1811
|
+
shortparallel: '∥',
|
|
1812
|
+
shy: '',
|
|
1813
|
+
sigma: 'σ',
|
|
1814
|
+
sigmaf: 'ς',
|
|
1815
|
+
sigmav: 'ς',
|
|
1816
|
+
sim: '∼',
|
|
1817
|
+
simdot: '⩪',
|
|
1818
|
+
sime: '≃',
|
|
1819
|
+
simeq: '≃',
|
|
1820
|
+
simg: '⪞',
|
|
1821
|
+
simgE: '⪠',
|
|
1822
|
+
siml: '⪝',
|
|
1823
|
+
simlE: '⪟',
|
|
1824
|
+
simne: '≆',
|
|
1825
|
+
simplus: '⨤',
|
|
1826
|
+
simrarr: '⥲',
|
|
1827
|
+
slarr: '←',
|
|
1828
|
+
smallsetminus: '∖',
|
|
1829
|
+
smashp: '⨳',
|
|
1830
|
+
smeparsl: '⧤',
|
|
1831
|
+
smid: '∣',
|
|
1832
|
+
smile: '⌣',
|
|
1833
|
+
smt: '⪪',
|
|
1834
|
+
smte: '⪬',
|
|
1835
|
+
smtes: '⪬︀',
|
|
1836
|
+
softcy: 'ь',
|
|
1837
|
+
sol: '/',
|
|
1838
|
+
solb: '⧄',
|
|
1839
|
+
solbar: '⌿',
|
|
1840
|
+
sopf: '𝕤',
|
|
1841
|
+
spades: '♠',
|
|
1842
|
+
spadesuit: '♠',
|
|
1843
|
+
spar: '∥',
|
|
1844
|
+
sqcap: '⊓',
|
|
1845
|
+
sqcaps: '⊓︀',
|
|
1846
|
+
sqcup: '⊔',
|
|
1847
|
+
sqcups: '⊔︀',
|
|
1848
|
+
sqsub: '⊏',
|
|
1849
|
+
sqsube: '⊑',
|
|
1850
|
+
sqsubset: '⊏',
|
|
1851
|
+
sqsubseteq: '⊑',
|
|
1852
|
+
sqsup: '⊐',
|
|
1853
|
+
sqsupe: '⊒',
|
|
1854
|
+
sqsupset: '⊐',
|
|
1855
|
+
sqsupseteq: '⊒',
|
|
1856
|
+
squ: '□',
|
|
1857
|
+
square: '□',
|
|
1858
|
+
squarf: '▪',
|
|
1859
|
+
squf: '▪',
|
|
1860
|
+
srarr: '→',
|
|
1861
|
+
sscr: '𝓈',
|
|
1862
|
+
ssetmn: '∖',
|
|
1863
|
+
ssmile: '⌣',
|
|
1864
|
+
sstarf: '⋆',
|
|
1865
|
+
star: '☆',
|
|
1866
|
+
starf: '★',
|
|
1867
|
+
straightepsilon: 'ϵ',
|
|
1868
|
+
straightphi: 'ϕ',
|
|
1869
|
+
strns: '¯',
|
|
1870
|
+
sub: '⊂',
|
|
1871
|
+
subE: '⫅',
|
|
1872
|
+
subdot: '⪽',
|
|
1873
|
+
sube: '⊆',
|
|
1874
|
+
subedot: '⫃',
|
|
1875
|
+
submult: '⫁',
|
|
1876
|
+
subnE: '⫋',
|
|
1877
|
+
subne: '⊊',
|
|
1878
|
+
subplus: '⪿',
|
|
1879
|
+
subrarr: '⥹',
|
|
1880
|
+
subset: '⊂',
|
|
1881
|
+
subseteq: '⊆',
|
|
1882
|
+
subseteqq: '⫅',
|
|
1883
|
+
subsetneq: '⊊',
|
|
1884
|
+
subsetneqq: '⫋',
|
|
1885
|
+
subsim: '⫇',
|
|
1886
|
+
subsub: '⫕',
|
|
1887
|
+
subsup: '⫓',
|
|
1888
|
+
succ: '≻',
|
|
1889
|
+
succapprox: '⪸',
|
|
1890
|
+
succcurlyeq: '≽',
|
|
1891
|
+
succeq: '⪰',
|
|
1892
|
+
succnapprox: '⪺',
|
|
1893
|
+
succneqq: '⪶',
|
|
1894
|
+
succnsim: '⋩',
|
|
1895
|
+
succsim: '≿',
|
|
1896
|
+
sum: '∑',
|
|
1897
|
+
sung: '♪',
|
|
1898
|
+
sup1: '¹',
|
|
1899
|
+
sup2: '²',
|
|
1900
|
+
sup3: '³',
|
|
1901
|
+
sup: '⊃',
|
|
1902
|
+
supE: '⫆',
|
|
1903
|
+
supdot: '⪾',
|
|
1904
|
+
supdsub: '⫘',
|
|
1905
|
+
supe: '⊇',
|
|
1906
|
+
supedot: '⫄',
|
|
1907
|
+
suphsol: '⟉',
|
|
1908
|
+
suphsub: '⫗',
|
|
1909
|
+
suplarr: '⥻',
|
|
1910
|
+
supmult: '⫂',
|
|
1911
|
+
supnE: '⫌',
|
|
1912
|
+
supne: '⊋',
|
|
1913
|
+
supplus: '⫀',
|
|
1914
|
+
supset: '⊃',
|
|
1915
|
+
supseteq: '⊇',
|
|
1916
|
+
supseteqq: '⫆',
|
|
1917
|
+
supsetneq: '⊋',
|
|
1918
|
+
supsetneqq: '⫌',
|
|
1919
|
+
supsim: '⫈',
|
|
1920
|
+
supsub: '⫔',
|
|
1921
|
+
supsup: '⫖',
|
|
1922
|
+
swArr: '⇙',
|
|
1923
|
+
swarhk: '⤦',
|
|
1924
|
+
swarr: '↙',
|
|
1925
|
+
swarrow: '↙',
|
|
1926
|
+
swnwar: '⤪',
|
|
1927
|
+
szlig: 'ß',
|
|
1928
|
+
target: '⌖',
|
|
1929
|
+
tau: 'τ',
|
|
1930
|
+
tbrk: '⎴',
|
|
1931
|
+
tcaron: 'ť',
|
|
1932
|
+
tcedil: 'ţ',
|
|
1933
|
+
tcy: 'т',
|
|
1934
|
+
tdot: '⃛',
|
|
1935
|
+
telrec: '⌕',
|
|
1936
|
+
tfr: '𝔱',
|
|
1937
|
+
there4: '∴',
|
|
1938
|
+
therefore: '∴',
|
|
1939
|
+
theta: 'θ',
|
|
1940
|
+
thetasym: 'ϑ',
|
|
1941
|
+
thetav: 'ϑ',
|
|
1942
|
+
thickapprox: '≈',
|
|
1943
|
+
thicksim: '∼',
|
|
1944
|
+
thinsp: ' ',
|
|
1945
|
+
thkap: '≈',
|
|
1946
|
+
thksim: '∼',
|
|
1947
|
+
thorn: 'þ',
|
|
1948
|
+
tilde: '˜',
|
|
1949
|
+
times: '×',
|
|
1950
|
+
timesb: '⊠',
|
|
1951
|
+
timesbar: '⨱',
|
|
1952
|
+
timesd: '⨰',
|
|
1953
|
+
tint: '∭',
|
|
1954
|
+
toea: '⤨',
|
|
1955
|
+
top: '⊤',
|
|
1956
|
+
topbot: '⌶',
|
|
1957
|
+
topcir: '⫱',
|
|
1958
|
+
topf: '𝕥',
|
|
1959
|
+
topfork: '⫚',
|
|
1960
|
+
tosa: '⤩',
|
|
1961
|
+
tprime: '‴',
|
|
1962
|
+
trade: '™',
|
|
1963
|
+
triangle: '▵',
|
|
1964
|
+
triangledown: '▿',
|
|
1965
|
+
triangleleft: '◃',
|
|
1966
|
+
trianglelefteq: '⊴',
|
|
1967
|
+
triangleq: '≜',
|
|
1968
|
+
triangleright: '▹',
|
|
1969
|
+
trianglerighteq: '⊵',
|
|
1970
|
+
tridot: '◬',
|
|
1971
|
+
trie: '≜',
|
|
1972
|
+
triminus: '⨺',
|
|
1973
|
+
triplus: '⨹',
|
|
1974
|
+
trisb: '⧍',
|
|
1975
|
+
tritime: '⨻',
|
|
1976
|
+
trpezium: '⏢',
|
|
1977
|
+
tscr: '𝓉',
|
|
1978
|
+
tscy: 'ц',
|
|
1979
|
+
tshcy: 'ћ',
|
|
1980
|
+
tstrok: 'ŧ',
|
|
1981
|
+
twixt: '≬',
|
|
1982
|
+
twoheadleftarrow: '↞',
|
|
1983
|
+
twoheadrightarrow: '↠',
|
|
1984
|
+
uArr: '⇑',
|
|
1985
|
+
uHar: '⥣',
|
|
1986
|
+
uacute: 'ú',
|
|
1987
|
+
uarr: '↑',
|
|
1988
|
+
ubrcy: 'ў',
|
|
1989
|
+
ubreve: 'ŭ',
|
|
1990
|
+
ucirc: 'û',
|
|
1991
|
+
ucy: 'у',
|
|
1992
|
+
udarr: '⇅',
|
|
1993
|
+
udblac: 'ű',
|
|
1994
|
+
udhar: '⥮',
|
|
1995
|
+
ufisht: '⥾',
|
|
1996
|
+
ufr: '𝔲',
|
|
1997
|
+
ugrave: 'ù',
|
|
1998
|
+
uharl: '↿',
|
|
1999
|
+
uharr: '↾',
|
|
2000
|
+
uhblk: '▀',
|
|
2001
|
+
ulcorn: '⌜',
|
|
2002
|
+
ulcorner: '⌜',
|
|
2003
|
+
ulcrop: '⌏',
|
|
2004
|
+
ultri: '◸',
|
|
2005
|
+
umacr: 'ū',
|
|
2006
|
+
uml: '¨',
|
|
2007
|
+
uogon: 'ų',
|
|
2008
|
+
uopf: '𝕦',
|
|
2009
|
+
uparrow: '↑',
|
|
2010
|
+
updownarrow: '↕',
|
|
2011
|
+
upharpoonleft: '↿',
|
|
2012
|
+
upharpoonright: '↾',
|
|
2013
|
+
uplus: '⊎',
|
|
2014
|
+
upsi: 'υ',
|
|
2015
|
+
upsih: 'ϒ',
|
|
2016
|
+
upsilon: 'υ',
|
|
2017
|
+
upuparrows: '⇈',
|
|
2018
|
+
urcorn: '⌝',
|
|
2019
|
+
urcorner: '⌝',
|
|
2020
|
+
urcrop: '⌎',
|
|
2021
|
+
uring: 'ů',
|
|
2022
|
+
urtri: '◹',
|
|
2023
|
+
uscr: '𝓊',
|
|
2024
|
+
utdot: '⋰',
|
|
2025
|
+
utilde: 'ũ',
|
|
2026
|
+
utri: '▵',
|
|
2027
|
+
utrif: '▴',
|
|
2028
|
+
uuarr: '⇈',
|
|
2029
|
+
uuml: 'ü',
|
|
2030
|
+
uwangle: '⦧',
|
|
2031
|
+
vArr: '⇕',
|
|
2032
|
+
vBar: '⫨',
|
|
2033
|
+
vBarv: '⫩',
|
|
2034
|
+
vDash: '⊨',
|
|
2035
|
+
vangrt: '⦜',
|
|
2036
|
+
varepsilon: 'ϵ',
|
|
2037
|
+
varkappa: 'ϰ',
|
|
2038
|
+
varnothing: '∅',
|
|
2039
|
+
varphi: 'ϕ',
|
|
2040
|
+
varpi: 'ϖ',
|
|
2041
|
+
varpropto: '∝',
|
|
2042
|
+
varr: '↕',
|
|
2043
|
+
varrho: 'ϱ',
|
|
2044
|
+
varsigma: 'ς',
|
|
2045
|
+
varsubsetneq: '⊊︀',
|
|
2046
|
+
varsubsetneqq: '⫋︀',
|
|
2047
|
+
varsupsetneq: '⊋︀',
|
|
2048
|
+
varsupsetneqq: '⫌︀',
|
|
2049
|
+
vartheta: 'ϑ',
|
|
2050
|
+
vartriangleleft: '⊲',
|
|
2051
|
+
vartriangleright: '⊳',
|
|
2052
|
+
vcy: 'в',
|
|
2053
|
+
vdash: '⊢',
|
|
2054
|
+
vee: '∨',
|
|
2055
|
+
veebar: '⊻',
|
|
2056
|
+
veeeq: '≚',
|
|
2057
|
+
vellip: '⋮',
|
|
2058
|
+
verbar: '|',
|
|
2059
|
+
vert: '|',
|
|
2060
|
+
vfr: '𝔳',
|
|
2061
|
+
vltri: '⊲',
|
|
2062
|
+
vnsub: '⊂⃒',
|
|
2063
|
+
vnsup: '⊃⃒',
|
|
2064
|
+
vopf: '𝕧',
|
|
2065
|
+
vprop: '∝',
|
|
2066
|
+
vrtri: '⊳',
|
|
2067
|
+
vscr: '𝓋',
|
|
2068
|
+
vsubnE: '⫋︀',
|
|
2069
|
+
vsubne: '⊊︀',
|
|
2070
|
+
vsupnE: '⫌︀',
|
|
2071
|
+
vsupne: '⊋︀',
|
|
2072
|
+
vzigzag: '⦚',
|
|
2073
|
+
wcirc: 'ŵ',
|
|
2074
|
+
wedbar: '⩟',
|
|
2075
|
+
wedge: '∧',
|
|
2076
|
+
wedgeq: '≙',
|
|
2077
|
+
weierp: '℘',
|
|
2078
|
+
wfr: '𝔴',
|
|
2079
|
+
wopf: '𝕨',
|
|
2080
|
+
wp: '℘',
|
|
2081
|
+
wr: '≀',
|
|
2082
|
+
wreath: '≀',
|
|
2083
|
+
wscr: '𝓌',
|
|
2084
|
+
xcap: '⋂',
|
|
2085
|
+
xcirc: '◯',
|
|
2086
|
+
xcup: '⋃',
|
|
2087
|
+
xdtri: '▽',
|
|
2088
|
+
xfr: '𝔵',
|
|
2089
|
+
xhArr: '⟺',
|
|
2090
|
+
xharr: '⟷',
|
|
2091
|
+
xi: 'ξ',
|
|
2092
|
+
xlArr: '⟸',
|
|
2093
|
+
xlarr: '⟵',
|
|
2094
|
+
xmap: '⟼',
|
|
2095
|
+
xnis: '⋻',
|
|
2096
|
+
xodot: '⨀',
|
|
2097
|
+
xopf: '𝕩',
|
|
2098
|
+
xoplus: '⨁',
|
|
2099
|
+
xotime: '⨂',
|
|
2100
|
+
xrArr: '⟹',
|
|
2101
|
+
xrarr: '⟶',
|
|
2102
|
+
xscr: '𝓍',
|
|
2103
|
+
xsqcup: '⨆',
|
|
2104
|
+
xuplus: '⨄',
|
|
2105
|
+
xutri: '△',
|
|
2106
|
+
xvee: '⋁',
|
|
2107
|
+
xwedge: '⋀',
|
|
2108
|
+
yacute: 'ý',
|
|
2109
|
+
yacy: 'я',
|
|
2110
|
+
ycirc: 'ŷ',
|
|
2111
|
+
ycy: 'ы',
|
|
2112
|
+
yen: '¥',
|
|
2113
|
+
yfr: '𝔶',
|
|
2114
|
+
yicy: 'ї',
|
|
2115
|
+
yopf: '𝕪',
|
|
2116
|
+
yscr: '𝓎',
|
|
2117
|
+
yucy: 'ю',
|
|
2118
|
+
yuml: 'ÿ',
|
|
2119
|
+
zacute: 'ź',
|
|
2120
|
+
zcaron: 'ž',
|
|
2121
|
+
zcy: 'з',
|
|
2122
|
+
zdot: 'ż',
|
|
2123
|
+
zeetrf: 'ℨ',
|
|
2124
|
+
zeta: 'ζ',
|
|
2125
|
+
zfr: '𝔷',
|
|
2126
|
+
zhcy: 'ж',
|
|
2127
|
+
zigrarr: '⇝',
|
|
2128
|
+
zopf: '𝕫',
|
|
2129
|
+
zscr: '𝓏',
|
|
2130
|
+
zwj: '',
|
|
2131
|
+
zwnj: ''
|
|
2132
|
+
}
|