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.
Files changed (4208) hide show
  1. package/README.md +60 -0
  2. package/dist/agent/infra/agent/cipher-agent.js +6 -0
  3. package/dist/agent/infra/agent/service-initializer.d.ts +13 -0
  4. package/dist/agent/infra/agent/service-initializer.js +2 -0
  5. package/dist/agent/infra/llm/agent-llm-service.js +2 -1
  6. package/dist/agent/infra/llm/generators/ai-sdk-abort-helper.d.ts +57 -0
  7. package/dist/agent/infra/llm/generators/ai-sdk-abort-helper.js +87 -0
  8. package/dist/agent/infra/llm/generators/ai-sdk-content-generator.d.ts +10 -0
  9. package/dist/agent/infra/llm/generators/ai-sdk-content-generator.js +90 -63
  10. package/dist/agent/infra/llm/providers/anthropic.js +1 -0
  11. package/dist/agent/infra/llm/providers/cerebras.js +1 -0
  12. package/dist/agent/infra/llm/providers/cohere.js +1 -0
  13. package/dist/agent/infra/llm/providers/deepinfra.js +1 -0
  14. package/dist/agent/infra/llm/providers/deepseek.js +1 -0
  15. package/dist/agent/infra/llm/providers/glm-coding-plan.js +1 -0
  16. package/dist/agent/infra/llm/providers/google.js +1 -0
  17. package/dist/agent/infra/llm/providers/groq.js +1 -0
  18. package/dist/agent/infra/llm/providers/minimax.js +1 -0
  19. package/dist/agent/infra/llm/providers/mistral.js +1 -0
  20. package/dist/agent/infra/llm/providers/openai-compatible.js +1 -0
  21. package/dist/agent/infra/llm/providers/openai.js +1 -0
  22. package/dist/agent/infra/llm/providers/perplexity.js +1 -0
  23. package/dist/agent/infra/llm/providers/togetherai.js +1 -0
  24. package/dist/agent/infra/llm/providers/types.d.ts +8 -1
  25. package/dist/agent/infra/llm/providers/xai.js +1 -0
  26. package/dist/agent/infra/session/session-manager.d.ts +2 -0
  27. package/dist/agent/infra/settings/agent-settings-snapshot.d.ts +17 -0
  28. package/dist/agent/infra/settings/agent-settings-snapshot.js +53 -0
  29. package/dist/oclif/commands/curate/index.js +7 -5
  30. package/dist/oclif/commands/dream.js +8 -7
  31. package/dist/oclif/commands/mcp.js +42 -17
  32. package/dist/oclif/commands/query.js +8 -4
  33. package/dist/oclif/commands/settings/get.d.ts +17 -0
  34. package/dist/oclif/commands/settings/get.js +96 -0
  35. package/dist/oclif/commands/settings/index.d.ts +13 -0
  36. package/dist/oclif/commands/settings/index.js +106 -0
  37. package/dist/oclif/commands/settings/list.d.ts +5 -0
  38. package/dist/oclif/commands/settings/list.js +8 -0
  39. package/dist/oclif/commands/settings/reset.d.ts +16 -0
  40. package/dist/oclif/commands/settings/reset.js +81 -0
  41. package/dist/oclif/commands/settings/set.d.ts +17 -0
  42. package/dist/oclif/commands/settings/set.js +131 -0
  43. package/dist/oclif/lib/mcp-cleanup.d.ts +10 -0
  44. package/dist/oclif/lib/mcp-cleanup.js +28 -0
  45. package/dist/oclif/lib/mcp-crash-handler.d.ts +23 -0
  46. package/dist/oclif/lib/mcp-crash-handler.js +69 -0
  47. package/dist/oclif/lib/task-client.d.ts +4 -6
  48. package/dist/oclif/lib/task-client.js +92 -20
  49. package/dist/oclif/lib/timeout-deprecation.d.ts +31 -0
  50. package/dist/oclif/lib/timeout-deprecation.js +33 -0
  51. package/dist/server/constants.d.ts +5 -0
  52. package/dist/server/constants.js +15 -0
  53. package/dist/server/core/domain/entities/settings.d.ts +55 -0
  54. package/dist/server/core/domain/entities/settings.js +71 -0
  55. package/dist/server/core/interfaces/storage/i-settings-store.d.ts +43 -0
  56. package/dist/server/core/interfaces/storage/i-settings-store.js +1 -0
  57. package/dist/server/infra/daemon/agent-process.js +9 -1
  58. package/dist/server/infra/daemon/brv-server.js +34 -21
  59. package/dist/server/infra/daemon/settings-bootstrap.d.ts +25 -0
  60. package/dist/server/infra/daemon/settings-bootstrap.js +23 -0
  61. package/dist/server/infra/git/isomorphic-git-service.d.ts +14 -1
  62. package/dist/server/infra/git/isomorphic-git-service.js +57 -9
  63. package/dist/server/infra/mcp/mcp-server.d.ts +5 -1
  64. package/dist/server/infra/mcp/mcp-server.js +10 -1
  65. package/dist/server/infra/process/feature-handlers.d.ts +3 -1
  66. package/dist/server/infra/process/feature-handlers.js +4 -3
  67. package/dist/server/infra/process/task-heartbeat-manager.d.ts +51 -0
  68. package/dist/server/infra/process/task-heartbeat-manager.js +83 -0
  69. package/dist/server/infra/process/task-history-store-cache.d.ts +8 -0
  70. package/dist/server/infra/process/task-history-store-cache.js +21 -1
  71. package/dist/server/infra/process/task-router.d.ts +10 -0
  72. package/dist/server/infra/process/task-router.js +13 -0
  73. package/dist/server/infra/process/transport-handlers.d.ts +6 -0
  74. package/dist/server/infra/process/transport-handlers.js +1 -0
  75. package/dist/server/infra/storage/file-settings-store.d.ts +28 -0
  76. package/dist/server/infra/storage/file-settings-store.js +132 -0
  77. package/dist/server/infra/storage/settings-validator.d.ts +56 -0
  78. package/dist/server/infra/storage/settings-validator.js +124 -0
  79. package/dist/server/infra/transport/handlers/index.d.ts +2 -0
  80. package/dist/server/infra/transport/handlers/index.js +1 -0
  81. package/dist/server/infra/transport/handlers/push-handler.js +3 -6
  82. package/dist/server/infra/transport/handlers/review-handler.d.ts +1 -0
  83. package/dist/server/infra/transport/handlers/review-handler.js +53 -8
  84. package/dist/server/infra/transport/handlers/settings-handler.d.ts +18 -0
  85. package/dist/server/infra/transport/handlers/settings-handler.js +94 -0
  86. package/dist/server/infra/transport/handlers/status-handler.js +3 -4
  87. package/dist/server/infra/transport/handlers/vc-handler.js +10 -4
  88. package/dist/server/templates/skill/SKILL.md +3 -3
  89. package/dist/server/utils/base64url.d.ts +2 -0
  90. package/dist/server/utils/base64url.js +6 -0
  91. package/dist/server/utils/build-review-url.d.ts +1 -0
  92. package/dist/server/utils/build-review-url.js +4 -0
  93. package/dist/shared/transport/events/context-tree-events.d.ts +4 -1
  94. package/dist/shared/transport/events/index.d.ts +8 -0
  95. package/dist/shared/transport/events/index.js +3 -0
  96. package/dist/shared/transport/events/review-events.d.ts +24 -1
  97. package/dist/shared/transport/events/review-events.js +1 -0
  98. package/dist/shared/transport/events/settings-events.d.ts +70 -0
  99. package/dist/shared/transport/events/settings-events.js +6 -0
  100. package/dist/shared/transport/events/task-events.d.ts +11 -0
  101. package/dist/shared/transport/events/task-events.js +1 -0
  102. package/dist/shared/types/settings-row.d.ts +28 -0
  103. package/dist/shared/types/settings-row.js +1 -0
  104. package/dist/shared/utils/format-duration.d.ts +43 -0
  105. package/dist/shared/utils/format-duration.js +108 -0
  106. package/dist/shared/utils/format-settings.d.ts +4 -0
  107. package/dist/shared/utils/format-settings.js +75 -0
  108. package/dist/tui/features/activity/hooks/use-activity-logs.js +1 -1
  109. package/dist/tui/features/commands/definitions/index.js +3 -0
  110. package/dist/tui/features/commands/definitions/settings.d.ts +2 -0
  111. package/dist/tui/features/commands/definitions/settings.js +11 -0
  112. package/dist/tui/features/settings/api/settings-api.d.ts +30 -0
  113. package/dist/tui/features/settings/api/settings-api.js +49 -0
  114. package/dist/tui/features/settings/components/settings-page.d.ts +3 -0
  115. package/dist/tui/features/settings/components/settings-page.js +152 -0
  116. package/dist/tui/features/settings/utils/format-settings.d.ts +12 -0
  117. package/dist/tui/features/settings/utils/format-settings.js +59 -0
  118. package/dist/tui/features/tasks/stores/tasks-store.d.ts +1 -1
  119. package/dist/webui/assets/antigravity-connector-DgAQAdn3.svg +1 -0
  120. package/dist/webui/assets/hermes-connector-CgLB73DY.svg +1 -0
  121. package/dist/webui/assets/index-7dsrsbU1.js +130 -0
  122. package/dist/webui/assets/index-r3wVsmem.css +1 -0
  123. package/dist/webui/assets/qoder-connector-Dy7h8E12.svg +1 -0
  124. package/dist/webui/index.html +2 -2
  125. package/dist/webui/sw.js +1 -1
  126. package/node_modules/@campfirein/byterover-packages/package.json +9 -0
  127. package/node_modules/@campfirein/byterover-packages/ui/package.json +11 -1
  128. package/node_modules/@campfirein/byterover-packages/{scripts → ui/scripts}/sync-deps.js +11 -4
  129. package/node_modules/@campfirein/byterover-packages/ui/src/components/badge.tsx +12 -12
  130. package/node_modules/@campfirein/byterover-packages/ui/src/components/collapsible.tsx +21 -0
  131. package/node_modules/@campfirein/byterover-packages/ui/src/components/contexts/detail-body.tsx +12 -7
  132. package/node_modules/@campfirein/byterover-packages/ui/src/components/contexts/folder-detail.tsx +2 -6
  133. package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/diff-line.tsx +68 -0
  134. package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/file-block.tsx +287 -0
  135. package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/highlight-words.ts +53 -0
  136. package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/hunk-header.tsx +111 -0
  137. package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/hunk-pair.tsx +98 -0
  138. package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/hunk-unified.tsx +114 -0
  139. package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/index.tsx +90 -0
  140. package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/is-prose-file.ts +9 -0
  141. package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/styles.ts +20 -0
  142. package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/types.ts +68 -0
  143. package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view/use-expand-state.ts +177 -0
  144. package/node_modules/@campfirein/byterover-packages/ui/src/components/diff-view.tsx +10 -0
  145. package/node_modules/@campfirein/byterover-packages/ui/src/components/switch.tsx +2 -2
  146. package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-callout.tsx +82 -0
  147. package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-fact.tsx +30 -0
  148. package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-flow.tsx +10 -0
  149. package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-pattern.tsx +19 -0
  150. package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-rule.tsx +41 -0
  151. package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-section.tsx +33 -0
  152. package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-task.tsx +10 -0
  153. package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/bv-topic.tsx +318 -0
  154. package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/code-block.tsx +71 -0
  155. package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/dom-utils.ts +51 -0
  156. package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/editorial.css +773 -0
  157. package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/group.ts +55 -0
  158. package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/index.ts +3 -0
  159. package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/mermaid.tsx +62 -0
  160. package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/prose.css +124 -0
  161. package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/topic-editor.tsx +75 -0
  162. package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/topic-viewer.tsx +285 -0
  163. package/node_modules/@campfirein/byterover-packages/ui/src/components/topic-viewer/types.ts +44 -0
  164. package/node_modules/@campfirein/byterover-packages/ui/src/hooks/use-is-mac.ts +23 -0
  165. package/node_modules/@campfirein/byterover-packages/ui/src/lib/initials.ts +19 -0
  166. package/node_modules/@campfirein/byterover-packages/ui/src/lib/syntax-highlighter.ts +59 -0
  167. package/node_modules/@campfirein/byterover-packages/ui/src/styles/globals.css +96 -1
  168. package/node_modules/@types/hast/LICENSE +21 -0
  169. package/node_modules/@types/hast/README.md +15 -0
  170. package/node_modules/@types/hast/index.d.ts +282 -0
  171. package/node_modules/@types/hast/package.json +42 -0
  172. package/node_modules/@types/prismjs/LICENSE +21 -0
  173. package/node_modules/@types/prismjs/README.md +15 -0
  174. package/node_modules/@types/prismjs/components/index.d.ts +19 -0
  175. package/node_modules/@types/prismjs/components.d.ts +4 -0
  176. package/node_modules/@types/prismjs/dependencies.d.ts +35 -0
  177. package/node_modules/@types/prismjs/index.d.ts +402 -0
  178. package/node_modules/@types/prismjs/package.json +46 -0
  179. package/node_modules/@types/unist/LICENSE +21 -0
  180. package/node_modules/@types/unist/README.md +15 -0
  181. package/node_modules/@types/unist/index.d.ts +119 -0
  182. package/node_modules/@types/unist/package.json +60 -0
  183. package/node_modules/character-entities/index.d.ts +6 -0
  184. package/node_modules/character-entities/index.js +2132 -0
  185. package/node_modules/character-entities/license +22 -0
  186. package/node_modules/character-entities/package.json +78 -0
  187. package/node_modules/character-entities/readme.md +152 -0
  188. package/node_modules/character-entities-legacy/index.d.ts +6 -0
  189. package/node_modules/character-entities-legacy/index.js +113 -0
  190. package/node_modules/character-entities-legacy/license +22 -0
  191. package/node_modules/character-entities-legacy/package.json +77 -0
  192. package/node_modules/character-entities-legacy/readme.md +157 -0
  193. package/node_modules/character-reference-invalid/index.d.ts +6 -0
  194. package/node_modules/character-reference-invalid/index.js +35 -0
  195. package/node_modules/character-reference-invalid/license +22 -0
  196. package/node_modules/character-reference-invalid/package.json +83 -0
  197. package/node_modules/character-reference-invalid/readme.md +156 -0
  198. package/node_modules/comma-separated-tokens/index.d.ts +52 -0
  199. package/node_modules/comma-separated-tokens/index.js +74 -0
  200. package/node_modules/comma-separated-tokens/license +22 -0
  201. package/node_modules/comma-separated-tokens/package.json +72 -0
  202. package/node_modules/comma-separated-tokens/readme.md +167 -0
  203. package/node_modules/decode-named-character-reference/index.d.ts +13 -0
  204. package/node_modules/decode-named-character-reference/index.d.ts.map +1 -0
  205. package/node_modules/decode-named-character-reference/index.dom.d.ts +6 -0
  206. package/node_modules/decode-named-character-reference/index.dom.d.ts.map +1 -0
  207. package/node_modules/decode-named-character-reference/index.dom.js +36 -0
  208. package/node_modules/decode-named-character-reference/index.js +19 -0
  209. package/node_modules/decode-named-character-reference/license +22 -0
  210. package/node_modules/decode-named-character-reference/package.json +89 -0
  211. package/node_modules/decode-named-character-reference/readme.md +136 -0
  212. package/node_modules/diff/CONTRIBUTING.md +28 -0
  213. package/node_modules/diff/LICENSE +29 -0
  214. package/node_modules/diff/README.md +468 -0
  215. package/node_modules/diff/dist/diff.js +2313 -0
  216. package/node_modules/diff/dist/diff.min.js +1 -0
  217. package/node_modules/diff/eslint.config.mjs +182 -0
  218. package/node_modules/diff/libcjs/convert/dmp.d.ts +8 -0
  219. package/node_modules/diff/libcjs/convert/dmp.d.ts.map +1 -0
  220. package/node_modules/diff/libcjs/convert/dmp.js +24 -0
  221. package/node_modules/diff/libcjs/convert/xml.d.ts +6 -0
  222. package/node_modules/diff/libcjs/convert/xml.d.ts.map +1 -0
  223. package/node_modules/diff/libcjs/convert/xml.js +34 -0
  224. package/node_modules/diff/libcjs/diff/array.d.ts +19 -0
  225. package/node_modules/diff/libcjs/diff/array.d.ts.map +1 -0
  226. package/node_modules/diff/libcjs/diff/array.js +23 -0
  227. package/node_modules/diff/libcjs/diff/base.d.ts +20 -0
  228. package/node_modules/diff/libcjs/diff/base.d.ts.map +1 -0
  229. package/node_modules/diff/libcjs/diff/base.js +256 -0
  230. package/node_modules/diff/libcjs/diff/character.d.ts +19 -0
  231. package/node_modules/diff/libcjs/diff/character.d.ts.map +1 -0
  232. package/node_modules/diff/libcjs/diff/character.js +14 -0
  233. package/node_modules/diff/libcjs/diff/css.d.ts +18 -0
  234. package/node_modules/diff/libcjs/diff/css.d.ts.map +1 -0
  235. package/node_modules/diff/libcjs/diff/css.js +17 -0
  236. package/node_modules/diff/libcjs/diff/json.d.ts +24 -0
  237. package/node_modules/diff/libcjs/diff/json.d.ts.map +1 -0
  238. package/node_modules/diff/libcjs/diff/json.js +86 -0
  239. package/node_modules/diff/libcjs/diff/line.d.ts +24 -0
  240. package/node_modules/diff/libcjs/diff/line.d.ts.map +1 -0
  241. package/node_modules/diff/libcjs/diff/line.js +74 -0
  242. package/node_modules/diff/libcjs/diff/sentence.d.ts +21 -0
  243. package/node_modules/diff/libcjs/diff/sentence.d.ts.map +1 -0
  244. package/node_modules/diff/libcjs/diff/sentence.js +50 -0
  245. package/node_modules/diff/libcjs/diff/word.d.ts +35 -0
  246. package/node_modules/diff/libcjs/diff/word.d.ts.map +1 -0
  247. package/node_modules/diff/libcjs/diff/word.js +289 -0
  248. package/node_modules/diff/libcjs/index.d.ts +20 -0
  249. package/node_modules/diff/libcjs/index.d.ts.map +1 -0
  250. package/node_modules/diff/libcjs/index.js +67 -0
  251. package/node_modules/diff/libcjs/package.json +1 -0
  252. package/node_modules/diff/libcjs/patch/apply.d.ts +62 -0
  253. package/node_modules/diff/libcjs/patch/apply.d.ts.map +1 -0
  254. package/node_modules/diff/libcjs/patch/apply.js +264 -0
  255. package/node_modules/diff/libcjs/patch/create.d.ts +131 -0
  256. package/node_modules/diff/libcjs/patch/create.d.ts.map +1 -0
  257. package/node_modules/diff/libcjs/patch/create.js +364 -0
  258. package/node_modules/diff/libcjs/patch/line-endings.d.ts +17 -0
  259. package/node_modules/diff/libcjs/patch/line-endings.d.ts.map +1 -0
  260. package/node_modules/diff/libcjs/patch/line-endings.js +50 -0
  261. package/node_modules/diff/libcjs/patch/parse.d.ts +16 -0
  262. package/node_modules/diff/libcjs/patch/parse.d.ts.map +1 -0
  263. package/node_modules/diff/libcjs/patch/parse.js +515 -0
  264. package/node_modules/diff/libcjs/patch/reverse.d.ts +22 -0
  265. package/node_modules/diff/libcjs/patch/reverse.d.ts.map +1 -0
  266. package/node_modules/diff/libcjs/patch/reverse.js +63 -0
  267. package/node_modules/diff/libcjs/types.d.ts +260 -0
  268. package/node_modules/diff/libcjs/types.d.ts.map +1 -0
  269. package/node_modules/diff/libcjs/types.js +2 -0
  270. package/node_modules/diff/libcjs/util/array.d.ts +3 -0
  271. package/node_modules/diff/libcjs/util/array.d.ts.map +1 -0
  272. package/node_modules/diff/libcjs/util/array.js +21 -0
  273. package/node_modules/diff/libcjs/util/distance-iterator.d.ts +2 -0
  274. package/node_modules/diff/libcjs/util/distance-iterator.d.ts.map +1 -0
  275. package/node_modules/diff/libcjs/util/distance-iterator.js +40 -0
  276. package/node_modules/diff/libcjs/util/params.d.ts +4 -0
  277. package/node_modules/diff/libcjs/util/params.d.ts.map +1 -0
  278. package/node_modules/diff/libcjs/util/params.js +17 -0
  279. package/node_modules/diff/libcjs/util/string.d.ts +30 -0
  280. package/node_modules/diff/libcjs/util/string.d.ts.map +1 -0
  281. package/node_modules/diff/libcjs/util/string.js +199 -0
  282. package/node_modules/diff/libesm/convert/dmp.d.ts +8 -0
  283. package/node_modules/diff/libesm/convert/dmp.d.ts.map +1 -0
  284. package/node_modules/diff/libesm/convert/dmp.js +21 -0
  285. package/node_modules/diff/libesm/convert/xml.d.ts +6 -0
  286. package/node_modules/diff/libesm/convert/xml.d.ts.map +1 -0
  287. package/node_modules/diff/libesm/convert/xml.js +31 -0
  288. package/node_modules/diff/libesm/diff/array.d.ts +19 -0
  289. package/node_modules/diff/libesm/diff/array.d.ts.map +1 -0
  290. package/node_modules/diff/libesm/diff/array.js +16 -0
  291. package/node_modules/diff/libesm/diff/base.d.ts +20 -0
  292. package/node_modules/diff/libesm/diff/base.d.ts.map +1 -0
  293. package/node_modules/diff/libesm/diff/base.js +253 -0
  294. package/node_modules/diff/libesm/diff/character.d.ts +19 -0
  295. package/node_modules/diff/libesm/diff/character.d.ts.map +1 -0
  296. package/node_modules/diff/libesm/diff/character.js +7 -0
  297. package/node_modules/diff/libesm/diff/css.d.ts +18 -0
  298. package/node_modules/diff/libesm/diff/css.d.ts.map +1 -0
  299. package/node_modules/diff/libesm/diff/css.js +10 -0
  300. package/node_modules/diff/libesm/diff/json.d.ts +24 -0
  301. package/node_modules/diff/libesm/diff/json.d.ts.map +1 -0
  302. package/node_modules/diff/libesm/diff/json.js +78 -0
  303. package/node_modules/diff/libesm/diff/line.d.ts +24 -0
  304. package/node_modules/diff/libesm/diff/line.d.ts.map +1 -0
  305. package/node_modules/diff/libesm/diff/line.js +65 -0
  306. package/node_modules/diff/libesm/diff/sentence.d.ts +21 -0
  307. package/node_modules/diff/libesm/diff/sentence.d.ts.map +1 -0
  308. package/node_modules/diff/libesm/diff/sentence.js +43 -0
  309. package/node_modules/diff/libesm/diff/word.d.ts +35 -0
  310. package/node_modules/diff/libesm/diff/word.d.ts.map +1 -0
  311. package/node_modules/diff/libesm/diff/word.js +281 -0
  312. package/node_modules/diff/libesm/index.d.ts +20 -0
  313. package/node_modules/diff/libesm/index.d.ts.map +1 -0
  314. package/node_modules/diff/libesm/index.js +30 -0
  315. package/node_modules/diff/libesm/package.json +1 -0
  316. package/node_modules/diff/libesm/patch/apply.d.ts +62 -0
  317. package/node_modules/diff/libesm/patch/apply.d.ts.map +1 -0
  318. package/node_modules/diff/libesm/patch/apply.js +257 -0
  319. package/node_modules/diff/libesm/patch/create.d.ts +131 -0
  320. package/node_modules/diff/libesm/patch/create.d.ts.map +1 -0
  321. package/node_modules/diff/libesm/patch/create.js +357 -0
  322. package/node_modules/diff/libesm/patch/line-endings.d.ts +17 -0
  323. package/node_modules/diff/libesm/patch/line-endings.d.ts.map +1 -0
  324. package/node_modules/diff/libesm/patch/line-endings.js +44 -0
  325. package/node_modules/diff/libesm/patch/parse.d.ts +16 -0
  326. package/node_modules/diff/libesm/patch/parse.d.ts.map +1 -0
  327. package/node_modules/diff/libesm/patch/parse.js +512 -0
  328. package/node_modules/diff/libesm/patch/reverse.d.ts +22 -0
  329. package/node_modules/diff/libesm/patch/reverse.d.ts.map +1 -0
  330. package/node_modules/diff/libesm/patch/reverse.js +60 -0
  331. package/node_modules/diff/libesm/types.d.ts +260 -0
  332. package/node_modules/diff/libesm/types.d.ts.map +1 -0
  333. package/node_modules/diff/libesm/types.js +1 -0
  334. package/node_modules/diff/libesm/util/array.d.ts +3 -0
  335. package/node_modules/diff/libesm/util/array.d.ts.map +1 -0
  336. package/node_modules/diff/libesm/util/array.js +17 -0
  337. package/node_modules/diff/libesm/util/distance-iterator.d.ts +2 -0
  338. package/node_modules/diff/libesm/util/distance-iterator.d.ts.map +1 -0
  339. package/node_modules/diff/libesm/util/distance-iterator.js +37 -0
  340. package/node_modules/diff/libesm/util/params.d.ts +4 -0
  341. package/node_modules/diff/libesm/util/params.d.ts.map +1 -0
  342. package/node_modules/diff/libesm/util/params.js +14 -0
  343. package/node_modules/diff/libesm/util/string.d.ts +30 -0
  344. package/node_modules/diff/libesm/util/string.d.ts.map +1 -0
  345. package/node_modules/diff/libesm/util/string.js +184 -0
  346. package/node_modules/diff/package.json +130 -0
  347. package/node_modules/diff/release-notes.md +474 -0
  348. package/node_modules/format/.npmignore +1 -0
  349. package/node_modules/format/Makefile +13 -0
  350. package/node_modules/format/Readme.md +46 -0
  351. package/node_modules/format/component.json +9 -0
  352. package/node_modules/format/format-min.js +2 -0
  353. package/node_modules/format/format.js +128 -0
  354. package/node_modules/format/package.json +27 -0
  355. package/node_modules/format/test_format.js +54 -0
  356. package/node_modules/hast-util-parse-selector/index.d.ts +1 -0
  357. package/node_modules/hast-util-parse-selector/index.js +1 -0
  358. package/node_modules/hast-util-parse-selector/lib/index.d.ts +27 -0
  359. package/node_modules/hast-util-parse-selector/lib/index.js +87 -0
  360. package/node_modules/hast-util-parse-selector/license +22 -0
  361. package/node_modules/hast-util-parse-selector/package.json +79 -0
  362. package/node_modules/hast-util-parse-selector/readme.md +203 -0
  363. package/node_modules/hastscript/index.d.ts +5 -0
  364. package/node_modules/hastscript/index.d.ts.map +1 -0
  365. package/node_modules/hastscript/index.js +7 -0
  366. package/node_modules/hastscript/lib/automatic-runtime-html.d.ts +36 -0
  367. package/node_modules/hastscript/lib/automatic-runtime-html.js +9 -0
  368. package/node_modules/hastscript/lib/automatic-runtime-svg.d.ts +36 -0
  369. package/node_modules/hastscript/lib/automatic-runtime-svg.d.ts.map +1 -0
  370. package/node_modules/hastscript/lib/automatic-runtime-svg.js +7 -0
  371. package/node_modules/hastscript/lib/create-automatic-runtime.d.ts +237 -0
  372. package/node_modules/hastscript/lib/create-automatic-runtime.d.ts.map +1 -0
  373. package/node_modules/hastscript/lib/create-automatic-runtime.js +52 -0
  374. package/node_modules/hastscript/lib/create-h.d.ts +148 -0
  375. package/node_modules/hastscript/lib/create-h.d.ts.map +1 -0
  376. package/node_modules/hastscript/lib/create-h.js +365 -0
  377. package/node_modules/hastscript/lib/index.d.ts +22 -0
  378. package/node_modules/hastscript/lib/index.d.ts.map +1 -0
  379. package/node_modules/hastscript/lib/index.js +27 -0
  380. package/node_modules/hastscript/lib/jsx-automatic.d.ts +43 -0
  381. package/node_modules/hastscript/lib/jsx-automatic.js +2 -0
  382. package/node_modules/hastscript/lib/jsx-classic.d.ts +47 -0
  383. package/node_modules/hastscript/lib/jsx-classic.js +2 -0
  384. package/node_modules/hastscript/lib/svg-case-sensitive-tag-names.d.ts +7 -0
  385. package/node_modules/hastscript/lib/svg-case-sensitive-tag-names.d.ts.map +1 -0
  386. package/node_modules/hastscript/lib/svg-case-sensitive-tag-names.js +46 -0
  387. package/node_modules/hastscript/license +22 -0
  388. package/node_modules/hastscript/package.json +126 -0
  389. package/node_modules/hastscript/readme.md +477 -0
  390. package/node_modules/highlight.js/LICENSE +29 -0
  391. package/node_modules/highlight.js/README.md +371 -0
  392. package/node_modules/highlight.js/lib/core.js +2517 -0
  393. package/node_modules/highlight.js/lib/highlight.js +2 -0
  394. package/node_modules/highlight.js/lib/index.js +195 -0
  395. package/node_modules/highlight.js/lib/languages/1c.js +521 -0
  396. package/node_modules/highlight.js/lib/languages/abnf.js +103 -0
  397. package/node_modules/highlight.js/lib/languages/accesslog.js +127 -0
  398. package/node_modules/highlight.js/lib/languages/actionscript.js +113 -0
  399. package/node_modules/highlight.js/lib/languages/ada.js +194 -0
  400. package/node_modules/highlight.js/lib/languages/angelscript.js +123 -0
  401. package/node_modules/highlight.js/lib/languages/apache.js +89 -0
  402. package/node_modules/highlight.js/lib/languages/applescript.js +189 -0
  403. package/node_modules/highlight.js/lib/languages/arcade.js +165 -0
  404. package/node_modules/highlight.js/lib/languages/arduino.js +576 -0
  405. package/node_modules/highlight.js/lib/languages/armasm.js +131 -0
  406. package/node_modules/highlight.js/lib/languages/asciidoc.js +303 -0
  407. package/node_modules/highlight.js/lib/languages/aspectj.js +186 -0
  408. package/node_modules/highlight.js/lib/languages/autohotkey.js +84 -0
  409. package/node_modules/highlight.js/lib/languages/autoit.js +183 -0
  410. package/node_modules/highlight.js/lib/languages/avrasm.js +80 -0
  411. package/node_modules/highlight.js/lib/languages/awk.js +73 -0
  412. package/node_modules/highlight.js/lib/languages/axapta.js +179 -0
  413. package/node_modules/highlight.js/lib/languages/bash.js +169 -0
  414. package/node_modules/highlight.js/lib/languages/basic.js +65 -0
  415. package/node_modules/highlight.js/lib/languages/bnf.js +38 -0
  416. package/node_modules/highlight.js/lib/languages/brainfuck.js +46 -0
  417. package/node_modules/highlight.js/lib/languages/c-like.js +501 -0
  418. package/node_modules/highlight.js/lib/languages/c.js +309 -0
  419. package/node_modules/highlight.js/lib/languages/cal.js +104 -0
  420. package/node_modules/highlight.js/lib/languages/capnproto.js +64 -0
  421. package/node_modules/highlight.js/lib/languages/ceylon.js +82 -0
  422. package/node_modules/highlight.js/lib/languages/clean.js +40 -0
  423. package/node_modules/highlight.js/lib/languages/clojure-repl.js +27 -0
  424. package/node_modules/highlight.js/lib/languages/clojure.js +158 -0
  425. package/node_modules/highlight.js/lib/languages/cmake.js +64 -0
  426. package/node_modules/highlight.js/lib/languages/coffeescript.js +356 -0
  427. package/node_modules/highlight.js/lib/languages/coq.js +79 -0
  428. package/node_modules/highlight.js/lib/languages/cos.js +138 -0
  429. package/node_modules/highlight.js/lib/languages/cpp.js +464 -0
  430. package/node_modules/highlight.js/lib/languages/crmsh.js +102 -0
  431. package/node_modules/highlight.js/lib/languages/crystal.js +326 -0
  432. package/node_modules/highlight.js/lib/languages/csharp.js +441 -0
  433. package/node_modules/highlight.js/lib/languages/csp.js +37 -0
  434. package/node_modules/highlight.js/lib/languages/css.js +608 -0
  435. package/node_modules/highlight.js/lib/languages/d.js +271 -0
  436. package/node_modules/highlight.js/lib/languages/dart.js +199 -0
  437. package/node_modules/highlight.js/lib/languages/delphi.js +126 -0
  438. package/node_modules/highlight.js/lib/languages/diff.js +85 -0
  439. package/node_modules/highlight.js/lib/languages/django.js +77 -0
  440. package/node_modules/highlight.js/lib/languages/dns.js +46 -0
  441. package/node_modules/highlight.js/lib/languages/dockerfile.js +34 -0
  442. package/node_modules/highlight.js/lib/languages/dos.js +70 -0
  443. package/node_modules/highlight.js/lib/languages/dsconfig.js +66 -0
  444. package/node_modules/highlight.js/lib/languages/dts.js +153 -0
  445. package/node_modules/highlight.js/lib/languages/dust.js +45 -0
  446. package/node_modules/highlight.js/lib/languages/ebnf.js +53 -0
  447. package/node_modules/highlight.js/lib/languages/elixir.js +259 -0
  448. package/node_modules/highlight.js/lib/languages/elm.js +129 -0
  449. package/node_modules/highlight.js/lib/languages/erb.js +29 -0
  450. package/node_modules/highlight.js/lib/languages/erlang-repl.js +86 -0
  451. package/node_modules/highlight.js/lib/languages/erlang.js +199 -0
  452. package/node_modules/highlight.js/lib/languages/excel.js +64 -0
  453. package/node_modules/highlight.js/lib/languages/fix.js +37 -0
  454. package/node_modules/highlight.js/lib/languages/flix.js +54 -0
  455. package/node_modules/highlight.js/lib/languages/fortran.js +159 -0
  456. package/node_modules/highlight.js/lib/languages/fsharp.js +86 -0
  457. package/node_modules/highlight.js/lib/languages/gams.js +208 -0
  458. package/node_modules/highlight.js/lib/languages/gauss.js +316 -0
  459. package/node_modules/highlight.js/lib/languages/gcode.js +88 -0
  460. package/node_modules/highlight.js/lib/languages/gherkin.js +49 -0
  461. package/node_modules/highlight.js/lib/languages/glsl.js +128 -0
  462. package/node_modules/highlight.js/lib/languages/gml.js +885 -0
  463. package/node_modules/highlight.js/lib/languages/go.js +74 -0
  464. package/node_modules/highlight.js/lib/languages/golo.js +33 -0
  465. package/node_modules/highlight.js/lib/languages/gradle.js +44 -0
  466. package/node_modules/highlight.js/lib/languages/groovy.js +174 -0
  467. package/node_modules/highlight.js/lib/languages/haml.js +117 -0
  468. package/node_modules/highlight.js/lib/languages/handlebars.js +324 -0
  469. package/node_modules/highlight.js/lib/languages/haskell.js +173 -0
  470. package/node_modules/highlight.js/lib/languages/haxe.js +157 -0
  471. package/node_modules/highlight.js/lib/languages/hsp.js +65 -0
  472. package/node_modules/highlight.js/lib/languages/htmlbars.js +352 -0
  473. package/node_modules/highlight.js/lib/languages/http.js +121 -0
  474. package/node_modules/highlight.js/lib/languages/hy.js +109 -0
  475. package/node_modules/highlight.js/lib/languages/inform7.js +70 -0
  476. package/node_modules/highlight.js/lib/languages/ini.js +173 -0
  477. package/node_modules/highlight.js/lib/languages/irpf90.js +141 -0
  478. package/node_modules/highlight.js/lib/languages/isbl.js +3207 -0
  479. package/node_modules/highlight.js/lib/languages/java.js +181 -0
  480. package/node_modules/highlight.js/lib/languages/javascript.js +604 -0
  481. package/node_modules/highlight.js/lib/languages/jboss-cli.js +63 -0
  482. package/node_modules/highlight.js/lib/languages/json.js +63 -0
  483. package/node_modules/highlight.js/lib/languages/julia-repl.js +50 -0
  484. package/node_modules/highlight.js/lib/languages/julia.js +416 -0
  485. package/node_modules/highlight.js/lib/languages/kotlin.js +284 -0
  486. package/node_modules/highlight.js/lib/languages/lasso.js +187 -0
  487. package/node_modules/highlight.js/lib/languages/latex.js +276 -0
  488. package/node_modules/highlight.js/lib/languages/ldif.js +42 -0
  489. package/node_modules/highlight.js/lib/languages/leaf.js +49 -0
  490. package/node_modules/highlight.js/lib/languages/less.js +666 -0
  491. package/node_modules/highlight.js/lib/languages/lisp.js +111 -0
  492. package/node_modules/highlight.js/lib/languages/livecodeserver.js +189 -0
  493. package/node_modules/highlight.js/lib/languages/livescript.js +374 -0
  494. package/node_modules/highlight.js/lib/languages/llvm.js +154 -0
  495. package/node_modules/highlight.js/lib/languages/lsl.js +95 -0
  496. package/node_modules/highlight.js/lib/languages/lua.js +82 -0
  497. package/node_modules/highlight.js/lib/languages/makefile.js +92 -0
  498. package/node_modules/highlight.js/lib/languages/markdown.js +258 -0
  499. package/node_modules/highlight.js/lib/languages/mathematica.js +6797 -0
  500. package/node_modules/highlight.js/lib/languages/matlab.js +106 -0
  501. package/node_modules/highlight.js/lib/languages/maxima.js +417 -0
  502. package/node_modules/highlight.js/lib/languages/mel.js +236 -0
  503. package/node_modules/highlight.js/lib/languages/mercury.js +121 -0
  504. package/node_modules/highlight.js/lib/languages/mipsasm.js +109 -0
  505. package/node_modules/highlight.js/lib/languages/mizar.js +29 -0
  506. package/node_modules/highlight.js/lib/languages/mojolicious.js +36 -0
  507. package/node_modules/highlight.js/lib/languages/monkey.js +89 -0
  508. package/node_modules/highlight.js/lib/languages/moonscript.js +147 -0
  509. package/node_modules/highlight.js/lib/languages/n1ql.js +77 -0
  510. package/node_modules/highlight.js/lib/languages/nginx.js +140 -0
  511. package/node_modules/highlight.js/lib/languages/nim.js +79 -0
  512. package/node_modules/highlight.js/lib/languages/nix.js +65 -0
  513. package/node_modules/highlight.js/lib/languages/node-repl.js +37 -0
  514. package/node_modules/highlight.js/lib/languages/nsis.js +119 -0
  515. package/node_modules/highlight.js/lib/languages/objectivec.js +121 -0
  516. package/node_modules/highlight.js/lib/languages/ocaml.js +82 -0
  517. package/node_modules/highlight.js/lib/languages/openscad.js +81 -0
  518. package/node_modules/highlight.js/lib/languages/oxygene.js +101 -0
  519. package/node_modules/highlight.js/lib/languages/parser3.js +57 -0
  520. package/node_modules/highlight.js/lib/languages/perl.js +515 -0
  521. package/node_modules/highlight.js/lib/languages/pf.js +59 -0
  522. package/node_modules/highlight.js/lib/languages/pgsql.js +630 -0
  523. package/node_modules/highlight.js/lib/languages/php-template.js +54 -0
  524. package/node_modules/highlight.js/lib/languages/php.js +204 -0
  525. package/node_modules/highlight.js/lib/languages/plaintext.js +19 -0
  526. package/node_modules/highlight.js/lib/languages/pony.js +89 -0
  527. package/node_modules/highlight.js/lib/languages/powershell.js +331 -0
  528. package/node_modules/highlight.js/lib/languages/processing.js +58 -0
  529. package/node_modules/highlight.js/lib/languages/profile.js +43 -0
  530. package/node_modules/highlight.js/lib/languages/prolog.js +102 -0
  531. package/node_modules/highlight.js/lib/languages/properties.js +85 -0
  532. package/node_modules/highlight.js/lib/languages/protobuf.js +47 -0
  533. package/node_modules/highlight.js/lib/languages/puppet.js +147 -0
  534. package/node_modules/highlight.js/lib/languages/purebasic.js +101 -0
  535. package/node_modules/highlight.js/lib/languages/python-repl.js +36 -0
  536. package/node_modules/highlight.js/lib/languages/python.js +446 -0
  537. package/node_modules/highlight.js/lib/languages/q.js +37 -0
  538. package/node_modules/highlight.js/lib/languages/qml.js +225 -0
  539. package/node_modules/highlight.js/lib/languages/r.js +231 -0
  540. package/node_modules/highlight.js/lib/languages/reasonml.js +321 -0
  541. package/node_modules/highlight.js/lib/languages/rib.js +37 -0
  542. package/node_modules/highlight.js/lib/languages/roboconf.js +82 -0
  543. package/node_modules/highlight.js/lib/languages/routeros.js +172 -0
  544. package/node_modules/highlight.js/lib/languages/rsl.js +49 -0
  545. package/node_modules/highlight.js/lib/languages/ruby.js +387 -0
  546. package/node_modules/highlight.js/lib/languages/ruleslanguage.js +78 -0
  547. package/node_modules/highlight.js/lib/languages/rust.js +146 -0
  548. package/node_modules/highlight.js/lib/languages/sas.js +133 -0
  549. package/node_modules/highlight.js/lib/languages/scala.js +140 -0
  550. package/node_modules/highlight.js/lib/languages/scheme.js +207 -0
  551. package/node_modules/highlight.js/lib/languages/scilab.js +73 -0
  552. package/node_modules/highlight.js/lib/languages/scss.js +545 -0
  553. package/node_modules/highlight.js/lib/languages/shell.js +30 -0
  554. package/node_modules/highlight.js/lib/languages/smali.js +135 -0
  555. package/node_modules/highlight.js/lib/languages/smalltalk.js +63 -0
  556. package/node_modules/highlight.js/lib/languages/sml.js +81 -0
  557. package/node_modules/highlight.js/lib/languages/sqf.js +448 -0
  558. package/node_modules/highlight.js/lib/languages/sql.js +699 -0
  559. package/node_modules/highlight.js/lib/languages/sql_more.js +183 -0
  560. package/node_modules/highlight.js/lib/languages/stan.js +548 -0
  561. package/node_modules/highlight.js/lib/languages/stata.js +60 -0
  562. package/node_modules/highlight.js/lib/languages/step21.js +66 -0
  563. package/node_modules/highlight.js/lib/languages/stylus.js +609 -0
  564. package/node_modules/highlight.js/lib/languages/subunit.js +51 -0
  565. package/node_modules/highlight.js/lib/languages/swift.js +873 -0
  566. package/node_modules/highlight.js/lib/languages/taggerscript.js +52 -0
  567. package/node_modules/highlight.js/lib/languages/tap.js +55 -0
  568. package/node_modules/highlight.js/lib/languages/tcl.js +115 -0
  569. package/node_modules/highlight.js/lib/languages/thrift.js +51 -0
  570. package/node_modules/highlight.js/lib/languages/tp.js +95 -0
  571. package/node_modules/highlight.js/lib/languages/twig.js +77 -0
  572. package/node_modules/highlight.js/lib/languages/typescript.js +697 -0
  573. package/node_modules/highlight.js/lib/languages/vala.js +61 -0
  574. package/node_modules/highlight.js/lib/languages/vbnet.js +214 -0
  575. package/node_modules/highlight.js/lib/languages/vbscript-html.js +24 -0
  576. package/node_modules/highlight.js/lib/languages/vbscript.js +109 -0
  577. package/node_modules/highlight.js/lib/languages/verilog.js +131 -0
  578. package/node_modules/highlight.js/lib/languages/vhdl.js +71 -0
  579. package/node_modules/highlight.js/lib/languages/vim.js +123 -0
  580. package/node_modules/highlight.js/lib/languages/x86asm.js +163 -0
  581. package/node_modules/highlight.js/lib/languages/xl.js +92 -0
  582. package/node_modules/highlight.js/lib/languages/xml.js +287 -0
  583. package/node_modules/highlight.js/lib/languages/xquery.js +197 -0
  584. package/node_modules/highlight.js/lib/languages/yaml.js +176 -0
  585. package/node_modules/highlight.js/lib/languages/zephir.js +140 -0
  586. package/node_modules/highlight.js/package.json +86 -0
  587. package/node_modules/highlight.js/scss/a11y-dark.scss +99 -0
  588. package/node_modules/highlight.js/scss/a11y-light.scss +99 -0
  589. package/node_modules/highlight.js/scss/agate.scss +108 -0
  590. package/node_modules/highlight.js/scss/an-old-hope.scss +89 -0
  591. package/node_modules/highlight.js/scss/androidstudio.scss +66 -0
  592. package/node_modules/highlight.js/scss/arduino-light.scss +87 -0
  593. package/node_modules/highlight.js/scss/arta.scss +73 -0
  594. package/node_modules/highlight.js/scss/ascetic.scss +45 -0
  595. package/node_modules/highlight.js/scss/atelier-cave-dark.scss +83 -0
  596. package/node_modules/highlight.js/scss/atelier-cave-light.scss +85 -0
  597. package/node_modules/highlight.js/scss/atelier-dune-dark.scss +69 -0
  598. package/node_modules/highlight.js/scss/atelier-dune-light.scss +69 -0
  599. package/node_modules/highlight.js/scss/atelier-estuary-dark.scss +84 -0
  600. package/node_modules/highlight.js/scss/atelier-estuary-light.scss +84 -0
  601. package/node_modules/highlight.js/scss/atelier-forest-dark.scss +69 -0
  602. package/node_modules/highlight.js/scss/atelier-forest-light.scss +69 -0
  603. package/node_modules/highlight.js/scss/atelier-heath-dark.scss +69 -0
  604. package/node_modules/highlight.js/scss/atelier-heath-light.scss +69 -0
  605. package/node_modules/highlight.js/scss/atelier-lakeside-dark.scss +69 -0
  606. package/node_modules/highlight.js/scss/atelier-lakeside-light.scss +69 -0
  607. package/node_modules/highlight.js/scss/atelier-plateau-dark.scss +84 -0
  608. package/node_modules/highlight.js/scss/atelier-plateau-light.scss +84 -0
  609. package/node_modules/highlight.js/scss/atelier-savanna-dark.scss +84 -0
  610. package/node_modules/highlight.js/scss/atelier-savanna-light.scss +84 -0
  611. package/node_modules/highlight.js/scss/atelier-seaside-dark.scss +69 -0
  612. package/node_modules/highlight.js/scss/atelier-seaside-light.scss +69 -0
  613. package/node_modules/highlight.js/scss/atelier-sulphurpool-dark.scss +69 -0
  614. package/node_modules/highlight.js/scss/atelier-sulphurpool-light.scss +69 -0
  615. package/node_modules/highlight.js/scss/atom-one-dark-reasonable.scss +75 -0
  616. package/node_modules/highlight.js/scss/atom-one-dark.scss +96 -0
  617. package/node_modules/highlight.js/scss/atom-one-light.scss +96 -0
  618. package/node_modules/highlight.js/scss/brown-paper.scss +64 -0
  619. package/node_modules/highlight.js/scss/brown-papersq.png +0 -0
  620. package/node_modules/highlight.js/scss/codepen-embed.scss +60 -0
  621. package/node_modules/highlight.js/scss/color-brewer.scss +71 -0
  622. package/node_modules/highlight.js/scss/darcula.scss +74 -0
  623. package/node_modules/highlight.js/scss/dark.scss +63 -0
  624. package/node_modules/highlight.js/scss/default.scss +99 -0
  625. package/node_modules/highlight.js/scss/docco.scss +97 -0
  626. package/node_modules/highlight.js/scss/dracula.scss +76 -0
  627. package/node_modules/highlight.js/scss/far.scss +71 -0
  628. package/node_modules/highlight.js/scss/foundation.scss +89 -0
  629. package/node_modules/highlight.js/scss/github-gist.scss +79 -0
  630. package/node_modules/highlight.js/scss/github.scss +99 -0
  631. package/node_modules/highlight.js/scss/gml.scss +78 -0
  632. package/node_modules/highlight.js/scss/googlecode.scss +89 -0
  633. package/node_modules/highlight.js/scss/gradient-dark.scss +122 -0
  634. package/node_modules/highlight.js/scss/gradient-light.scss +130 -0
  635. package/node_modules/highlight.js/scss/grayscale.scss +101 -0
  636. package/node_modules/highlight.js/scss/gruvbox-dark.scss +108 -0
  637. package/node_modules/highlight.js/scss/gruvbox-light.scss +108 -0
  638. package/node_modules/highlight.js/scss/hopscotch.scss +84 -0
  639. package/node_modules/highlight.js/scss/hybrid.scss +102 -0
  640. package/node_modules/highlight.js/scss/idea.scss +97 -0
  641. package/node_modules/highlight.js/scss/ir-black.scss +73 -0
  642. package/node_modules/highlight.js/scss/isbl-editor-dark.scss +112 -0
  643. package/node_modules/highlight.js/scss/isbl-editor-light.scss +111 -0
  644. package/node_modules/highlight.js/scss/kimbie.dark.scss +74 -0
  645. package/node_modules/highlight.js/scss/kimbie.light.scss +74 -0
  646. package/node_modules/highlight.js/scss/lightfair.scss +88 -0
  647. package/node_modules/highlight.js/scss/lioshi.scss +88 -0
  648. package/node_modules/highlight.js/scss/magula.scss +70 -0
  649. package/node_modules/highlight.js/scss/mono-blue.scss +56 -0
  650. package/node_modules/highlight.js/scss/monokai-sublime.scss +83 -0
  651. package/node_modules/highlight.js/scss/monokai.scss +71 -0
  652. package/node_modules/highlight.js/scss/night-owl.scss +182 -0
  653. package/node_modules/highlight.js/scss/nnfx-dark.scss +106 -0
  654. package/node_modules/highlight.js/scss/nnfx.scss +106 -0
  655. package/node_modules/highlight.js/scss/nord.scss +309 -0
  656. package/node_modules/highlight.js/scss/obsidian.scss +88 -0
  657. package/node_modules/highlight.js/scss/ocean.scss +74 -0
  658. package/node_modules/highlight.js/scss/paraiso-dark.scss +72 -0
  659. package/node_modules/highlight.js/scss/paraiso-light.scss +72 -0
  660. package/node_modules/highlight.js/scss/pojoaque.jpg +0 -0
  661. package/node_modules/highlight.js/scss/pojoaque.scss +83 -0
  662. package/node_modules/highlight.js/scss/purebasic.scss +96 -0
  663. package/node_modules/highlight.js/scss/qtcreator_dark.scss +83 -0
  664. package/node_modules/highlight.js/scss/qtcreator_light.scss +83 -0
  665. package/node_modules/highlight.js/scss/railscasts.scss +106 -0
  666. package/node_modules/highlight.js/scss/rainbow.scss +85 -0
  667. package/node_modules/highlight.js/scss/routeros.scss +108 -0
  668. package/node_modules/highlight.js/scss/school-book.png +0 -0
  669. package/node_modules/highlight.js/scss/school-book.scss +69 -0
  670. package/node_modules/highlight.js/scss/shades-of-purple.scss +96 -0
  671. package/node_modules/highlight.js/scss/solarized-dark.scss +84 -0
  672. package/node_modules/highlight.js/scss/solarized-light.scss +84 -0
  673. package/node_modules/highlight.js/scss/srcery.scss +78 -0
  674. package/node_modules/highlight.js/scss/stackoverflow-dark.scss +78 -0
  675. package/node_modules/highlight.js/scss/stackoverflow-light.scss +78 -0
  676. package/node_modules/highlight.js/scss/sunburst.scss +102 -0
  677. package/node_modules/highlight.js/scss/tomorrow-night-blue.scss +75 -0
  678. package/node_modules/highlight.js/scss/tomorrow-night-bright.scss +74 -0
  679. package/node_modules/highlight.js/scss/tomorrow-night-eighties.scss +74 -0
  680. package/node_modules/highlight.js/scss/tomorrow-night.scss +75 -0
  681. package/node_modules/highlight.js/scss/tomorrow.scss +72 -0
  682. package/node_modules/highlight.js/scss/vs.scss +68 -0
  683. package/node_modules/highlight.js/scss/vs2015.scss +115 -0
  684. package/node_modules/highlight.js/scss/xcode.scss +104 -0
  685. package/node_modules/highlight.js/scss/xt256.scss +92 -0
  686. package/node_modules/highlight.js/scss/zenburn.scss +80 -0
  687. package/node_modules/highlight.js/styles/a11y-dark.css +99 -0
  688. package/node_modules/highlight.js/styles/a11y-light.css +99 -0
  689. package/node_modules/highlight.js/styles/agate.css +108 -0
  690. package/node_modules/highlight.js/styles/an-old-hope.css +89 -0
  691. package/node_modules/highlight.js/styles/androidstudio.css +66 -0
  692. package/node_modules/highlight.js/styles/arduino-light.css +87 -0
  693. package/node_modules/highlight.js/styles/arta.css +73 -0
  694. package/node_modules/highlight.js/styles/ascetic.css +45 -0
  695. package/node_modules/highlight.js/styles/atelier-cave-dark.css +83 -0
  696. package/node_modules/highlight.js/styles/atelier-cave-light.css +85 -0
  697. package/node_modules/highlight.js/styles/atelier-dune-dark.css +69 -0
  698. package/node_modules/highlight.js/styles/atelier-dune-light.css +69 -0
  699. package/node_modules/highlight.js/styles/atelier-estuary-dark.css +84 -0
  700. package/node_modules/highlight.js/styles/atelier-estuary-light.css +84 -0
  701. package/node_modules/highlight.js/styles/atelier-forest-dark.css +69 -0
  702. package/node_modules/highlight.js/styles/atelier-forest-light.css +69 -0
  703. package/node_modules/highlight.js/styles/atelier-heath-dark.css +69 -0
  704. package/node_modules/highlight.js/styles/atelier-heath-light.css +69 -0
  705. package/node_modules/highlight.js/styles/atelier-lakeside-dark.css +69 -0
  706. package/node_modules/highlight.js/styles/atelier-lakeside-light.css +69 -0
  707. package/node_modules/highlight.js/styles/atelier-plateau-dark.css +84 -0
  708. package/node_modules/highlight.js/styles/atelier-plateau-light.css +84 -0
  709. package/node_modules/highlight.js/styles/atelier-savanna-dark.css +84 -0
  710. package/node_modules/highlight.js/styles/atelier-savanna-light.css +84 -0
  711. package/node_modules/highlight.js/styles/atelier-seaside-dark.css +69 -0
  712. package/node_modules/highlight.js/styles/atelier-seaside-light.css +69 -0
  713. package/node_modules/highlight.js/styles/atelier-sulphurpool-dark.css +69 -0
  714. package/node_modules/highlight.js/styles/atelier-sulphurpool-light.css +69 -0
  715. package/node_modules/highlight.js/styles/atom-one-dark-reasonable.css +75 -0
  716. package/node_modules/highlight.js/styles/atom-one-dark.css +96 -0
  717. package/node_modules/highlight.js/styles/atom-one-light.css +96 -0
  718. package/node_modules/highlight.js/styles/brown-paper.css +64 -0
  719. package/node_modules/highlight.js/styles/brown-papersq.png +0 -0
  720. package/node_modules/highlight.js/styles/codepen-embed.css +60 -0
  721. package/node_modules/highlight.js/styles/color-brewer.css +71 -0
  722. package/node_modules/highlight.js/styles/darcula.css +74 -0
  723. package/node_modules/highlight.js/styles/dark.css +63 -0
  724. package/node_modules/highlight.js/styles/default.css +99 -0
  725. package/node_modules/highlight.js/styles/docco.css +97 -0
  726. package/node_modules/highlight.js/styles/dracula.css +76 -0
  727. package/node_modules/highlight.js/styles/far.css +71 -0
  728. package/node_modules/highlight.js/styles/foundation.css +89 -0
  729. package/node_modules/highlight.js/styles/github-gist.css +79 -0
  730. package/node_modules/highlight.js/styles/github.css +99 -0
  731. package/node_modules/highlight.js/styles/gml.css +78 -0
  732. package/node_modules/highlight.js/styles/googlecode.css +89 -0
  733. package/node_modules/highlight.js/styles/gradient-dark.css +122 -0
  734. package/node_modules/highlight.js/styles/gradient-light.css +130 -0
  735. package/node_modules/highlight.js/styles/grayscale.css +101 -0
  736. package/node_modules/highlight.js/styles/gruvbox-dark.css +108 -0
  737. package/node_modules/highlight.js/styles/gruvbox-light.css +108 -0
  738. package/node_modules/highlight.js/styles/hopscotch.css +84 -0
  739. package/node_modules/highlight.js/styles/hybrid.css +102 -0
  740. package/node_modules/highlight.js/styles/idea.css +97 -0
  741. package/node_modules/highlight.js/styles/ir-black.css +73 -0
  742. package/node_modules/highlight.js/styles/isbl-editor-dark.css +112 -0
  743. package/node_modules/highlight.js/styles/isbl-editor-light.css +111 -0
  744. package/node_modules/highlight.js/styles/kimbie.dark.css +74 -0
  745. package/node_modules/highlight.js/styles/kimbie.light.css +74 -0
  746. package/node_modules/highlight.js/styles/lightfair.css +88 -0
  747. package/node_modules/highlight.js/styles/lioshi.css +88 -0
  748. package/node_modules/highlight.js/styles/magula.css +70 -0
  749. package/node_modules/highlight.js/styles/mono-blue.css +56 -0
  750. package/node_modules/highlight.js/styles/monokai-sublime.css +83 -0
  751. package/node_modules/highlight.js/styles/monokai.css +71 -0
  752. package/node_modules/highlight.js/styles/night-owl.css +182 -0
  753. package/node_modules/highlight.js/styles/nnfx-dark.css +106 -0
  754. package/node_modules/highlight.js/styles/nnfx.css +106 -0
  755. package/node_modules/highlight.js/styles/nord.css +309 -0
  756. package/node_modules/highlight.js/styles/obsidian.css +88 -0
  757. package/node_modules/highlight.js/styles/ocean.css +74 -0
  758. package/node_modules/highlight.js/styles/paraiso-dark.css +72 -0
  759. package/node_modules/highlight.js/styles/paraiso-light.css +72 -0
  760. package/node_modules/highlight.js/styles/pojoaque.css +83 -0
  761. package/node_modules/highlight.js/styles/pojoaque.jpg +0 -0
  762. package/node_modules/highlight.js/styles/purebasic.css +96 -0
  763. package/node_modules/highlight.js/styles/qtcreator_dark.css +83 -0
  764. package/node_modules/highlight.js/styles/qtcreator_light.css +83 -0
  765. package/node_modules/highlight.js/styles/railscasts.css +106 -0
  766. package/node_modules/highlight.js/styles/rainbow.css +85 -0
  767. package/node_modules/highlight.js/styles/routeros.css +108 -0
  768. package/node_modules/highlight.js/styles/school-book.css +69 -0
  769. package/node_modules/highlight.js/styles/school-book.png +0 -0
  770. package/node_modules/highlight.js/styles/shades-of-purple.css +96 -0
  771. package/node_modules/highlight.js/styles/solarized-dark.css +84 -0
  772. package/node_modules/highlight.js/styles/solarized-light.css +84 -0
  773. package/node_modules/highlight.js/styles/srcery.css +78 -0
  774. package/node_modules/highlight.js/styles/stackoverflow-dark.css +78 -0
  775. package/node_modules/highlight.js/styles/stackoverflow-light.css +78 -0
  776. package/node_modules/highlight.js/styles/sunburst.css +102 -0
  777. package/node_modules/highlight.js/styles/tomorrow-night-blue.css +75 -0
  778. package/node_modules/highlight.js/styles/tomorrow-night-bright.css +74 -0
  779. package/node_modules/highlight.js/styles/tomorrow-night-eighties.css +74 -0
  780. package/node_modules/highlight.js/styles/tomorrow-night.css +75 -0
  781. package/node_modules/highlight.js/styles/tomorrow.css +72 -0
  782. package/node_modules/highlight.js/styles/vs.css +68 -0
  783. package/node_modules/highlight.js/styles/vs2015.css +115 -0
  784. package/node_modules/highlight.js/styles/xcode.css +104 -0
  785. package/node_modules/highlight.js/styles/xt256.css +92 -0
  786. package/node_modules/highlight.js/styles/zenburn.css +80 -0
  787. package/node_modules/highlight.js/types/index.d.ts +261 -0
  788. package/node_modules/highlightjs-vue/README.md +33 -0
  789. package/node_modules/highlightjs-vue/dist/highlightjs-vue.cjs.js +61 -0
  790. package/node_modules/highlightjs-vue/dist/highlightjs-vue.esm.js +59 -0
  791. package/node_modules/highlightjs-vue/dist/highlightjs-vue.umd.js +66 -0
  792. package/node_modules/highlightjs-vue/dist/highlightjs-vue.umd.min.js +1 -0
  793. package/node_modules/highlightjs-vue/package.json +40 -0
  794. package/node_modules/is-alphabetical/index.d.ts +8 -0
  795. package/node_modules/is-alphabetical/index.js +16 -0
  796. package/node_modules/is-alphabetical/license +22 -0
  797. package/node_modules/is-alphabetical/package.json +73 -0
  798. package/node_modules/is-alphabetical/readme.md +141 -0
  799. package/node_modules/is-alphanumerical/index.d.ts +8 -0
  800. package/node_modules/is-alphanumerical/index.js +13 -0
  801. package/node_modules/is-alphanumerical/license +22 -0
  802. package/node_modules/is-alphanumerical/package.json +79 -0
  803. package/node_modules/is-alphanumerical/readme.md +142 -0
  804. package/node_modules/is-decimal/index.d.ts +8 -0
  805. package/node_modules/is-decimal/index.js +13 -0
  806. package/node_modules/is-decimal/license +22 -0
  807. package/node_modules/is-decimal/package.json +73 -0
  808. package/node_modules/is-decimal/readme.md +139 -0
  809. package/node_modules/is-hexadecimal/index.d.ts +8 -0
  810. package/node_modules/is-hexadecimal/index.js +17 -0
  811. package/node_modules/is-hexadecimal/license +22 -0
  812. package/node_modules/is-hexadecimal/package.json +73 -0
  813. package/node_modules/is-hexadecimal/readme.md +141 -0
  814. package/node_modules/lowlight/index.js +299 -0
  815. package/node_modules/lowlight/lib/core.js +207 -0
  816. package/node_modules/lowlight/license +22 -0
  817. package/node_modules/lowlight/node_modules/fault/index.js +31 -0
  818. package/node_modules/lowlight/node_modules/fault/license +22 -0
  819. package/node_modules/lowlight/node_modules/fault/package.json +79 -0
  820. package/node_modules/lowlight/node_modules/fault/readme.md +138 -0
  821. package/node_modules/lowlight/package.json +91 -0
  822. package/node_modules/lowlight/readme.md +339 -0
  823. package/node_modules/parse-entities/index.d.ts +126 -0
  824. package/node_modules/parse-entities/index.js +3 -0
  825. package/node_modules/parse-entities/lib/index.d.ts +9 -0
  826. package/node_modules/parse-entities/lib/index.d.ts.map +1 -0
  827. package/node_modules/parse-entities/lib/index.js +407 -0
  828. package/node_modules/parse-entities/license +22 -0
  829. package/node_modules/parse-entities/node_modules/@types/unist/LICENSE +21 -0
  830. package/node_modules/parse-entities/node_modules/@types/unist/README.md +122 -0
  831. package/node_modules/parse-entities/node_modules/@types/unist/index.d.ts +103 -0
  832. package/node_modules/parse-entities/node_modules/@types/unist/package.json +55 -0
  833. package/node_modules/parse-entities/package.json +91 -0
  834. package/node_modules/parse-entities/readme.md +266 -0
  835. package/node_modules/prismjs/CHANGELOG.md +3068 -0
  836. package/node_modules/prismjs/LICENSE +21 -0
  837. package/node_modules/prismjs/README.md +51 -0
  838. package/node_modules/prismjs/_headers +2 -0
  839. package/node_modules/prismjs/components/index.js +56 -0
  840. package/node_modules/prismjs/components/prism-abap.js +48 -0
  841. package/node_modules/prismjs/components/prism-abap.min.js +1 -0
  842. package/node_modules/prismjs/components/prism-abnf.js +54 -0
  843. package/node_modules/prismjs/components/prism-abnf.min.js +1 -0
  844. package/node_modules/prismjs/components/prism-actionscript.js +19 -0
  845. package/node_modules/prismjs/components/prism-actionscript.min.js +1 -0
  846. package/node_modules/prismjs/components/prism-ada.js +22 -0
  847. package/node_modules/prismjs/components/prism-ada.min.js +1 -0
  848. package/node_modules/prismjs/components/prism-agda.js +24 -0
  849. package/node_modules/prismjs/components/prism-agda.min.js +1 -0
  850. package/node_modules/prismjs/components/prism-al.js +25 -0
  851. package/node_modules/prismjs/components/prism-al.min.js +1 -0
  852. package/node_modules/prismjs/components/prism-antlr4.js +65 -0
  853. package/node_modules/prismjs/components/prism-antlr4.min.js +1 -0
  854. package/node_modules/prismjs/components/prism-apacheconf.js +47 -0
  855. package/node_modules/prismjs/components/prism-apacheconf.min.js +1 -0
  856. package/node_modules/prismjs/components/prism-apex.js +65 -0
  857. package/node_modules/prismjs/components/prism-apex.min.js +1 -0
  858. package/node_modules/prismjs/components/prism-apl.js +32 -0
  859. package/node_modules/prismjs/components/prism-apl.min.js +1 -0
  860. package/node_modules/prismjs/components/prism-applescript.js +17 -0
  861. package/node_modules/prismjs/components/prism-applescript.min.js +1 -0
  862. package/node_modules/prismjs/components/prism-aql.js +49 -0
  863. package/node_modules/prismjs/components/prism-aql.min.js +1 -0
  864. package/node_modules/prismjs/components/prism-arduino.js +7 -0
  865. package/node_modules/prismjs/components/prism-arduino.min.js +1 -0
  866. package/node_modules/prismjs/components/prism-arff.js +10 -0
  867. package/node_modules/prismjs/components/prism-arff.min.js +1 -0
  868. package/node_modules/prismjs/components/prism-armasm.js +49 -0
  869. package/node_modules/prismjs/components/prism-armasm.min.js +1 -0
  870. package/node_modules/prismjs/components/prism-arturo.js +105 -0
  871. package/node_modules/prismjs/components/prism-arturo.min.js +1 -0
  872. package/node_modules/prismjs/components/prism-asciidoc.js +234 -0
  873. package/node_modules/prismjs/components/prism-asciidoc.min.js +1 -0
  874. package/node_modules/prismjs/components/prism-asm6502.js +29 -0
  875. package/node_modules/prismjs/components/prism-asm6502.min.js +1 -0
  876. package/node_modules/prismjs/components/prism-asmatmel.js +43 -0
  877. package/node_modules/prismjs/components/prism-asmatmel.min.js +1 -0
  878. package/node_modules/prismjs/components/prism-aspnet.js +48 -0
  879. package/node_modules/prismjs/components/prism-aspnet.min.js +1 -0
  880. package/node_modules/prismjs/components/prism-autohotkey.js +44 -0
  881. package/node_modules/prismjs/components/prism-autohotkey.min.js +1 -0
  882. package/node_modules/prismjs/components/prism-autoit.js +34 -0
  883. package/node_modules/prismjs/components/prism-autoit.min.js +1 -0
  884. package/node_modules/prismjs/components/prism-avisynth.js +188 -0
  885. package/node_modules/prismjs/components/prism-avisynth.min.js +1 -0
  886. package/node_modules/prismjs/components/prism-avro-idl.js +50 -0
  887. package/node_modules/prismjs/components/prism-avro-idl.min.js +1 -0
  888. package/node_modules/prismjs/components/prism-awk.js +32 -0
  889. package/node_modules/prismjs/components/prism-awk.min.js +1 -0
  890. package/node_modules/prismjs/components/prism-bash.js +235 -0
  891. package/node_modules/prismjs/components/prism-bash.min.js +1 -0
  892. package/node_modules/prismjs/components/prism-basic.js +17 -0
  893. package/node_modules/prismjs/components/prism-basic.min.js +1 -0
  894. package/node_modules/prismjs/components/prism-batch.js +99 -0
  895. package/node_modules/prismjs/components/prism-batch.min.js +1 -0
  896. package/node_modules/prismjs/components/prism-bbcode.js +29 -0
  897. package/node_modules/prismjs/components/prism-bbcode.min.js +1 -0
  898. package/node_modules/prismjs/components/prism-bbj.js +19 -0
  899. package/node_modules/prismjs/components/prism-bbj.min.js +1 -0
  900. package/node_modules/prismjs/components/prism-bicep.js +77 -0
  901. package/node_modules/prismjs/components/prism-bicep.min.js +1 -0
  902. package/node_modules/prismjs/components/prism-birb.js +23 -0
  903. package/node_modules/prismjs/components/prism-birb.min.js +1 -0
  904. package/node_modules/prismjs/components/prism-bison.js +39 -0
  905. package/node_modules/prismjs/components/prism-bison.min.js +1 -0
  906. package/node_modules/prismjs/components/prism-bnf.js +21 -0
  907. package/node_modules/prismjs/components/prism-bnf.min.js +1 -0
  908. package/node_modules/prismjs/components/prism-bqn.js +63 -0
  909. package/node_modules/prismjs/components/prism-bqn.min.js +1 -0
  910. package/node_modules/prismjs/components/prism-brainfuck.js +20 -0
  911. package/node_modules/prismjs/components/prism-brainfuck.min.js +1 -0
  912. package/node_modules/prismjs/components/prism-brightscript.js +44 -0
  913. package/node_modules/prismjs/components/prism-brightscript.min.js +1 -0
  914. package/node_modules/prismjs/components/prism-bro.js +37 -0
  915. package/node_modules/prismjs/components/prism-bro.min.js +1 -0
  916. package/node_modules/prismjs/components/prism-bsl.js +75 -0
  917. package/node_modules/prismjs/components/prism-bsl.min.js +1 -0
  918. package/node_modules/prismjs/components/prism-c.js +80 -0
  919. package/node_modules/prismjs/components/prism-c.min.js +1 -0
  920. package/node_modules/prismjs/components/prism-cfscript.js +44 -0
  921. package/node_modules/prismjs/components/prism-cfscript.min.js +1 -0
  922. package/node_modules/prismjs/components/prism-chaiscript.js +60 -0
  923. package/node_modules/prismjs/components/prism-chaiscript.min.js +1 -0
  924. package/node_modules/prismjs/components/prism-cil.js +27 -0
  925. package/node_modules/prismjs/components/prism-cil.min.js +1 -0
  926. package/node_modules/prismjs/components/prism-cilkc.js +8 -0
  927. package/node_modules/prismjs/components/prism-cilkc.min.js +1 -0
  928. package/node_modules/prismjs/components/prism-cilkcpp.js +9 -0
  929. package/node_modules/prismjs/components/prism-cilkcpp.min.js +1 -0
  930. package/node_modules/prismjs/components/prism-clike.js +31 -0
  931. package/node_modules/prismjs/components/prism-clike.min.js +1 -0
  932. package/node_modules/prismjs/components/prism-clojure.js +31 -0
  933. package/node_modules/prismjs/components/prism-clojure.min.js +1 -0
  934. package/node_modules/prismjs/components/prism-cmake.js +29 -0
  935. package/node_modules/prismjs/components/prism-cmake.min.js +1 -0
  936. package/node_modules/prismjs/components/prism-cobol.js +53 -0
  937. package/node_modules/prismjs/components/prism-cobol.min.js +1 -0
  938. package/node_modules/prismjs/components/prism-coffeescript.js +96 -0
  939. package/node_modules/prismjs/components/prism-coffeescript.min.js +1 -0
  940. package/node_modules/prismjs/components/prism-concurnas.js +61 -0
  941. package/node_modules/prismjs/components/prism-concurnas.min.js +1 -0
  942. package/node_modules/prismjs/components/prism-cooklang.js +146 -0
  943. package/node_modules/prismjs/components/prism-cooklang.min.js +1 -0
  944. package/node_modules/prismjs/components/prism-coq.js +54 -0
  945. package/node_modules/prismjs/components/prism-coq.min.js +1 -0
  946. package/node_modules/prismjs/components/prism-core.js +1263 -0
  947. package/node_modules/prismjs/components/prism-core.min.js +1 -0
  948. package/node_modules/prismjs/components/prism-cpp.js +99 -0
  949. package/node_modules/prismjs/components/prism-cpp.min.js +1 -0
  950. package/node_modules/prismjs/components/prism-crystal.js +57 -0
  951. package/node_modules/prismjs/components/prism-crystal.min.js +1 -0
  952. package/node_modules/prismjs/components/prism-csharp.js +366 -0
  953. package/node_modules/prismjs/components/prism-csharp.min.js +1 -0
  954. package/node_modules/prismjs/components/prism-cshtml.js +199 -0
  955. package/node_modules/prismjs/components/prism-cshtml.min.js +1 -0
  956. package/node_modules/prismjs/components/prism-csp.js +76 -0
  957. package/node_modules/prismjs/components/prism-csp.min.js +1 -0
  958. package/node_modules/prismjs/components/prism-css-extras.js +120 -0
  959. package/node_modules/prismjs/components/prism-css-extras.min.js +1 -0
  960. package/node_modules/prismjs/components/prism-css.js +64 -0
  961. package/node_modules/prismjs/components/prism-css.min.js +1 -0
  962. package/node_modules/prismjs/components/prism-csv.js +6 -0
  963. package/node_modules/prismjs/components/prism-csv.min.js +1 -0
  964. package/node_modules/prismjs/components/prism-cue.js +84 -0
  965. package/node_modules/prismjs/components/prism-cue.min.js +1 -0
  966. package/node_modules/prismjs/components/prism-cypher.js +36 -0
  967. package/node_modules/prismjs/components/prism-cypher.min.js +1 -0
  968. package/node_modules/prismjs/components/prism-d.js +84 -0
  969. package/node_modules/prismjs/components/prism-d.min.js +1 -0
  970. package/node_modules/prismjs/components/prism-dart.js +79 -0
  971. package/node_modules/prismjs/components/prism-dart.min.js +1 -0
  972. package/node_modules/prismjs/components/prism-dataweave.js +41 -0
  973. package/node_modules/prismjs/components/prism-dataweave.min.js +1 -0
  974. package/node_modules/prismjs/components/prism-dax.js +27 -0
  975. package/node_modules/prismjs/components/prism-dax.min.js +1 -0
  976. package/node_modules/prismjs/components/prism-dhall.js +69 -0
  977. package/node_modules/prismjs/components/prism-dhall.min.js +1 -0
  978. package/node_modules/prismjs/components/prism-diff.js +64 -0
  979. package/node_modules/prismjs/components/prism-diff.min.js +1 -0
  980. package/node_modules/prismjs/components/prism-django.js +60 -0
  981. package/node_modules/prismjs/components/prism-django.min.js +1 -0
  982. package/node_modules/prismjs/components/prism-dns-zone-file.js +33 -0
  983. package/node_modules/prismjs/components/prism-dns-zone-file.min.js +1 -0
  984. package/node_modules/prismjs/components/prism-docker.js +98 -0
  985. package/node_modules/prismjs/components/prism-docker.min.js +1 -0
  986. package/node_modules/prismjs/components/prism-dot.js +76 -0
  987. package/node_modules/prismjs/components/prism-dot.min.js +1 -0
  988. package/node_modules/prismjs/components/prism-ebnf.js +22 -0
  989. package/node_modules/prismjs/components/prism-ebnf.min.js +1 -0
  990. package/node_modules/prismjs/components/prism-editorconfig.js +26 -0
  991. package/node_modules/prismjs/components/prism-editorconfig.min.js +1 -0
  992. package/node_modules/prismjs/components/prism-eiffel.js +34 -0
  993. package/node_modules/prismjs/components/prism-eiffel.min.js +1 -0
  994. package/node_modules/prismjs/components/prism-ejs.js +26 -0
  995. package/node_modules/prismjs/components/prism-ejs.min.js +1 -0
  996. package/node_modules/prismjs/components/prism-elixir.js +98 -0
  997. package/node_modules/prismjs/components/prism-elixir.min.js +1 -0
  998. package/node_modules/prismjs/components/prism-elm.js +45 -0
  999. package/node_modules/prismjs/components/prism-elm.min.js +1 -0
  1000. package/node_modules/prismjs/components/prism-erb.js +25 -0
  1001. package/node_modules/prismjs/components/prism-erb.min.js +1 -0
  1002. package/node_modules/prismjs/components/prism-erlang.js +44 -0
  1003. package/node_modules/prismjs/components/prism-erlang.min.js +1 -0
  1004. package/node_modules/prismjs/components/prism-etlua.js +23 -0
  1005. package/node_modules/prismjs/components/prism-etlua.min.js +1 -0
  1006. package/node_modules/prismjs/components/prism-excel-formula.js +66 -0
  1007. package/node_modules/prismjs/components/prism-excel-formula.min.js +1 -0
  1008. package/node_modules/prismjs/components/prism-factor.js +403 -0
  1009. package/node_modules/prismjs/components/prism-factor.min.js +1 -0
  1010. package/node_modules/prismjs/components/prism-false.js +32 -0
  1011. package/node_modules/prismjs/components/prism-false.min.js +1 -0
  1012. package/node_modules/prismjs/components/prism-firestore-security-rules.js +35 -0
  1013. package/node_modules/prismjs/components/prism-firestore-security-rules.min.js +1 -0
  1014. package/node_modules/prismjs/components/prism-flow.js +35 -0
  1015. package/node_modules/prismjs/components/prism-flow.min.js +1 -0
  1016. package/node_modules/prismjs/components/prism-fortran.js +40 -0
  1017. package/node_modules/prismjs/components/prism-fortran.min.js +1 -0
  1018. package/node_modules/prismjs/components/prism-fsharp.js +75 -0
  1019. package/node_modules/prismjs/components/prism-fsharp.min.js +1 -0
  1020. package/node_modules/prismjs/components/prism-ftl.js +98 -0
  1021. package/node_modules/prismjs/components/prism-ftl.min.js +1 -0
  1022. package/node_modules/prismjs/components/prism-gap.js +54 -0
  1023. package/node_modules/prismjs/components/prism-gap.min.js +1 -0
  1024. package/node_modules/prismjs/components/prism-gcode.js +16 -0
  1025. package/node_modules/prismjs/components/prism-gcode.min.js +1 -0
  1026. package/node_modules/prismjs/components/prism-gdscript.js +27 -0
  1027. package/node_modules/prismjs/components/prism-gdscript.min.js +1 -0
  1028. package/node_modules/prismjs/components/prism-gedcom.js +28 -0
  1029. package/node_modules/prismjs/components/prism-gedcom.min.js +1 -0
  1030. package/node_modules/prismjs/components/prism-gettext.js +43 -0
  1031. package/node_modules/prismjs/components/prism-gettext.min.js +1 -0
  1032. package/node_modules/prismjs/components/prism-gherkin.js +85 -0
  1033. package/node_modules/prismjs/components/prism-gherkin.min.js +1 -0
  1034. package/node_modules/prismjs/components/prism-git.js +68 -0
  1035. package/node_modules/prismjs/components/prism-git.min.js +1 -0
  1036. package/node_modules/prismjs/components/prism-glsl.js +3 -0
  1037. package/node_modules/prismjs/components/prism-glsl.min.js +1 -0
  1038. package/node_modules/prismjs/components/prism-gml.js +7 -0
  1039. package/node_modules/prismjs/components/prism-gml.min.js +1 -0
  1040. package/node_modules/prismjs/components/prism-gn.js +51 -0
  1041. package/node_modules/prismjs/components/prism-gn.min.js +1 -0
  1042. package/node_modules/prismjs/components/prism-go-module.js +24 -0
  1043. package/node_modules/prismjs/components/prism-go-module.min.js +1 -0
  1044. package/node_modules/prismjs/components/prism-go.js +28 -0
  1045. package/node_modules/prismjs/components/prism-go.min.js +1 -0
  1046. package/node_modules/prismjs/components/prism-gradle.js +63 -0
  1047. package/node_modules/prismjs/components/prism-gradle.min.js +1 -0
  1048. package/node_modules/prismjs/components/prism-graphql.js +211 -0
  1049. package/node_modules/prismjs/components/prism-graphql.min.js +1 -0
  1050. package/node_modules/prismjs/components/prism-groovy.js +65 -0
  1051. package/node_modules/prismjs/components/prism-groovy.min.js +1 -0
  1052. package/node_modules/prismjs/components/prism-haml.js +149 -0
  1053. package/node_modules/prismjs/components/prism-haml.min.js +1 -0
  1054. package/node_modules/prismjs/components/prism-handlebars.js +40 -0
  1055. package/node_modules/prismjs/components/prism-handlebars.min.js +1 -0
  1056. package/node_modules/prismjs/components/prism-haskell.js +66 -0
  1057. package/node_modules/prismjs/components/prism-haskell.min.js +1 -0
  1058. package/node_modules/prismjs/components/prism-haxe.js +78 -0
  1059. package/node_modules/prismjs/components/prism-haxe.min.js +1 -0
  1060. package/node_modules/prismjs/components/prism-hcl.js +63 -0
  1061. package/node_modules/prismjs/components/prism-hcl.min.js +1 -0
  1062. package/node_modules/prismjs/components/prism-hlsl.js +20 -0
  1063. package/node_modules/prismjs/components/prism-hlsl.min.js +1 -0
  1064. package/node_modules/prismjs/components/prism-hoon.js +14 -0
  1065. package/node_modules/prismjs/components/prism-hoon.min.js +1 -0
  1066. package/node_modules/prismjs/components/prism-hpkp.js +14 -0
  1067. package/node_modules/prismjs/components/prism-hpkp.min.js +1 -0
  1068. package/node_modules/prismjs/components/prism-hsts.js +14 -0
  1069. package/node_modules/prismjs/components/prism-hsts.min.js +1 -0
  1070. package/node_modules/prismjs/components/prism-http.js +151 -0
  1071. package/node_modules/prismjs/components/prism-http.min.js +1 -0
  1072. package/node_modules/prismjs/components/prism-ichigojam.js +15 -0
  1073. package/node_modules/prismjs/components/prism-ichigojam.min.js +1 -0
  1074. package/node_modules/prismjs/components/prism-icon.js +20 -0
  1075. package/node_modules/prismjs/components/prism-icon.min.js +1 -0
  1076. package/node_modules/prismjs/components/prism-icu-message-format.js +148 -0
  1077. package/node_modules/prismjs/components/prism-icu-message-format.min.js +1 -0
  1078. package/node_modules/prismjs/components/prism-idris.js +19 -0
  1079. package/node_modules/prismjs/components/prism-idris.min.js +1 -0
  1080. package/node_modules/prismjs/components/prism-iecst.js +32 -0
  1081. package/node_modules/prismjs/components/prism-iecst.min.js +1 -0
  1082. package/node_modules/prismjs/components/prism-ignore.js +23 -0
  1083. package/node_modules/prismjs/components/prism-ignore.min.js +1 -0
  1084. package/node_modules/prismjs/components/prism-inform7.js +61 -0
  1085. package/node_modules/prismjs/components/prism-inform7.min.js +1 -0
  1086. package/node_modules/prismjs/components/prism-ini.js +42 -0
  1087. package/node_modules/prismjs/components/prism-ini.min.js +1 -0
  1088. package/node_modules/prismjs/components/prism-io.js +22 -0
  1089. package/node_modules/prismjs/components/prism-io.min.js +1 -0
  1090. package/node_modules/prismjs/components/prism-j.js +28 -0
  1091. package/node_modules/prismjs/components/prism-j.min.js +1 -0
  1092. package/node_modules/prismjs/components/prism-java.js +124 -0
  1093. package/node_modules/prismjs/components/prism-java.min.js +1 -0
  1094. package/node_modules/prismjs/components/prism-javadoc.js +82 -0
  1095. package/node_modules/prismjs/components/prism-javadoc.min.js +1 -0
  1096. package/node_modules/prismjs/components/prism-javadoclike.js +87 -0
  1097. package/node_modules/prismjs/components/prism-javadoclike.min.js +1 -0
  1098. package/node_modules/prismjs/components/prism-javascript.js +172 -0
  1099. package/node_modules/prismjs/components/prism-javascript.min.js +1 -0
  1100. package/node_modules/prismjs/components/prism-javastacktrace.js +142 -0
  1101. package/node_modules/prismjs/components/prism-javastacktrace.min.js +1 -0
  1102. package/node_modules/prismjs/components/prism-jexl.js +14 -0
  1103. package/node_modules/prismjs/components/prism-jexl.min.js +1 -0
  1104. package/node_modules/prismjs/components/prism-jolie.js +41 -0
  1105. package/node_modules/prismjs/components/prism-jolie.min.js +1 -0
  1106. package/node_modules/prismjs/components/prism-jq.js +69 -0
  1107. package/node_modules/prismjs/components/prism-jq.min.js +1 -0
  1108. package/node_modules/prismjs/components/prism-js-extras.js +135 -0
  1109. package/node_modules/prismjs/components/prism-js-extras.min.js +1 -0
  1110. package/node_modules/prismjs/components/prism-js-templates.js +349 -0
  1111. package/node_modules/prismjs/components/prism-js-templates.min.js +1 -0
  1112. package/node_modules/prismjs/components/prism-jsdoc.js +78 -0
  1113. package/node_modules/prismjs/components/prism-jsdoc.min.js +1 -0
  1114. package/node_modules/prismjs/components/prism-json.js +27 -0
  1115. package/node_modules/prismjs/components/prism-json.min.js +1 -0
  1116. package/node_modules/prismjs/components/prism-json5.js +23 -0
  1117. package/node_modules/prismjs/components/prism-json5.min.js +1 -0
  1118. package/node_modules/prismjs/components/prism-jsonp.js +7 -0
  1119. package/node_modules/prismjs/components/prism-jsonp.min.js +1 -0
  1120. package/node_modules/prismjs/components/prism-jsstacktrace.js +49 -0
  1121. package/node_modules/prismjs/components/prism-jsstacktrace.min.js +1 -0
  1122. package/node_modules/prismjs/components/prism-jsx.js +145 -0
  1123. package/node_modules/prismjs/components/prism-jsx.min.js +1 -0
  1124. package/node_modules/prismjs/components/prism-julia.js +35 -0
  1125. package/node_modules/prismjs/components/prism-julia.min.js +1 -0
  1126. package/node_modules/prismjs/components/prism-keepalived.js +51 -0
  1127. package/node_modules/prismjs/components/prism-keepalived.min.js +1 -0
  1128. package/node_modules/prismjs/components/prism-keyman.js +44 -0
  1129. package/node_modules/prismjs/components/prism-keyman.min.js +1 -0
  1130. package/node_modules/prismjs/components/prism-kotlin.js +88 -0
  1131. package/node_modules/prismjs/components/prism-kotlin.min.js +1 -0
  1132. package/node_modules/prismjs/components/prism-kumir.js +106 -0
  1133. package/node_modules/prismjs/components/prism-kumir.min.js +1 -0
  1134. package/node_modules/prismjs/components/prism-kusto.js +44 -0
  1135. package/node_modules/prismjs/components/prism-kusto.min.js +1 -0
  1136. package/node_modules/prismjs/components/prism-latex.js +64 -0
  1137. package/node_modules/prismjs/components/prism-latex.min.js +1 -0
  1138. package/node_modules/prismjs/components/prism-latte.js +63 -0
  1139. package/node_modules/prismjs/components/prism-latte.min.js +1 -0
  1140. package/node_modules/prismjs/components/prism-less.js +54 -0
  1141. package/node_modules/prismjs/components/prism-less.min.js +1 -0
  1142. package/node_modules/prismjs/components/prism-lilypond.js +69 -0
  1143. package/node_modules/prismjs/components/prism-lilypond.min.js +1 -0
  1144. package/node_modules/prismjs/components/prism-linker-script.js +30 -0
  1145. package/node_modules/prismjs/components/prism-linker-script.min.js +1 -0
  1146. package/node_modules/prismjs/components/prism-liquid.js +66 -0
  1147. package/node_modules/prismjs/components/prism-liquid.min.js +1 -0
  1148. package/node_modules/prismjs/components/prism-lisp.js +197 -0
  1149. package/node_modules/prismjs/components/prism-lisp.min.js +1 -0
  1150. package/node_modules/prismjs/components/prism-livescript.js +119 -0
  1151. package/node_modules/prismjs/components/prism-livescript.min.js +1 -0
  1152. package/node_modules/prismjs/components/prism-llvm.js +19 -0
  1153. package/node_modules/prismjs/components/prism-llvm.min.js +1 -0
  1154. package/node_modules/prismjs/components/prism-log.js +120 -0
  1155. package/node_modules/prismjs/components/prism-log.min.js +1 -0
  1156. package/node_modules/prismjs/components/prism-lolcode.js +55 -0
  1157. package/node_modules/prismjs/components/prism-lolcode.min.js +1 -0
  1158. package/node_modules/prismjs/components/prism-lua.js +20 -0
  1159. package/node_modules/prismjs/components/prism-lua.min.js +1 -0
  1160. package/node_modules/prismjs/components/prism-magma.js +35 -0
  1161. package/node_modules/prismjs/components/prism-magma.min.js +1 -0
  1162. package/node_modules/prismjs/components/prism-makefile.js +34 -0
  1163. package/node_modules/prismjs/components/prism-makefile.min.js +1 -0
  1164. package/node_modules/prismjs/components/prism-markdown.js +415 -0
  1165. package/node_modules/prismjs/components/prism-markdown.min.js +1 -0
  1166. package/node_modules/prismjs/components/prism-markup-templating.js +124 -0
  1167. package/node_modules/prismjs/components/prism-markup-templating.min.js +1 -0
  1168. package/node_modules/prismjs/components/prism-markup.js +186 -0
  1169. package/node_modules/prismjs/components/prism-markup.min.js +1 -0
  1170. package/node_modules/prismjs/components/prism-mata.js +50 -0
  1171. package/node_modules/prismjs/components/prism-mata.min.js +1 -0
  1172. package/node_modules/prismjs/components/prism-matlab.js +16 -0
  1173. package/node_modules/prismjs/components/prism-matlab.min.js +1 -0
  1174. package/node_modules/prismjs/components/prism-maxscript.js +91 -0
  1175. package/node_modules/prismjs/components/prism-maxscript.min.js +1 -0
  1176. package/node_modules/prismjs/components/prism-mel.js +46 -0
  1177. package/node_modules/prismjs/components/prism-mel.min.js +1 -0
  1178. package/node_modules/prismjs/components/prism-mermaid.js +113 -0
  1179. package/node_modules/prismjs/components/prism-mermaid.min.js +1 -0
  1180. package/node_modules/prismjs/components/prism-metafont.js +84 -0
  1181. package/node_modules/prismjs/components/prism-metafont.min.js +1 -0
  1182. package/node_modules/prismjs/components/prism-mizar.js +12 -0
  1183. package/node_modules/prismjs/components/prism-mizar.min.js +1 -0
  1184. package/node_modules/prismjs/components/prism-mongodb.js +97 -0
  1185. package/node_modules/prismjs/components/prism-mongodb.min.js +1 -0
  1186. package/node_modules/prismjs/components/prism-monkey.js +29 -0
  1187. package/node_modules/prismjs/components/prism-monkey.min.js +1 -0
  1188. package/node_modules/prismjs/components/prism-moonscript.js +57 -0
  1189. package/node_modules/prismjs/components/prism-moonscript.min.js +1 -0
  1190. package/node_modules/prismjs/components/prism-n1ql.js +24 -0
  1191. package/node_modules/prismjs/components/prism-n1ql.min.js +1 -0
  1192. package/node_modules/prismjs/components/prism-n4js.js +14 -0
  1193. package/node_modules/prismjs/components/prism-n4js.min.js +1 -0
  1194. package/node_modules/prismjs/components/prism-nand2tetris-hdl.js +9 -0
  1195. package/node_modules/prismjs/components/prism-nand2tetris-hdl.min.js +1 -0
  1196. package/node_modules/prismjs/components/prism-naniscript.js +170 -0
  1197. package/node_modules/prismjs/components/prism-naniscript.min.js +1 -0
  1198. package/node_modules/prismjs/components/prism-nasm.js +24 -0
  1199. package/node_modules/prismjs/components/prism-nasm.min.js +1 -0
  1200. package/node_modules/prismjs/components/prism-neon.js +40 -0
  1201. package/node_modules/prismjs/components/prism-neon.min.js +1 -0
  1202. package/node_modules/prismjs/components/prism-nevod.js +125 -0
  1203. package/node_modules/prismjs/components/prism-nevod.min.js +1 -0
  1204. package/node_modules/prismjs/components/prism-nginx.js +54 -0
  1205. package/node_modules/prismjs/components/prism-nginx.min.js +1 -0
  1206. package/node_modules/prismjs/components/prism-nim.js +44 -0
  1207. package/node_modules/prismjs/components/prism-nim.min.js +1 -0
  1208. package/node_modules/prismjs/components/prism-nix.js +37 -0
  1209. package/node_modules/prismjs/components/prism-nix.min.js +1 -0
  1210. package/node_modules/prismjs/components/prism-nsis.js +30 -0
  1211. package/node_modules/prismjs/components/prism-nsis.min.js +1 -0
  1212. package/node_modules/prismjs/components/prism-objectivec.js +12 -0
  1213. package/node_modules/prismjs/components/prism-objectivec.min.js +1 -0
  1214. package/node_modules/prismjs/components/prism-ocaml.js +58 -0
  1215. package/node_modules/prismjs/components/prism-ocaml.min.js +1 -0
  1216. package/node_modules/prismjs/components/prism-odin.js +99 -0
  1217. package/node_modules/prismjs/components/prism-odin.min.js +1 -0
  1218. package/node_modules/prismjs/components/prism-opencl.js +61 -0
  1219. package/node_modules/prismjs/components/prism-opencl.min.js +1 -0
  1220. package/node_modules/prismjs/components/prism-openqasm.js +23 -0
  1221. package/node_modules/prismjs/components/prism-openqasm.min.js +1 -0
  1222. package/node_modules/prismjs/components/prism-oz.js +28 -0
  1223. package/node_modules/prismjs/components/prism-oz.min.js +1 -0
  1224. package/node_modules/prismjs/components/prism-parigp.js +30 -0
  1225. package/node_modules/prismjs/components/prism-parigp.min.js +1 -0
  1226. package/node_modules/prismjs/components/prism-parser.js +73 -0
  1227. package/node_modules/prismjs/components/prism-parser.min.js +1 -0
  1228. package/node_modules/prismjs/components/prism-pascal.js +71 -0
  1229. package/node_modules/prismjs/components/prism-pascal.min.js +1 -0
  1230. package/node_modules/prismjs/components/prism-pascaligo.js +62 -0
  1231. package/node_modules/prismjs/components/prism-pascaligo.min.js +1 -0
  1232. package/node_modules/prismjs/components/prism-pcaxis.js +53 -0
  1233. package/node_modules/prismjs/components/prism-pcaxis.min.js +1 -0
  1234. package/node_modules/prismjs/components/prism-peoplecode.js +42 -0
  1235. package/node_modules/prismjs/components/prism-peoplecode.min.js +1 -0
  1236. package/node_modules/prismjs/components/prism-perl.js +156 -0
  1237. package/node_modules/prismjs/components/prism-perl.min.js +1 -0
  1238. package/node_modules/prismjs/components/prism-php-extras.js +14 -0
  1239. package/node_modules/prismjs/components/prism-php-extras.min.js +1 -0
  1240. package/node_modules/prismjs/components/prism-php.js +342 -0
  1241. package/node_modules/prismjs/components/prism-php.min.js +1 -0
  1242. package/node_modules/prismjs/components/prism-phpdoc.js +27 -0
  1243. package/node_modules/prismjs/components/prism-phpdoc.min.js +1 -0
  1244. package/node_modules/prismjs/components/prism-plant-uml.js +103 -0
  1245. package/node_modules/prismjs/components/prism-plant-uml.min.js +1 -0
  1246. package/node_modules/prismjs/components/prism-plsql.js +17 -0
  1247. package/node_modules/prismjs/components/prism-plsql.min.js +1 -0
  1248. package/node_modules/prismjs/components/prism-powerquery.js +55 -0
  1249. package/node_modules/prismjs/components/prism-powerquery.min.js +1 -0
  1250. package/node_modules/prismjs/components/prism-powershell.js +58 -0
  1251. package/node_modules/prismjs/components/prism-powershell.min.js +1 -0
  1252. package/node_modules/prismjs/components/prism-processing.js +15 -0
  1253. package/node_modules/prismjs/components/prism-processing.min.js +1 -0
  1254. package/node_modules/prismjs/components/prism-prolog.js +19 -0
  1255. package/node_modules/prismjs/components/prism-prolog.min.js +1 -0
  1256. package/node_modules/prismjs/components/prism-promql.js +99 -0
  1257. package/node_modules/prismjs/components/prism-promql.min.js +1 -0
  1258. package/node_modules/prismjs/components/prism-properties.js +13 -0
  1259. package/node_modules/prismjs/components/prism-properties.min.js +1 -0
  1260. package/node_modules/prismjs/components/prism-protobuf.js +43 -0
  1261. package/node_modules/prismjs/components/prism-protobuf.min.js +1 -0
  1262. package/node_modules/prismjs/components/prism-psl.js +35 -0
  1263. package/node_modules/prismjs/components/prism-psl.min.js +1 -0
  1264. package/node_modules/prismjs/components/prism-pug.js +188 -0
  1265. package/node_modules/prismjs/components/prism-pug.min.js +1 -0
  1266. package/node_modules/prismjs/components/prism-puppet.js +136 -0
  1267. package/node_modules/prismjs/components/prism-puppet.min.js +1 -0
  1268. package/node_modules/prismjs/components/prism-pure.js +82 -0
  1269. package/node_modules/prismjs/components/prism-pure.min.js +1 -0
  1270. package/node_modules/prismjs/components/prism-purebasic.js +70 -0
  1271. package/node_modules/prismjs/components/prism-purebasic.min.js +1 -0
  1272. package/node_modules/prismjs/components/prism-purescript.js +31 -0
  1273. package/node_modules/prismjs/components/prism-purescript.min.js +1 -0
  1274. package/node_modules/prismjs/components/prism-python.js +65 -0
  1275. package/node_modules/prismjs/components/prism-python.min.js +1 -0
  1276. package/node_modules/prismjs/components/prism-q.js +51 -0
  1277. package/node_modules/prismjs/components/prism-q.min.js +1 -0
  1278. package/node_modules/prismjs/components/prism-qml.js +61 -0
  1279. package/node_modules/prismjs/components/prism-qml.min.js +1 -0
  1280. package/node_modules/prismjs/components/prism-qore.js +20 -0
  1281. package/node_modules/prismjs/components/prism-qore.min.js +1 -0
  1282. package/node_modules/prismjs/components/prism-qsharp.js +132 -0
  1283. package/node_modules/prismjs/components/prism-qsharp.min.js +1 -0
  1284. package/node_modules/prismjs/components/prism-r.js +22 -0
  1285. package/node_modules/prismjs/components/prism-r.min.js +1 -0
  1286. package/node_modules/prismjs/components/prism-racket.js +18 -0
  1287. package/node_modules/prismjs/components/prism-racket.min.js +1 -0
  1288. package/node_modules/prismjs/components/prism-reason.js +25 -0
  1289. package/node_modules/prismjs/components/prism-reason.min.js +1 -0
  1290. package/node_modules/prismjs/components/prism-regex.js +104 -0
  1291. package/node_modules/prismjs/components/prism-regex.min.js +1 -0
  1292. package/node_modules/prismjs/components/prism-rego.js +30 -0
  1293. package/node_modules/prismjs/components/prism-rego.min.js +1 -0
  1294. package/node_modules/prismjs/components/prism-renpy.js +29 -0
  1295. package/node_modules/prismjs/components/prism-renpy.min.js +1 -0
  1296. package/node_modules/prismjs/components/prism-rescript.js +60 -0
  1297. package/node_modules/prismjs/components/prism-rescript.min.js +1 -0
  1298. package/node_modules/prismjs/components/prism-rest.js +205 -0
  1299. package/node_modules/prismjs/components/prism-rest.min.js +1 -0
  1300. package/node_modules/prismjs/components/prism-rip.js +38 -0
  1301. package/node_modules/prismjs/components/prism-rip.min.js +1 -0
  1302. package/node_modules/prismjs/components/prism-roboconf.js +27 -0
  1303. package/node_modules/prismjs/components/prism-roboconf.min.js +1 -0
  1304. package/node_modules/prismjs/components/prism-robotframework.js +104 -0
  1305. package/node_modules/prismjs/components/prism-robotframework.min.js +1 -0
  1306. package/node_modules/prismjs/components/prism-ruby.js +189 -0
  1307. package/node_modules/prismjs/components/prism-ruby.min.js +1 -0
  1308. package/node_modules/prismjs/components/prism-rust.js +128 -0
  1309. package/node_modules/prismjs/components/prism-rust.min.js +1 -0
  1310. package/node_modules/prismjs/components/prism-sas.js +326 -0
  1311. package/node_modules/prismjs/components/prism-sas.min.js +1 -0
  1312. package/node_modules/prismjs/components/prism-sass.js +77 -0
  1313. package/node_modules/prismjs/components/prism-sass.min.js +1 -0
  1314. package/node_modules/prismjs/components/prism-scala.js +50 -0
  1315. package/node_modules/prismjs/components/prism-scala.min.js +1 -0
  1316. package/node_modules/prismjs/components/prism-scheme.js +120 -0
  1317. package/node_modules/prismjs/components/prism-scheme.min.js +1 -0
  1318. package/node_modules/prismjs/components/prism-scss.js +81 -0
  1319. package/node_modules/prismjs/components/prism-scss.min.js +1 -0
  1320. package/node_modules/prismjs/components/prism-shell-session.js +70 -0
  1321. package/node_modules/prismjs/components/prism-shell-session.min.js +1 -0
  1322. package/node_modules/prismjs/components/prism-smali.js +87 -0
  1323. package/node_modules/prismjs/components/prism-smali.min.js +1 -0
  1324. package/node_modules/prismjs/components/prism-smalltalk.js +38 -0
  1325. package/node_modules/prismjs/components/prism-smalltalk.min.js +1 -0
  1326. package/node_modules/prismjs/components/prism-smarty.js +131 -0
  1327. package/node_modules/prismjs/components/prism-smarty.min.js +1 -0
  1328. package/node_modules/prismjs/components/prism-sml.js +68 -0
  1329. package/node_modules/prismjs/components/prism-sml.min.js +1 -0
  1330. package/node_modules/prismjs/components/prism-solidity.js +22 -0
  1331. package/node_modules/prismjs/components/prism-solidity.min.js +1 -0
  1332. package/node_modules/prismjs/components/prism-solution-file.js +51 -0
  1333. package/node_modules/prismjs/components/prism-solution-file.min.js +1 -0
  1334. package/node_modules/prismjs/components/prism-soy.js +96 -0
  1335. package/node_modules/prismjs/components/prism-soy.min.js +1 -0
  1336. package/node_modules/prismjs/components/prism-sparql.js +18 -0
  1337. package/node_modules/prismjs/components/prism-sparql.min.js +1 -0
  1338. package/node_modules/prismjs/components/prism-splunk-spl.js +24 -0
  1339. package/node_modules/prismjs/components/prism-splunk-spl.min.js +1 -0
  1340. package/node_modules/prismjs/components/prism-sqf.js +34 -0
  1341. package/node_modules/prismjs/components/prism-sqf.min.js +1 -0
  1342. package/node_modules/prismjs/components/prism-sql.js +32 -0
  1343. package/node_modules/prismjs/components/prism-sql.min.js +1 -0
  1344. package/node_modules/prismjs/components/prism-squirrel.js +47 -0
  1345. package/node_modules/prismjs/components/prism-squirrel.min.js +1 -0
  1346. package/node_modules/prismjs/components/prism-stan.js +65 -0
  1347. package/node_modules/prismjs/components/prism-stan.min.js +1 -0
  1348. package/node_modules/prismjs/components/prism-stata.js +76 -0
  1349. package/node_modules/prismjs/components/prism-stata.min.js +1 -0
  1350. package/node_modules/prismjs/components/prism-stylus.js +143 -0
  1351. package/node_modules/prismjs/components/prism-stylus.min.js +1 -0
  1352. package/node_modules/prismjs/components/prism-supercollider.js +36 -0
  1353. package/node_modules/prismjs/components/prism-supercollider.min.js +1 -0
  1354. package/node_modules/prismjs/components/prism-swift.js +148 -0
  1355. package/node_modules/prismjs/components/prism-swift.min.js +1 -0
  1356. package/node_modules/prismjs/components/prism-systemd.js +74 -0
  1357. package/node_modules/prismjs/components/prism-systemd.min.js +1 -0
  1358. package/node_modules/prismjs/components/prism-t4-cs.js +1 -0
  1359. package/node_modules/prismjs/components/prism-t4-cs.min.js +1 -0
  1360. package/node_modules/prismjs/components/prism-t4-templating.js +49 -0
  1361. package/node_modules/prismjs/components/prism-t4-templating.min.js +1 -0
  1362. package/node_modules/prismjs/components/prism-t4-vb.js +1 -0
  1363. package/node_modules/prismjs/components/prism-t4-vb.min.js +1 -0
  1364. package/node_modules/prismjs/components/prism-tap.js +22 -0
  1365. package/node_modules/prismjs/components/prism-tap.min.js +1 -0
  1366. package/node_modules/prismjs/components/prism-tcl.js +46 -0
  1367. package/node_modules/prismjs/components/prism-tcl.min.js +1 -0
  1368. package/node_modules/prismjs/components/prism-textile.js +286 -0
  1369. package/node_modules/prismjs/components/prism-textile.min.js +1 -0
  1370. package/node_modules/prismjs/components/prism-toml.js +49 -0
  1371. package/node_modules/prismjs/components/prism-toml.min.js +1 -0
  1372. package/node_modules/prismjs/components/prism-tremor.js +72 -0
  1373. package/node_modules/prismjs/components/prism-tremor.min.js +1 -0
  1374. package/node_modules/prismjs/components/prism-tsx.js +15 -0
  1375. package/node_modules/prismjs/components/prism-tsx.min.js +1 -0
  1376. package/node_modules/prismjs/components/prism-tt2.js +53 -0
  1377. package/node_modules/prismjs/components/prism-tt2.min.js +1 -0
  1378. package/node_modules/prismjs/components/prism-turtle.js +54 -0
  1379. package/node_modules/prismjs/components/prism-turtle.min.js +1 -0
  1380. package/node_modules/prismjs/components/prism-twig.js +44 -0
  1381. package/node_modules/prismjs/components/prism-twig.min.js +1 -0
  1382. package/node_modules/prismjs/components/prism-typescript.js +60 -0
  1383. package/node_modules/prismjs/components/prism-typescript.min.js +1 -0
  1384. package/node_modules/prismjs/components/prism-typoscript.js +80 -0
  1385. package/node_modules/prismjs/components/prism-typoscript.min.js +1 -0
  1386. package/node_modules/prismjs/components/prism-unrealscript.js +42 -0
  1387. package/node_modules/prismjs/components/prism-unrealscript.min.js +1 -0
  1388. package/node_modules/prismjs/components/prism-uorazor.js +48 -0
  1389. package/node_modules/prismjs/components/prism-uorazor.min.js +1 -0
  1390. package/node_modules/prismjs/components/prism-uri.js +96 -0
  1391. package/node_modules/prismjs/components/prism-uri.min.js +1 -0
  1392. package/node_modules/prismjs/components/prism-v.js +81 -0
  1393. package/node_modules/prismjs/components/prism-v.min.js +1 -0
  1394. package/node_modules/prismjs/components/prism-vala.js +84 -0
  1395. package/node_modules/prismjs/components/prism-vala.min.js +1 -0
  1396. package/node_modules/prismjs/components/prism-vbnet.js +22 -0
  1397. package/node_modules/prismjs/components/prism-vbnet.min.js +1 -0
  1398. package/node_modules/prismjs/components/prism-velocity.js +72 -0
  1399. package/node_modules/prismjs/components/prism-velocity.min.js +1 -0
  1400. package/node_modules/prismjs/components/prism-verilog.js +26 -0
  1401. package/node_modules/prismjs/components/prism-verilog.min.js +1 -0
  1402. package/node_modules/prismjs/components/prism-vhdl.js +26 -0
  1403. package/node_modules/prismjs/components/prism-vhdl.min.js +1 -0
  1404. package/node_modules/prismjs/components/prism-vim.js +10 -0
  1405. package/node_modules/prismjs/components/prism-vim.min.js +1 -0
  1406. package/node_modules/prismjs/components/prism-visual-basic.js +29 -0
  1407. package/node_modules/prismjs/components/prism-visual-basic.min.js +1 -0
  1408. package/node_modules/prismjs/components/prism-warpscript.js +21 -0
  1409. package/node_modules/prismjs/components/prism-warpscript.min.js +1 -0
  1410. package/node_modules/prismjs/components/prism-wasm.js +31 -0
  1411. package/node_modules/prismjs/components/prism-wasm.min.js +1 -0
  1412. package/node_modules/prismjs/components/prism-web-idl.js +101 -0
  1413. package/node_modules/prismjs/components/prism-web-idl.min.js +1 -0
  1414. package/node_modules/prismjs/components/prism-wgsl.js +69 -0
  1415. package/node_modules/prismjs/components/prism-wgsl.min.js +1 -0
  1416. package/node_modules/prismjs/components/prism-wiki.js +82 -0
  1417. package/node_modules/prismjs/components/prism-wiki.min.js +1 -0
  1418. package/node_modules/prismjs/components/prism-wolfram.js +29 -0
  1419. package/node_modules/prismjs/components/prism-wolfram.min.js +1 -0
  1420. package/node_modules/prismjs/components/prism-wren.js +100 -0
  1421. package/node_modules/prismjs/components/prism-wren.min.js +1 -0
  1422. package/node_modules/prismjs/components/prism-xeora.js +114 -0
  1423. package/node_modules/prismjs/components/prism-xeora.min.js +1 -0
  1424. package/node_modules/prismjs/components/prism-xml-doc.js +40 -0
  1425. package/node_modules/prismjs/components/prism-xml-doc.min.js +1 -0
  1426. package/node_modules/prismjs/components/prism-xojo.js +21 -0
  1427. package/node_modules/prismjs/components/prism-xojo.min.js +1 -0
  1428. package/node_modules/prismjs/components/prism-xquery.js +162 -0
  1429. package/node_modules/prismjs/components/prism-xquery.min.js +1 -0
  1430. package/node_modules/prismjs/components/prism-yaml.js +83 -0
  1431. package/node_modules/prismjs/components/prism-yaml.min.js +1 -0
  1432. package/node_modules/prismjs/components/prism-yang.js +20 -0
  1433. package/node_modules/prismjs/components/prism-yang.min.js +1 -0
  1434. package/node_modules/prismjs/components/prism-zig.js +101 -0
  1435. package/node_modules/prismjs/components/prism-zig.min.js +1 -0
  1436. package/node_modules/prismjs/components.js +2 -0
  1437. package/node_modules/prismjs/components.json +1766 -0
  1438. package/node_modules/prismjs/dependencies.js +452 -0
  1439. package/node_modules/prismjs/package.json +89 -0
  1440. package/node_modules/prismjs/plugins/autolinker/prism-autolinker.css +3 -0
  1441. package/node_modules/prismjs/plugins/autolinker/prism-autolinker.js +76 -0
  1442. package/node_modules/prismjs/plugins/autolinker/prism-autolinker.min.css +1 -0
  1443. package/node_modules/prismjs/plugins/autolinker/prism-autolinker.min.js +1 -0
  1444. package/node_modules/prismjs/plugins/autoloader/prism-autoloader.js +541 -0
  1445. package/node_modules/prismjs/plugins/autoloader/prism-autoloader.min.js +1 -0
  1446. package/node_modules/prismjs/plugins/command-line/prism-command-line.css +43 -0
  1447. package/node_modules/prismjs/plugins/command-line/prism-command-line.js +239 -0
  1448. package/node_modules/prismjs/plugins/command-line/prism-command-line.min.css +1 -0
  1449. package/node_modules/prismjs/plugins/command-line/prism-command-line.min.js +1 -0
  1450. package/node_modules/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.js +160 -0
  1451. package/node_modules/prismjs/plugins/copy-to-clipboard/prism-copy-to-clipboard.min.js +1 -0
  1452. package/node_modules/prismjs/plugins/custom-class/prism-custom-class.js +110 -0
  1453. package/node_modules/prismjs/plugins/custom-class/prism-custom-class.min.js +1 -0
  1454. package/node_modules/prismjs/plugins/data-uri-highlight/prism-data-uri-highlight.js +94 -0
  1455. package/node_modules/prismjs/plugins/data-uri-highlight/prism-data-uri-highlight.min.js +1 -0
  1456. package/node_modules/prismjs/plugins/diff-highlight/prism-diff-highlight.css +13 -0
  1457. package/node_modules/prismjs/plugins/diff-highlight/prism-diff-highlight.js +90 -0
  1458. package/node_modules/prismjs/plugins/diff-highlight/prism-diff-highlight.min.css +1 -0
  1459. package/node_modules/prismjs/plugins/diff-highlight/prism-diff-highlight.min.js +1 -0
  1460. package/node_modules/prismjs/plugins/download-button/prism-download-button.js +20 -0
  1461. package/node_modules/prismjs/plugins/download-button/prism-download-button.min.js +1 -0
  1462. package/node_modules/prismjs/plugins/file-highlight/prism-file-highlight.js +195 -0
  1463. package/node_modules/prismjs/plugins/file-highlight/prism-file-highlight.min.js +1 -0
  1464. package/node_modules/prismjs/plugins/filter-highlight-all/prism-filter-highlight-all.js +127 -0
  1465. package/node_modules/prismjs/plugins/filter-highlight-all/prism-filter-highlight-all.min.js +1 -0
  1466. package/node_modules/prismjs/plugins/highlight-keywords/prism-highlight-keywords.js +14 -0
  1467. package/node_modules/prismjs/plugins/highlight-keywords/prism-highlight-keywords.min.js +1 -0
  1468. package/node_modules/prismjs/plugins/inline-color/prism-inline-color.css +33 -0
  1469. package/node_modules/prismjs/plugins/inline-color/prism-inline-color.js +105 -0
  1470. package/node_modules/prismjs/plugins/inline-color/prism-inline-color.min.css +1 -0
  1471. package/node_modules/prismjs/plugins/inline-color/prism-inline-color.min.js +1 -0
  1472. package/node_modules/prismjs/plugins/jsonp-highlight/prism-jsonp-highlight.js +303 -0
  1473. package/node_modules/prismjs/plugins/jsonp-highlight/prism-jsonp-highlight.min.js +1 -0
  1474. package/node_modules/prismjs/plugins/keep-markup/prism-keep-markup.js +126 -0
  1475. package/node_modules/prismjs/plugins/keep-markup/prism-keep-markup.min.js +1 -0
  1476. package/node_modules/prismjs/plugins/line-highlight/prism-line-highlight.css +70 -0
  1477. package/node_modules/prismjs/plugins/line-highlight/prism-line-highlight.js +346 -0
  1478. package/node_modules/prismjs/plugins/line-highlight/prism-line-highlight.min.css +1 -0
  1479. package/node_modules/prismjs/plugins/line-highlight/prism-line-highlight.min.js +1 -0
  1480. package/node_modules/prismjs/plugins/line-numbers/prism-line-numbers.css +40 -0
  1481. package/node_modules/prismjs/plugins/line-numbers/prism-line-numbers.js +252 -0
  1482. package/node_modules/prismjs/plugins/line-numbers/prism-line-numbers.min.css +1 -0
  1483. package/node_modules/prismjs/plugins/line-numbers/prism-line-numbers.min.js +1 -0
  1484. package/node_modules/prismjs/plugins/match-braces/prism-match-braces.css +29 -0
  1485. package/node_modules/prismjs/plugins/match-braces/prism-match-braces.js +190 -0
  1486. package/node_modules/prismjs/plugins/match-braces/prism-match-braces.min.css +1 -0
  1487. package/node_modules/prismjs/plugins/match-braces/prism-match-braces.min.js +1 -0
  1488. package/node_modules/prismjs/plugins/normalize-whitespace/prism-normalize-whitespace.js +229 -0
  1489. package/node_modules/prismjs/plugins/normalize-whitespace/prism-normalize-whitespace.min.js +1 -0
  1490. package/node_modules/prismjs/plugins/previewers/prism-previewers.css +243 -0
  1491. package/node_modules/prismjs/plugins/previewers/prism-previewers.js +712 -0
  1492. package/node_modules/prismjs/plugins/previewers/prism-previewers.min.css +1 -0
  1493. package/node_modules/prismjs/plugins/previewers/prism-previewers.min.js +1 -0
  1494. package/node_modules/prismjs/plugins/remove-initial-line-feed/prism-remove-initial-line-feed.js +21 -0
  1495. package/node_modules/prismjs/plugins/remove-initial-line-feed/prism-remove-initial-line-feed.min.js +1 -0
  1496. package/node_modules/prismjs/plugins/show-invisibles/prism-show-invisibles.css +34 -0
  1497. package/node_modules/prismjs/plugins/show-invisibles/prism-show-invisibles.js +83 -0
  1498. package/node_modules/prismjs/plugins/show-invisibles/prism-show-invisibles.min.css +1 -0
  1499. package/node_modules/prismjs/plugins/show-invisibles/prism-show-invisibles.min.js +1 -0
  1500. package/node_modules/prismjs/plugins/show-language/prism-show-language.js +325 -0
  1501. package/node_modules/prismjs/plugins/show-language/prism-show-language.min.js +1 -0
  1502. package/node_modules/prismjs/plugins/toolbar/prism-toolbar.css +65 -0
  1503. package/node_modules/prismjs/plugins/toolbar/prism-toolbar.js +179 -0
  1504. package/node_modules/prismjs/plugins/toolbar/prism-toolbar.min.css +1 -0
  1505. package/node_modules/prismjs/plugins/toolbar/prism-toolbar.min.js +1 -0
  1506. package/node_modules/prismjs/plugins/treeview/prism-treeview.css +168 -0
  1507. package/node_modules/prismjs/plugins/treeview/prism-treeview.js +70 -0
  1508. package/node_modules/prismjs/plugins/treeview/prism-treeview.min.css +1 -0
  1509. package/node_modules/prismjs/plugins/treeview/prism-treeview.min.js +1 -0
  1510. package/node_modules/prismjs/plugins/unescaped-markup/prism-unescaped-markup.css +10 -0
  1511. package/node_modules/prismjs/plugins/unescaped-markup/prism-unescaped-markup.js +62 -0
  1512. package/node_modules/prismjs/plugins/unescaped-markup/prism-unescaped-markup.min.css +1 -0
  1513. package/node_modules/prismjs/plugins/unescaped-markup/prism-unescaped-markup.min.js +1 -0
  1514. package/node_modules/prismjs/plugins/wpd/prism-wpd.css +11 -0
  1515. package/node_modules/prismjs/plugins/wpd/prism-wpd.js +154 -0
  1516. package/node_modules/prismjs/plugins/wpd/prism-wpd.min.css +1 -0
  1517. package/node_modules/prismjs/plugins/wpd/prism-wpd.min.js +1 -0
  1518. package/node_modules/prismjs/prism.js +1946 -0
  1519. package/node_modules/prismjs/themes/prism-coy.css +219 -0
  1520. package/node_modules/prismjs/themes/prism-coy.min.css +1 -0
  1521. package/node_modules/prismjs/themes/prism-dark.css +129 -0
  1522. package/node_modules/prismjs/themes/prism-dark.min.css +1 -0
  1523. package/node_modules/prismjs/themes/prism-funky.css +130 -0
  1524. package/node_modules/prismjs/themes/prism-funky.min.css +1 -0
  1525. package/node_modules/prismjs/themes/prism-okaidia.css +123 -0
  1526. package/node_modules/prismjs/themes/prism-okaidia.min.css +1 -0
  1527. package/node_modules/prismjs/themes/prism-solarizedlight.css +150 -0
  1528. package/node_modules/prismjs/themes/prism-solarizedlight.min.css +1 -0
  1529. package/node_modules/prismjs/themes/prism-tomorrow.css +122 -0
  1530. package/node_modules/prismjs/themes/prism-tomorrow.min.css +1 -0
  1531. package/node_modules/prismjs/themes/prism-twilight.css +169 -0
  1532. package/node_modules/prismjs/themes/prism-twilight.min.css +1 -0
  1533. package/node_modules/prismjs/themes/prism.css +140 -0
  1534. package/node_modules/prismjs/themes/prism.min.css +1 -0
  1535. package/node_modules/property-information/index.d.ts +118 -0
  1536. package/node_modules/property-information/index.js +17 -0
  1537. package/node_modules/property-information/lib/aria.d.ts +2 -0
  1538. package/node_modules/property-information/lib/aria.d.ts.map +1 -0
  1539. package/node_modules/property-information/lib/aria.js +61 -0
  1540. package/node_modules/property-information/lib/find.d.ts +34 -0
  1541. package/node_modules/property-information/lib/find.d.ts.map +1 -0
  1542. package/node_modules/property-information/lib/find.js +97 -0
  1543. package/node_modules/property-information/lib/hast-to-react.d.ts +13 -0
  1544. package/node_modules/property-information/lib/hast-to-react.d.ts.map +1 -0
  1545. package/node_modules/property-information/lib/hast-to-react.js +30 -0
  1546. package/node_modules/property-information/lib/html.d.ts +2 -0
  1547. package/node_modules/property-information/lib/html.d.ts.map +1 -0
  1548. package/node_modules/property-information/lib/html.js +322 -0
  1549. package/node_modules/property-information/lib/normalize.d.ts +11 -0
  1550. package/node_modules/property-information/lib/normalize.d.ts.map +1 -0
  1551. package/node_modules/property-information/lib/normalize.js +12 -0
  1552. package/node_modules/property-information/lib/svg.d.ts +2 -0
  1553. package/node_modules/property-information/lib/svg.d.ts.map +1 -0
  1554. package/node_modules/property-information/lib/svg.js +567 -0
  1555. package/node_modules/property-information/lib/util/case-insensitive-transform.d.ts +10 -0
  1556. package/node_modules/property-information/lib/util/case-insensitive-transform.d.ts.map +1 -0
  1557. package/node_modules/property-information/lib/util/case-insensitive-transform.js +13 -0
  1558. package/node_modules/property-information/lib/util/case-sensitive-transform.d.ts +10 -0
  1559. package/node_modules/property-information/lib/util/case-sensitive-transform.d.ts.map +1 -0
  1560. package/node_modules/property-information/lib/util/case-sensitive-transform.js +11 -0
  1561. package/node_modules/property-information/lib/util/create.d.ts +39 -0
  1562. package/node_modules/property-information/lib/util/create.d.ts.map +1 -0
  1563. package/node_modules/property-information/lib/util/create.js +69 -0
  1564. package/node_modules/property-information/lib/util/defined-info.d.ts +19 -0
  1565. package/node_modules/property-information/lib/util/defined-info.d.ts.map +1 -0
  1566. package/node_modules/property-information/lib/util/defined-info.js +60 -0
  1567. package/node_modules/property-information/lib/util/info.d.ts +28 -0
  1568. package/node_modules/property-information/lib/util/info.d.ts.map +1 -0
  1569. package/node_modules/property-information/lib/util/info.js +32 -0
  1570. package/node_modules/property-information/lib/util/merge.d.ts +12 -0
  1571. package/node_modules/property-information/lib/util/merge.d.ts.map +1 -0
  1572. package/node_modules/property-information/lib/util/merge.js +27 -0
  1573. package/node_modules/property-information/lib/util/schema.d.ts +23 -0
  1574. package/node_modules/property-information/lib/util/schema.d.ts.map +1 -0
  1575. package/node_modules/property-information/lib/util/schema.js +29 -0
  1576. package/node_modules/property-information/lib/util/types.d.ts +8 -0
  1577. package/node_modules/property-information/lib/util/types.d.ts.map +1 -0
  1578. package/node_modules/property-information/lib/util/types.js +13 -0
  1579. package/node_modules/property-information/lib/xlink.d.ts +2 -0
  1580. package/node_modules/property-information/lib/xlink.d.ts.map +1 -0
  1581. package/node_modules/property-information/lib/xlink.js +17 -0
  1582. package/node_modules/property-information/lib/xml.d.ts +2 -0
  1583. package/node_modules/property-information/lib/xml.d.ts.map +1 -0
  1584. package/node_modules/property-information/lib/xml.js +9 -0
  1585. package/node_modules/property-information/lib/xmlns.d.ts +2 -0
  1586. package/node_modules/property-information/lib/xmlns.d.ts.map +1 -0
  1587. package/node_modules/property-information/lib/xmlns.js +9 -0
  1588. package/node_modules/property-information/license +22 -0
  1589. package/node_modules/property-information/package.json +121 -0
  1590. package/node_modules/property-information/readme.md +1062 -0
  1591. package/node_modules/react-syntax-highlighter/.codecov.yml +3 -0
  1592. package/node_modules/react-syntax-highlighter/.eslintignore +8 -0
  1593. package/node_modules/react-syntax-highlighter/.eslintrc.js +37 -0
  1594. package/node_modules/react-syntax-highlighter/.github/FUNDING.yml +3 -0
  1595. package/node_modules/react-syntax-highlighter/.github/ISSUE_TEMPLATE/bug_report.md +35 -0
  1596. package/node_modules/react-syntax-highlighter/.github/ISSUE_TEMPLATE/feature_request.md +17 -0
  1597. package/node_modules/react-syntax-highlighter/.github/workflows/codeql-analysis.yml +72 -0
  1598. package/node_modules/react-syntax-highlighter/.github/workflows/nodejs.yml +25 -0
  1599. package/node_modules/react-syntax-highlighter/.prettierignore +8 -0
  1600. package/node_modules/react-syntax-highlighter/.prettierrc +3 -0
  1601. package/node_modules/react-syntax-highlighter/AVAILABLE_LANGUAGES_HLJS.MD +192 -0
  1602. package/node_modules/react-syntax-highlighter/AVAILABLE_LANGUAGES_PRISM.MD +298 -0
  1603. package/node_modules/react-syntax-highlighter/AVAILABLE_STYLES_HLJS.MD +98 -0
  1604. package/node_modules/react-syntax-highlighter/AVAILABLE_STYLES_PRISM.MD +45 -0
  1605. package/node_modules/react-syntax-highlighter/CHANGELOG.MD +612 -0
  1606. package/node_modules/react-syntax-highlighter/CODE_OF_CONDUCT.md +46 -0
  1607. package/node_modules/react-syntax-highlighter/LICENSE +21 -0
  1608. package/node_modules/react-syntax-highlighter/README.md +208 -0
  1609. package/node_modules/react-syntax-highlighter/create-element.js +1 -0
  1610. package/node_modules/react-syntax-highlighter/dist/cjs/async-languages/create-language-async-loader.js +32 -0
  1611. package/node_modules/react-syntax-highlighter/dist/cjs/async-languages/hljs.js +967 -0
  1612. package/node_modules/react-syntax-highlighter/dist/cjs/async-languages/prism.js +1497 -0
  1613. package/node_modules/react-syntax-highlighter/dist/cjs/async-syntax-highlighter.js +164 -0
  1614. package/node_modules/react-syntax-highlighter/dist/cjs/checkForListedLanguage.js +10 -0
  1615. package/node_modules/react-syntax-highlighter/dist/cjs/create-element.js +116 -0
  1616. package/node_modules/react-syntax-highlighter/dist/cjs/default-highlight.js +14 -0
  1617. package/node_modules/react-syntax-highlighter/dist/cjs/highlight.js +392 -0
  1618. package/node_modules/react-syntax-highlighter/dist/cjs/index.js +62 -0
  1619. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/1c.js +9 -0
  1620. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/abnf.js +9 -0
  1621. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/accesslog.js +9 -0
  1622. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/actionscript.js +9 -0
  1623. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ada.js +9 -0
  1624. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/angelscript.js +9 -0
  1625. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/apache.js +9 -0
  1626. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/applescript.js +9 -0
  1627. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/arcade.js +9 -0
  1628. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/arduino.js +9 -0
  1629. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/armasm.js +9 -0
  1630. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/asciidoc.js +9 -0
  1631. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/aspectj.js +9 -0
  1632. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/autohotkey.js +9 -0
  1633. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/autoit.js +9 -0
  1634. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/avrasm.js +9 -0
  1635. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/awk.js +9 -0
  1636. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/axapta.js +9 -0
  1637. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/bash.js +9 -0
  1638. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/basic.js +9 -0
  1639. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/bnf.js +9 -0
  1640. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/brainfuck.js +9 -0
  1641. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/c-like.js +9 -0
  1642. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/c.js +9 -0
  1643. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/cal.js +9 -0
  1644. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/capnproto.js +9 -0
  1645. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ceylon.js +9 -0
  1646. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/clean.js +9 -0
  1647. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/clojure-repl.js +9 -0
  1648. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/clojure.js +9 -0
  1649. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/cmake.js +9 -0
  1650. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/coffeescript.js +9 -0
  1651. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/coq.js +9 -0
  1652. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/cos.js +9 -0
  1653. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/cpp.js +9 -0
  1654. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/crmsh.js +9 -0
  1655. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/crystal.js +9 -0
  1656. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/cs.js +9 -0
  1657. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/csharp.js +9 -0
  1658. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/csp.js +9 -0
  1659. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/css.js +9 -0
  1660. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/d.js +9 -0
  1661. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dart.js +9 -0
  1662. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/delphi.js +9 -0
  1663. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/diff.js +9 -0
  1664. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/django.js +9 -0
  1665. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dns.js +9 -0
  1666. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dockerfile.js +9 -0
  1667. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dos.js +9 -0
  1668. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dsconfig.js +9 -0
  1669. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dts.js +9 -0
  1670. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/dust.js +9 -0
  1671. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ebnf.js +9 -0
  1672. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/elixir.js +9 -0
  1673. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/elm.js +9 -0
  1674. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/erb.js +9 -0
  1675. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/erlang-repl.js +9 -0
  1676. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/erlang.js +9 -0
  1677. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/excel.js +9 -0
  1678. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/fix.js +9 -0
  1679. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/flix.js +9 -0
  1680. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/fortran.js +9 -0
  1681. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/fsharp.js +9 -0
  1682. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/gams.js +9 -0
  1683. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/gauss.js +9 -0
  1684. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/gcode.js +9 -0
  1685. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/gherkin.js +9 -0
  1686. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/glsl.js +9 -0
  1687. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/gml.js +9 -0
  1688. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/go.js +9 -0
  1689. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/golo.js +9 -0
  1690. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/gradle.js +9 -0
  1691. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/groovy.js +9 -0
  1692. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/haml.js +9 -0
  1693. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/handlebars.js +9 -0
  1694. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/haskell.js +9 -0
  1695. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/haxe.js +9 -0
  1696. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/hsp.js +9 -0
  1697. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/htmlbars.js +9 -0
  1698. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/http.js +9 -0
  1699. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/hy.js +9 -0
  1700. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/index.js +1343 -0
  1701. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/inform7.js +9 -0
  1702. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ini.js +9 -0
  1703. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/irpf90.js +9 -0
  1704. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/isbl.js +9 -0
  1705. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/java.js +9 -0
  1706. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/javascript.js +9 -0
  1707. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/jboss-cli.js +9 -0
  1708. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/json.js +9 -0
  1709. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/julia-repl.js +9 -0
  1710. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/julia.js +9 -0
  1711. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/kotlin.js +9 -0
  1712. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/lasso.js +9 -0
  1713. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/latex.js +9 -0
  1714. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ldif.js +9 -0
  1715. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/leaf.js +9 -0
  1716. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/less.js +9 -0
  1717. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/lisp.js +9 -0
  1718. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/livecodeserver.js +9 -0
  1719. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/livescript.js +9 -0
  1720. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/llvm.js +9 -0
  1721. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/lsl.js +9 -0
  1722. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/lua.js +9 -0
  1723. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/makefile.js +9 -0
  1724. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/markdown.js +9 -0
  1725. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/mathematica.js +9 -0
  1726. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/matlab.js +9 -0
  1727. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/maxima.js +9 -0
  1728. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/mel.js +9 -0
  1729. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/mercury.js +9 -0
  1730. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/mipsasm.js +9 -0
  1731. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/mizar.js +9 -0
  1732. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/mojolicious.js +9 -0
  1733. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/monkey.js +9 -0
  1734. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/moonscript.js +9 -0
  1735. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/n1ql.js +9 -0
  1736. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/nginx.js +9 -0
  1737. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/nim.js +9 -0
  1738. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/nimrod.js +9 -0
  1739. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/nix.js +9 -0
  1740. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/node-repl.js +9 -0
  1741. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/nsis.js +9 -0
  1742. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/objectivec.js +9 -0
  1743. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ocaml.js +9 -0
  1744. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/openscad.js +9 -0
  1745. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/oxygene.js +9 -0
  1746. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/parser3.js +9 -0
  1747. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/perl.js +9 -0
  1748. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/pf.js +9 -0
  1749. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/pgsql.js +9 -0
  1750. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/php-template.js +9 -0
  1751. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/php.js +9 -0
  1752. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/plaintext.js +9 -0
  1753. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/pony.js +9 -0
  1754. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/powershell.js +9 -0
  1755. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/processing.js +9 -0
  1756. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/profile.js +9 -0
  1757. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/prolog.js +9 -0
  1758. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/properties.js +9 -0
  1759. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/protobuf.js +9 -0
  1760. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/puppet.js +9 -0
  1761. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/purebasic.js +9 -0
  1762. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/python-repl.js +9 -0
  1763. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/python.js +9 -0
  1764. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/q.js +9 -0
  1765. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/qml.js +9 -0
  1766. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/r.js +9 -0
  1767. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/reasonml.js +9 -0
  1768. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/rib.js +9 -0
  1769. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/roboconf.js +9 -0
  1770. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/routeros.js +9 -0
  1771. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/rsl.js +9 -0
  1772. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ruby.js +9 -0
  1773. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/ruleslanguage.js +9 -0
  1774. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/rust.js +9 -0
  1775. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/sas.js +9 -0
  1776. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/scala.js +9 -0
  1777. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/scheme.js +9 -0
  1778. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/scilab.js +9 -0
  1779. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/scss.js +9 -0
  1780. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/shell.js +9 -0
  1781. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/smali.js +9 -0
  1782. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/smalltalk.js +9 -0
  1783. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/sml.js +9 -0
  1784. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/sqf.js +9 -0
  1785. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/sql.js +9 -0
  1786. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/sql_more.js +9 -0
  1787. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/stan.js +9 -0
  1788. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/stata.js +9 -0
  1789. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/step21.js +9 -0
  1790. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/stylus.js +9 -0
  1791. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/subunit.js +9 -0
  1792. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/supported-languages.js +10 -0
  1793. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/swift.js +9 -0
  1794. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/taggerscript.js +9 -0
  1795. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/tap.js +9 -0
  1796. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/tcl.js +9 -0
  1797. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/tex.js +9 -0
  1798. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/thrift.js +9 -0
  1799. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/tp.js +9 -0
  1800. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/twig.js +9 -0
  1801. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/typescript.js +9 -0
  1802. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vala.js +9 -0
  1803. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vbnet.js +9 -0
  1804. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vbscript-html.js +9 -0
  1805. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vbscript.js +9 -0
  1806. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/verilog.js +9 -0
  1807. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vhdl.js +9 -0
  1808. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vim.js +9 -0
  1809. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/vue.js +13 -0
  1810. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/x86asm.js +9 -0
  1811. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/xl.js +9 -0
  1812. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/xml.js +9 -0
  1813. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/xquery.js +9 -0
  1814. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/yaml.js +9 -0
  1815. package/node_modules/react-syntax-highlighter/dist/cjs/languages/hljs/zephir.js +9 -0
  1816. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/abap.js +9 -0
  1817. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/abnf.js +9 -0
  1818. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/actionscript.js +9 -0
  1819. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ada.js +9 -0
  1820. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/agda.js +9 -0
  1821. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/al.js +9 -0
  1822. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/antlr4.js +9 -0
  1823. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/apacheconf.js +9 -0
  1824. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/apex.js +9 -0
  1825. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/apl.js +9 -0
  1826. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/applescript.js +9 -0
  1827. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/aql.js +9 -0
  1828. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/arduino.js +9 -0
  1829. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/arff.js +9 -0
  1830. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/armasm.js +9 -0
  1831. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/arturo.js +9 -0
  1832. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/asciidoc.js +9 -0
  1833. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/asm6502.js +9 -0
  1834. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/asmatmel.js +9 -0
  1835. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/aspnet.js +9 -0
  1836. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/autohotkey.js +9 -0
  1837. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/autoit.js +9 -0
  1838. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/avisynth.js +9 -0
  1839. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/avro-idl.js +9 -0
  1840. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/awk.js +9 -0
  1841. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bash.js +9 -0
  1842. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/basic.js +9 -0
  1843. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/batch.js +9 -0
  1844. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bbcode.js +9 -0
  1845. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bbj.js +9 -0
  1846. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bicep.js +9 -0
  1847. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/birb.js +9 -0
  1848. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bison.js +9 -0
  1849. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bnf.js +9 -0
  1850. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bqn.js +9 -0
  1851. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/brainfuck.js +9 -0
  1852. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/brightscript.js +9 -0
  1853. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bro.js +9 -0
  1854. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/bsl.js +9 -0
  1855. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/c.js +9 -0
  1856. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cfscript.js +9 -0
  1857. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/chaiscript.js +9 -0
  1858. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cil.js +9 -0
  1859. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cilkc.js +9 -0
  1860. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cilkcpp.js +9 -0
  1861. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/clike.js +9 -0
  1862. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/clojure.js +9 -0
  1863. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cmake.js +9 -0
  1864. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cobol.js +9 -0
  1865. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/coffeescript.js +9 -0
  1866. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/concurnas.js +9 -0
  1867. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cooklang.js +9 -0
  1868. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/coq.js +9 -0
  1869. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/core.js +9 -0
  1870. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cpp.js +9 -0
  1871. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/crystal.js +9 -0
  1872. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/csharp.js +9 -0
  1873. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cshtml.js +9 -0
  1874. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/csp.js +9 -0
  1875. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/css-extras.js +9 -0
  1876. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/css.js +9 -0
  1877. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/csv.js +9 -0
  1878. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cue.js +9 -0
  1879. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/cypher.js +9 -0
  1880. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/d.js +9 -0
  1881. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/dart.js +9 -0
  1882. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/dataweave.js +9 -0
  1883. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/dax.js +9 -0
  1884. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/dhall.js +9 -0
  1885. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/diff.js +9 -0
  1886. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/django.js +9 -0
  1887. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/dns-zone-file.js +9 -0
  1888. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/docker.js +9 -0
  1889. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/dot.js +9 -0
  1890. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ebnf.js +9 -0
  1891. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/editorconfig.js +9 -0
  1892. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/eiffel.js +9 -0
  1893. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ejs.js +9 -0
  1894. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/elixir.js +9 -0
  1895. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/elm.js +9 -0
  1896. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/erb.js +9 -0
  1897. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/erlang.js +9 -0
  1898. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/etlua.js +9 -0
  1899. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/excel-formula.js +9 -0
  1900. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/factor.js +9 -0
  1901. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/false.js +9 -0
  1902. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/firestore-security-rules.js +9 -0
  1903. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/flow.js +9 -0
  1904. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/fortran.js +9 -0
  1905. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/fsharp.js +9 -0
  1906. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ftl.js +9 -0
  1907. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gap.js +9 -0
  1908. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gcode.js +9 -0
  1909. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gdscript.js +9 -0
  1910. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gedcom.js +9 -0
  1911. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gettext.js +9 -0
  1912. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gherkin.js +9 -0
  1913. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/git.js +9 -0
  1914. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/glsl.js +9 -0
  1915. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gml.js +9 -0
  1916. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gn.js +9 -0
  1917. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/go-module.js +9 -0
  1918. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/go.js +9 -0
  1919. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/gradle.js +9 -0
  1920. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/graphql.js +9 -0
  1921. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/groovy.js +9 -0
  1922. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/haml.js +9 -0
  1923. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/handlebars.js +9 -0
  1924. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/haskell.js +9 -0
  1925. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/haxe.js +9 -0
  1926. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/hcl.js +9 -0
  1927. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/hlsl.js +9 -0
  1928. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/hoon.js +9 -0
  1929. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/hpkp.js +9 -0
  1930. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/hsts.js +9 -0
  1931. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/http.js +9 -0
  1932. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ichigojam.js +9 -0
  1933. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/icon.js +9 -0
  1934. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/icu-message-format.js +9 -0
  1935. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/idris.js +9 -0
  1936. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/iecst.js +9 -0
  1937. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ignore.js +9 -0
  1938. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/index.js +2085 -0
  1939. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/inform7.js +9 -0
  1940. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ini.js +9 -0
  1941. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/io.js +9 -0
  1942. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/j.js +9 -0
  1943. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/java.js +9 -0
  1944. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/javadoc.js +9 -0
  1945. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/javadoclike.js +9 -0
  1946. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/javascript.js +9 -0
  1947. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/javastacktrace.js +9 -0
  1948. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jexl.js +9 -0
  1949. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jolie.js +9 -0
  1950. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jq.js +9 -0
  1951. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/js-extras.js +9 -0
  1952. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/js-templates.js +9 -0
  1953. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jsdoc.js +9 -0
  1954. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/json.js +9 -0
  1955. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/json5.js +9 -0
  1956. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jsonp.js +9 -0
  1957. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jsstacktrace.js +9 -0
  1958. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/jsx.js +9 -0
  1959. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/julia.js +9 -0
  1960. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/keepalived.js +9 -0
  1961. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/keyman.js +9 -0
  1962. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/kotlin.js +9 -0
  1963. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/kumir.js +9 -0
  1964. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/kusto.js +9 -0
  1965. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/latex.js +9 -0
  1966. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/latte.js +9 -0
  1967. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/less.js +9 -0
  1968. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/lilypond.js +9 -0
  1969. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/linker-script.js +9 -0
  1970. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/liquid.js +9 -0
  1971. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/lisp.js +9 -0
  1972. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/livescript.js +9 -0
  1973. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/llvm.js +9 -0
  1974. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/log.js +9 -0
  1975. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/lolcode.js +9 -0
  1976. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/lua.js +9 -0
  1977. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/magma.js +9 -0
  1978. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/makefile.js +9 -0
  1979. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/markdown.js +9 -0
  1980. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/markup-templating.js +9 -0
  1981. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/markup.js +9 -0
  1982. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/mata.js +9 -0
  1983. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/matlab.js +9 -0
  1984. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/maxscript.js +9 -0
  1985. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/mel.js +9 -0
  1986. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/mermaid.js +9 -0
  1987. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/metafont.js +9 -0
  1988. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/mizar.js +9 -0
  1989. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/mongodb.js +9 -0
  1990. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/monkey.js +9 -0
  1991. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/moonscript.js +9 -0
  1992. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/n1ql.js +9 -0
  1993. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/n4js.js +9 -0
  1994. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nand2tetris-hdl.js +9 -0
  1995. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/naniscript.js +9 -0
  1996. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nasm.js +9 -0
  1997. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/neon.js +9 -0
  1998. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nevod.js +9 -0
  1999. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nginx.js +9 -0
  2000. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nim.js +9 -0
  2001. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nix.js +9 -0
  2002. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/nsis.js +9 -0
  2003. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/objectivec.js +9 -0
  2004. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ocaml.js +9 -0
  2005. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/odin.js +9 -0
  2006. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/opencl.js +9 -0
  2007. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/openqasm.js +9 -0
  2008. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/oz.js +9 -0
  2009. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/parigp.js +9 -0
  2010. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/parser.js +9 -0
  2011. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/pascal.js +9 -0
  2012. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/pascaligo.js +9 -0
  2013. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/pcaxis.js +9 -0
  2014. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/peoplecode.js +9 -0
  2015. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/perl.js +9 -0
  2016. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/php-extras.js +9 -0
  2017. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/php.js +9 -0
  2018. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/phpdoc.js +9 -0
  2019. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/plant-uml.js +9 -0
  2020. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/plsql.js +9 -0
  2021. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/powerquery.js +9 -0
  2022. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/powershell.js +9 -0
  2023. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/processing.js +9 -0
  2024. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/prolog.js +9 -0
  2025. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/promql.js +9 -0
  2026. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/properties.js +9 -0
  2027. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/protobuf.js +9 -0
  2028. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/psl.js +9 -0
  2029. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/pug.js +9 -0
  2030. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/puppet.js +9 -0
  2031. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/pure.js +9 -0
  2032. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/purebasic.js +9 -0
  2033. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/purescript.js +9 -0
  2034. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/python.js +9 -0
  2035. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/q.js +9 -0
  2036. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/qml.js +9 -0
  2037. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/qore.js +9 -0
  2038. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/qsharp.js +9 -0
  2039. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/r.js +9 -0
  2040. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/racket.js +9 -0
  2041. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/reason.js +9 -0
  2042. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/regex.js +9 -0
  2043. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/rego.js +9 -0
  2044. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/renpy.js +9 -0
  2045. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/rescript.js +9 -0
  2046. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/rest.js +9 -0
  2047. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/rip.js +9 -0
  2048. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/roboconf.js +9 -0
  2049. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/robotframework.js +9 -0
  2050. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/ruby.js +9 -0
  2051. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/rust.js +9 -0
  2052. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/sas.js +9 -0
  2053. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/sass.js +9 -0
  2054. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/scala.js +9 -0
  2055. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/scheme.js +9 -0
  2056. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/scss.js +9 -0
  2057. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/shell-session.js +9 -0
  2058. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/smali.js +9 -0
  2059. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/smalltalk.js +9 -0
  2060. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/smarty.js +9 -0
  2061. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/sml.js +9 -0
  2062. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/solidity.js +9 -0
  2063. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/solution-file.js +9 -0
  2064. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/soy.js +9 -0
  2065. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/sparql.js +9 -0
  2066. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/splunk-spl.js +9 -0
  2067. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/sqf.js +9 -0
  2068. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/sql.js +9 -0
  2069. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/squirrel.js +9 -0
  2070. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/stan.js +9 -0
  2071. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/stata.js +9 -0
  2072. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/stylus.js +9 -0
  2073. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/supercollider.js +9 -0
  2074. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/supported-languages.js +10 -0
  2075. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/swift.js +9 -0
  2076. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/systemd.js +9 -0
  2077. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/t4-cs.js +9 -0
  2078. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/t4-templating.js +9 -0
  2079. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/t4-vb.js +9 -0
  2080. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/tap.js +9 -0
  2081. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/tcl.js +9 -0
  2082. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/textile.js +9 -0
  2083. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/toml.js +9 -0
  2084. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/tremor.js +9 -0
  2085. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/tsx.js +9 -0
  2086. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/tt2.js +9 -0
  2087. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/turtle.js +9 -0
  2088. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/twig.js +9 -0
  2089. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/typescript.js +9 -0
  2090. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/typoscript.js +9 -0
  2091. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/unrealscript.js +9 -0
  2092. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/uorazor.js +9 -0
  2093. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/uri.js +9 -0
  2094. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/v.js +9 -0
  2095. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/vala.js +9 -0
  2096. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/vbnet.js +9 -0
  2097. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/velocity.js +9 -0
  2098. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/verilog.js +9 -0
  2099. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/vhdl.js +9 -0
  2100. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/vim.js +9 -0
  2101. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/visual-basic.js +9 -0
  2102. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/warpscript.js +9 -0
  2103. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/wasm.js +9 -0
  2104. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/web-idl.js +9 -0
  2105. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/wgsl.js +9 -0
  2106. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/wiki.js +9 -0
  2107. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/wolfram.js +9 -0
  2108. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/wren.js +9 -0
  2109. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/xeora.js +9 -0
  2110. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/xml-doc.js +9 -0
  2111. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/xojo.js +9 -0
  2112. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/xquery.js +9 -0
  2113. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/yaml.js +9 -0
  2114. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/yang.js +9 -0
  2115. package/node_modules/react-syntax-highlighter/dist/cjs/languages/prism/zig.js +9 -0
  2116. package/node_modules/react-syntax-highlighter/dist/cjs/light-async.js +30 -0
  2117. package/node_modules/react-syntax-highlighter/dist/cjs/light.js +12 -0
  2118. package/node_modules/react-syntax-highlighter/dist/cjs/prism-async-light.js +28 -0
  2119. package/node_modules/react-syntax-highlighter/dist/cjs/prism-async.js +24 -0
  2120. package/node_modules/react-syntax-highlighter/dist/cjs/prism-light.js +17 -0
  2121. package/node_modules/react-syntax-highlighter/dist/cjs/prism.js +14 -0
  2122. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/a11y-dark.js +102 -0
  2123. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/a11y-light.js +102 -0
  2124. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/agate.js +105 -0
  2125. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/an-old-hope.js +102 -0
  2126. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/androidstudio.js +87 -0
  2127. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/arduino-light.js +119 -0
  2128. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/arta.js +106 -0
  2129. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/ascetic.js +73 -0
  2130. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-cave-dark.js +108 -0
  2131. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-cave-light.js +108 -0
  2132. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-dune-dark.js +96 -0
  2133. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-dune-light.js +96 -0
  2134. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-estuary-dark.js +108 -0
  2135. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-estuary-light.js +108 -0
  2136. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-forest-dark.js +96 -0
  2137. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-forest-light.js +96 -0
  2138. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-heath-dark.js +96 -0
  2139. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-heath-light.js +96 -0
  2140. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-lakeside-dark.js +96 -0
  2141. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-lakeside-light.js +96 -0
  2142. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-plateau-dark.js +108 -0
  2143. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-plateau-light.js +108 -0
  2144. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-savanna-dark.js +108 -0
  2145. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-savanna-light.js +108 -0
  2146. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-seaside-dark.js +96 -0
  2147. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-seaside-light.js +96 -0
  2148. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-sulphurpool-dark.js +96 -0
  2149. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atelier-sulphurpool-light.js +96 -0
  2150. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atom-one-dark-reasonable.js +147 -0
  2151. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atom-one-dark.js +120 -0
  2152. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/atom-one-light.js +120 -0
  2153. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/brown-paper.js +97 -0
  2154. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/codepen-embed.js +102 -0
  2155. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/color-brewer.js +105 -0
  2156. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/darcula.js +112 -0
  2157. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/dark.js +97 -0
  2158. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/darkula.js +7 -0
  2159. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/default-style.js +119 -0
  2160. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/docco.js +115 -0
  2161. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/dracula.js +97 -0
  2162. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/far.js +109 -0
  2163. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/foundation.js +104 -0
  2164. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/github-gist.js +101 -0
  2165. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/github.js +122 -0
  2166. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/gml.js +118 -0
  2167. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/googlecode.js +119 -0
  2168. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/gradient-dark.js +137 -0
  2169. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/gradient-light.js +137 -0
  2170. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/grayscale.js +122 -0
  2171. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/gruvbox-dark.js +149 -0
  2172. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/gruvbox-light.js +149 -0
  2173. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/hopscotch.js +108 -0
  2174. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/hybrid.js +132 -0
  2175. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/idea.js +125 -0
  2176. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/index.js +685 -0
  2177. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/ir-black.js +102 -0
  2178. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/isbl-editor-dark.js +134 -0
  2179. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/isbl-editor-light.js +134 -0
  2180. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/kimbie.dark.js +105 -0
  2181. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/kimbie.light.js +105 -0
  2182. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/lightfair.js +123 -0
  2183. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/lioshi.js +108 -0
  2184. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/magula.js +107 -0
  2185. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/mono-blue.js +102 -0
  2186. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/monokai-sublime.js +122 -0
  2187. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/monokai.js +120 -0
  2188. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/night-owl.js +150 -0
  2189. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/nnfx-dark.js +122 -0
  2190. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/nnfx.js +122 -0
  2191. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/nord.js +242 -0
  2192. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/obsidian.js +123 -0
  2193. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/ocean.js +102 -0
  2194. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/paraiso-dark.js +102 -0
  2195. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/paraiso-light.js +102 -0
  2196. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/pojoaque.js +110 -0
  2197. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/purebasic.js +124 -0
  2198. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/qtcreator_dark.js +125 -0
  2199. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/qtcreator_light.js +125 -0
  2200. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/railscasts.js +114 -0
  2201. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/rainbow.js +115 -0
  2202. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/routeros.js +125 -0
  2203. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/school-book.js +106 -0
  2204. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/shades-of-purple.js +109 -0
  2205. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/solarized-dark.js +120 -0
  2206. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/solarized-light.js +120 -0
  2207. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/srcery.js +115 -0
  2208. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/stackoverflow-dark.js +117 -0
  2209. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/stackoverflow-light.js +117 -0
  2210. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/sunburst.js +111 -0
  2211. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night-blue.js +102 -0
  2212. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night-bright.js +102 -0
  2213. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night-eighties.js +102 -0
  2214. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night.js +102 -0
  2215. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow.js +102 -0
  2216. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/vs.js +99 -0
  2217. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/vs2015.js +142 -0
  2218. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/xcode.js +127 -0
  2219. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/xt256.js +107 -0
  2220. package/node_modules/react-syntax-highlighter/dist/cjs/styles/hljs/zenburn.js +102 -0
  2221. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/a11y-dark.js +152 -0
  2222. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/a11y-one-light.js +506 -0
  2223. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/atom-dark.js +159 -0
  2224. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/base16-ateliersulphurpool.light.js +203 -0
  2225. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/cb.js +167 -0
  2226. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/coldark-cold.js +392 -0
  2227. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/coldark-dark.js +392 -0
  2228. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/coy-without-shadows.js +188 -0
  2229. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/coy.js +255 -0
  2230. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/darcula.js +207 -0
  2231. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/dark.js +160 -0
  2232. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/dracula.js +160 -0
  2233. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/duotone-dark.js +224 -0
  2234. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/duotone-earth.js +224 -0
  2235. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/duotone-forest.js +224 -0
  2236. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/duotone-light.js +224 -0
  2237. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/duotone-sea.js +224 -0
  2238. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/duotone-space.js +224 -0
  2239. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/funky.js +167 -0
  2240. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/ghcolors.js +184 -0
  2241. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/gruvbox-dark.js +183 -0
  2242. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/gruvbox-light.js +183 -0
  2243. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/holi-theme.js +200 -0
  2244. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/hopscotch.js +154 -0
  2245. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/index.js +314 -0
  2246. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/lucario.js +160 -0
  2247. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/material-dark.js +201 -0
  2248. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/material-light.js +209 -0
  2249. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/material-oceanic.js +205 -0
  2250. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/night-owl.js +198 -0
  2251. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/nord.js +158 -0
  2252. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/okaidia.js +162 -0
  2253. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/one-dark.js +507 -0
  2254. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/one-light.js +495 -0
  2255. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/pojoaque.js +167 -0
  2256. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/prism.js +198 -0
  2257. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/shades-of-purple.js +240 -0
  2258. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/solarized-dark-atom.js +159 -0
  2259. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/solarizedlight.js +174 -0
  2260. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/synthwave84.js +189 -0
  2261. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/tomorrow.js +159 -0
  2262. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/twilight.js +220 -0
  2263. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/vs-dark.js +161 -0
  2264. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/vs.js +212 -0
  2265. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/vsc-dark-plus.js +288 -0
  2266. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/xonokai.js +186 -0
  2267. package/node_modules/react-syntax-highlighter/dist/cjs/styles/prism/z-touch.js +202 -0
  2268. package/node_modules/react-syntax-highlighter/dist/esm/async-languages/create-language-async-loader.js +25 -0
  2269. package/node_modules/react-syntax-highlighter/dist/esm/async-languages/hljs.js +576 -0
  2270. package/node_modules/react-syntax-highlighter/dist/esm/async-languages/prism.js +894 -0
  2271. package/node_modules/react-syntax-highlighter/dist/esm/async-syntax-highlighter.js +157 -0
  2272. package/node_modules/react-syntax-highlighter/dist/esm/checkForListedLanguage.js +4 -0
  2273. package/node_modules/react-syntax-highlighter/dist/esm/create-element.js +107 -0
  2274. package/node_modules/react-syntax-highlighter/dist/esm/default-highlight.js +7 -0
  2275. package/node_modules/react-syntax-highlighter/dist/esm/highlight.js +385 -0
  2276. package/node_modules/react-syntax-highlighter/dist/esm/index.js +8 -0
  2277. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/1c.js +2 -0
  2278. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/abnf.js +2 -0
  2279. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/accesslog.js +2 -0
  2280. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/actionscript.js +2 -0
  2281. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ada.js +2 -0
  2282. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/angelscript.js +2 -0
  2283. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/apache.js +2 -0
  2284. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/applescript.js +2 -0
  2285. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/arcade.js +2 -0
  2286. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/arduino.js +2 -0
  2287. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/armasm.js +2 -0
  2288. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/asciidoc.js +2 -0
  2289. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/aspectj.js +2 -0
  2290. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/autohotkey.js +2 -0
  2291. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/autoit.js +2 -0
  2292. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/avrasm.js +2 -0
  2293. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/awk.js +2 -0
  2294. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/axapta.js +2 -0
  2295. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/bash.js +2 -0
  2296. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/basic.js +2 -0
  2297. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/bnf.js +2 -0
  2298. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/brainfuck.js +2 -0
  2299. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/c-like.js +2 -0
  2300. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/c.js +2 -0
  2301. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/cal.js +2 -0
  2302. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/capnproto.js +2 -0
  2303. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ceylon.js +2 -0
  2304. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/clean.js +2 -0
  2305. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/clojure-repl.js +2 -0
  2306. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/clojure.js +2 -0
  2307. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/cmake.js +2 -0
  2308. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/coffeescript.js +2 -0
  2309. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/coq.js +2 -0
  2310. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/cos.js +2 -0
  2311. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/cpp.js +2 -0
  2312. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/crmsh.js +2 -0
  2313. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/crystal.js +2 -0
  2314. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/cs.js +2 -0
  2315. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/csharp.js +2 -0
  2316. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/csp.js +2 -0
  2317. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/css.js +2 -0
  2318. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/d.js +2 -0
  2319. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dart.js +2 -0
  2320. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/delphi.js +2 -0
  2321. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/diff.js +2 -0
  2322. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/django.js +2 -0
  2323. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dns.js +2 -0
  2324. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dockerfile.js +2 -0
  2325. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dos.js +2 -0
  2326. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dsconfig.js +2 -0
  2327. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dts.js +2 -0
  2328. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/dust.js +2 -0
  2329. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ebnf.js +2 -0
  2330. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/elixir.js +2 -0
  2331. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/elm.js +2 -0
  2332. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/erb.js +2 -0
  2333. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/erlang-repl.js +2 -0
  2334. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/erlang.js +2 -0
  2335. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/excel.js +2 -0
  2336. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/fix.js +2 -0
  2337. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/flix.js +2 -0
  2338. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/fortran.js +2 -0
  2339. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/fsharp.js +2 -0
  2340. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/gams.js +2 -0
  2341. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/gauss.js +2 -0
  2342. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/gcode.js +2 -0
  2343. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/gherkin.js +2 -0
  2344. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/glsl.js +2 -0
  2345. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/gml.js +2 -0
  2346. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/go.js +2 -0
  2347. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/golo.js +2 -0
  2348. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/gradle.js +2 -0
  2349. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/groovy.js +2 -0
  2350. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/haml.js +2 -0
  2351. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/handlebars.js +2 -0
  2352. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/haskell.js +2 -0
  2353. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/haxe.js +2 -0
  2354. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/hsp.js +2 -0
  2355. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/htmlbars.js +2 -0
  2356. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/http.js +2 -0
  2357. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/hy.js +2 -0
  2358. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/index.js +191 -0
  2359. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/inform7.js +2 -0
  2360. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ini.js +2 -0
  2361. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/irpf90.js +2 -0
  2362. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/isbl.js +2 -0
  2363. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/java.js +2 -0
  2364. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/javascript.js +2 -0
  2365. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/jboss-cli.js +2 -0
  2366. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/json.js +2 -0
  2367. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/julia-repl.js +2 -0
  2368. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/julia.js +2 -0
  2369. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/kotlin.js +2 -0
  2370. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/lasso.js +2 -0
  2371. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/latex.js +2 -0
  2372. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ldif.js +2 -0
  2373. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/leaf.js +2 -0
  2374. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/less.js +2 -0
  2375. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/lisp.js +2 -0
  2376. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/livecodeserver.js +2 -0
  2377. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/livescript.js +2 -0
  2378. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/llvm.js +2 -0
  2379. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/lsl.js +2 -0
  2380. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/lua.js +2 -0
  2381. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/makefile.js +2 -0
  2382. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/markdown.js +2 -0
  2383. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/mathematica.js +2 -0
  2384. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/matlab.js +2 -0
  2385. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/maxima.js +2 -0
  2386. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/mel.js +2 -0
  2387. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/mercury.js +2 -0
  2388. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/mipsasm.js +2 -0
  2389. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/mizar.js +2 -0
  2390. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/mojolicious.js +2 -0
  2391. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/monkey.js +2 -0
  2392. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/moonscript.js +2 -0
  2393. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/n1ql.js +2 -0
  2394. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/nginx.js +2 -0
  2395. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/nim.js +2 -0
  2396. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/nimrod.js +2 -0
  2397. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/nix.js +2 -0
  2398. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/node-repl.js +2 -0
  2399. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/nsis.js +2 -0
  2400. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/objectivec.js +2 -0
  2401. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ocaml.js +2 -0
  2402. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/openscad.js +2 -0
  2403. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/oxygene.js +2 -0
  2404. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/parser3.js +2 -0
  2405. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/perl.js +2 -0
  2406. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/pf.js +2 -0
  2407. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/pgsql.js +2 -0
  2408. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/php-template.js +2 -0
  2409. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/php.js +2 -0
  2410. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/plaintext.js +2 -0
  2411. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/pony.js +2 -0
  2412. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/powershell.js +2 -0
  2413. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/processing.js +2 -0
  2414. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/profile.js +2 -0
  2415. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/prolog.js +2 -0
  2416. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/properties.js +2 -0
  2417. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/protobuf.js +2 -0
  2418. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/puppet.js +2 -0
  2419. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/purebasic.js +2 -0
  2420. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/python-repl.js +2 -0
  2421. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/python.js +2 -0
  2422. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/q.js +2 -0
  2423. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/qml.js +2 -0
  2424. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/r.js +2 -0
  2425. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/reasonml.js +2 -0
  2426. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/rib.js +2 -0
  2427. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/roboconf.js +2 -0
  2428. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/routeros.js +2 -0
  2429. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/rsl.js +2 -0
  2430. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ruby.js +2 -0
  2431. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/ruleslanguage.js +2 -0
  2432. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/rust.js +2 -0
  2433. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/sas.js +2 -0
  2434. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/scala.js +2 -0
  2435. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/scheme.js +2 -0
  2436. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/scilab.js +2 -0
  2437. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/scss.js +2 -0
  2438. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/shell.js +2 -0
  2439. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/smali.js +2 -0
  2440. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/smalltalk.js +2 -0
  2441. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/sml.js +2 -0
  2442. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/sqf.js +2 -0
  2443. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/sql.js +2 -0
  2444. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/sql_more.js +2 -0
  2445. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/stan.js +2 -0
  2446. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/stata.js +2 -0
  2447. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/step21.js +2 -0
  2448. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/stylus.js +2 -0
  2449. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/subunit.js +2 -0
  2450. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/supported-languages.js +5 -0
  2451. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/swift.js +2 -0
  2452. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/taggerscript.js +2 -0
  2453. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/tap.js +2 -0
  2454. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/tcl.js +2 -0
  2455. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/tex.js +2 -0
  2456. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/thrift.js +2 -0
  2457. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/tp.js +2 -0
  2458. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/twig.js +2 -0
  2459. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/typescript.js +2 -0
  2460. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vala.js +2 -0
  2461. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vbnet.js +2 -0
  2462. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vbscript-html.js +2 -0
  2463. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vbscript.js +2 -0
  2464. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/verilog.js +2 -0
  2465. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vhdl.js +2 -0
  2466. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vim.js +2 -0
  2467. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/vue.js +4 -0
  2468. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/x86asm.js +2 -0
  2469. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/xl.js +2 -0
  2470. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/xml.js +2 -0
  2471. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/xquery.js +2 -0
  2472. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/yaml.js +2 -0
  2473. package/node_modules/react-syntax-highlighter/dist/esm/languages/hljs/zephir.js +2 -0
  2474. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/abap.js +2 -0
  2475. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/abnf.js +2 -0
  2476. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/actionscript.js +2 -0
  2477. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ada.js +2 -0
  2478. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/agda.js +2 -0
  2479. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/al.js +2 -0
  2480. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/antlr4.js +2 -0
  2481. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/apacheconf.js +2 -0
  2482. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/apex.js +2 -0
  2483. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/apl.js +2 -0
  2484. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/applescript.js +2 -0
  2485. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/aql.js +2 -0
  2486. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/arduino.js +2 -0
  2487. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/arff.js +2 -0
  2488. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/armasm.js +2 -0
  2489. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/arturo.js +2 -0
  2490. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/asciidoc.js +2 -0
  2491. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/asm6502.js +2 -0
  2492. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/asmatmel.js +2 -0
  2493. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/aspnet.js +2 -0
  2494. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/autohotkey.js +2 -0
  2495. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/autoit.js +2 -0
  2496. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/avisynth.js +2 -0
  2497. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/avro-idl.js +2 -0
  2498. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/awk.js +2 -0
  2499. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bash.js +2 -0
  2500. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/basic.js +2 -0
  2501. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/batch.js +2 -0
  2502. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bbcode.js +2 -0
  2503. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bbj.js +2 -0
  2504. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bicep.js +2 -0
  2505. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/birb.js +2 -0
  2506. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bison.js +2 -0
  2507. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bnf.js +2 -0
  2508. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bqn.js +2 -0
  2509. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/brainfuck.js +2 -0
  2510. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/brightscript.js +2 -0
  2511. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bro.js +2 -0
  2512. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bsl.js +2 -0
  2513. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/c.js +2 -0
  2514. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cfscript.js +2 -0
  2515. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/chaiscript.js +2 -0
  2516. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cil.js +2 -0
  2517. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cilkc.js +2 -0
  2518. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cilkcpp.js +2 -0
  2519. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/clike.js +2 -0
  2520. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/clojure.js +2 -0
  2521. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cmake.js +2 -0
  2522. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cobol.js +2 -0
  2523. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/coffeescript.js +2 -0
  2524. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/concurnas.js +2 -0
  2525. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cooklang.js +2 -0
  2526. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/coq.js +2 -0
  2527. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/core.js +2 -0
  2528. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cpp.js +2 -0
  2529. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/crystal.js +2 -0
  2530. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/csharp.js +2 -0
  2531. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cshtml.js +2 -0
  2532. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/csp.js +2 -0
  2533. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/css-extras.js +2 -0
  2534. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/css.js +2 -0
  2535. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/csv.js +2 -0
  2536. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cue.js +2 -0
  2537. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/cypher.js +2 -0
  2538. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/d.js +2 -0
  2539. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/dart.js +2 -0
  2540. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/dataweave.js +2 -0
  2541. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/dax.js +2 -0
  2542. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/dhall.js +2 -0
  2543. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/diff.js +2 -0
  2544. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/django.js +2 -0
  2545. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/dns-zone-file.js +2 -0
  2546. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/docker.js +2 -0
  2547. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/dot.js +2 -0
  2548. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ebnf.js +2 -0
  2549. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/editorconfig.js +2 -0
  2550. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/eiffel.js +2 -0
  2551. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ejs.js +2 -0
  2552. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/elixir.js +2 -0
  2553. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/elm.js +2 -0
  2554. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/erb.js +2 -0
  2555. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/erlang.js +2 -0
  2556. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/etlua.js +2 -0
  2557. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/excel-formula.js +2 -0
  2558. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/factor.js +2 -0
  2559. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/false.js +2 -0
  2560. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/firestore-security-rules.js +2 -0
  2561. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/flow.js +2 -0
  2562. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/fortran.js +2 -0
  2563. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/fsharp.js +2 -0
  2564. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ftl.js +2 -0
  2565. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gap.js +2 -0
  2566. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gcode.js +2 -0
  2567. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gdscript.js +2 -0
  2568. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gedcom.js +2 -0
  2569. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gettext.js +2 -0
  2570. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gherkin.js +2 -0
  2571. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/git.js +2 -0
  2572. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/glsl.js +2 -0
  2573. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gml.js +2 -0
  2574. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gn.js +2 -0
  2575. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/go-module.js +2 -0
  2576. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/go.js +2 -0
  2577. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/gradle.js +2 -0
  2578. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/graphql.js +2 -0
  2579. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/groovy.js +2 -0
  2580. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/haml.js +2 -0
  2581. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/handlebars.js +2 -0
  2582. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/haskell.js +2 -0
  2583. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/haxe.js +2 -0
  2584. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/hcl.js +2 -0
  2585. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/hlsl.js +2 -0
  2586. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/hoon.js +2 -0
  2587. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/hpkp.js +2 -0
  2588. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/hsts.js +2 -0
  2589. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/http.js +2 -0
  2590. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ichigojam.js +2 -0
  2591. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/icon.js +2 -0
  2592. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/icu-message-format.js +2 -0
  2593. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/idris.js +2 -0
  2594. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/iecst.js +2 -0
  2595. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ignore.js +2 -0
  2596. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/index.js +297 -0
  2597. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/inform7.js +2 -0
  2598. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ini.js +2 -0
  2599. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/io.js +2 -0
  2600. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/j.js +2 -0
  2601. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/java.js +2 -0
  2602. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/javadoc.js +2 -0
  2603. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/javadoclike.js +2 -0
  2604. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/javascript.js +2 -0
  2605. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/javastacktrace.js +2 -0
  2606. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jexl.js +2 -0
  2607. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jolie.js +2 -0
  2608. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jq.js +2 -0
  2609. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/js-extras.js +2 -0
  2610. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/js-templates.js +2 -0
  2611. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jsdoc.js +2 -0
  2612. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/json.js +2 -0
  2613. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/json5.js +2 -0
  2614. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jsonp.js +2 -0
  2615. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jsstacktrace.js +2 -0
  2616. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jsx.js +2 -0
  2617. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/julia.js +2 -0
  2618. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/keepalived.js +2 -0
  2619. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/keyman.js +2 -0
  2620. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/kotlin.js +2 -0
  2621. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/kumir.js +2 -0
  2622. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/kusto.js +2 -0
  2623. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/latex.js +2 -0
  2624. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/latte.js +2 -0
  2625. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/less.js +2 -0
  2626. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/lilypond.js +2 -0
  2627. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/linker-script.js +2 -0
  2628. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/liquid.js +2 -0
  2629. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/lisp.js +2 -0
  2630. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/livescript.js +2 -0
  2631. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/llvm.js +2 -0
  2632. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/log.js +2 -0
  2633. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/lolcode.js +2 -0
  2634. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/lua.js +2 -0
  2635. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/magma.js +2 -0
  2636. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/makefile.js +2 -0
  2637. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/markdown.js +2 -0
  2638. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/markup-templating.js +2 -0
  2639. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/markup.js +2 -0
  2640. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/mata.js +2 -0
  2641. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/matlab.js +2 -0
  2642. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/maxscript.js +2 -0
  2643. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/mel.js +2 -0
  2644. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/mermaid.js +2 -0
  2645. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/metafont.js +2 -0
  2646. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/mizar.js +2 -0
  2647. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/mongodb.js +2 -0
  2648. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/monkey.js +2 -0
  2649. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/moonscript.js +2 -0
  2650. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/n1ql.js +2 -0
  2651. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/n4js.js +2 -0
  2652. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nand2tetris-hdl.js +2 -0
  2653. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/naniscript.js +2 -0
  2654. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nasm.js +2 -0
  2655. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/neon.js +2 -0
  2656. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nevod.js +2 -0
  2657. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nginx.js +2 -0
  2658. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nim.js +2 -0
  2659. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nix.js +2 -0
  2660. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/nsis.js +2 -0
  2661. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/objectivec.js +2 -0
  2662. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ocaml.js +2 -0
  2663. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/odin.js +2 -0
  2664. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/opencl.js +2 -0
  2665. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/openqasm.js +2 -0
  2666. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/oz.js +2 -0
  2667. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/parigp.js +2 -0
  2668. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/parser.js +2 -0
  2669. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/pascal.js +2 -0
  2670. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/pascaligo.js +2 -0
  2671. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/pcaxis.js +2 -0
  2672. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/peoplecode.js +2 -0
  2673. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/perl.js +2 -0
  2674. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/php-extras.js +2 -0
  2675. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/php.js +2 -0
  2676. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/phpdoc.js +2 -0
  2677. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/plant-uml.js +2 -0
  2678. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/plsql.js +2 -0
  2679. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/powerquery.js +2 -0
  2680. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/powershell.js +2 -0
  2681. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/processing.js +2 -0
  2682. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/prolog.js +2 -0
  2683. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/promql.js +2 -0
  2684. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/properties.js +2 -0
  2685. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/protobuf.js +2 -0
  2686. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/psl.js +2 -0
  2687. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/pug.js +2 -0
  2688. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/puppet.js +2 -0
  2689. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/pure.js +2 -0
  2690. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/purebasic.js +2 -0
  2691. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/purescript.js +2 -0
  2692. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/python.js +2 -0
  2693. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/q.js +2 -0
  2694. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/qml.js +2 -0
  2695. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/qore.js +2 -0
  2696. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/qsharp.js +2 -0
  2697. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/r.js +2 -0
  2698. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/racket.js +2 -0
  2699. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/reason.js +2 -0
  2700. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/regex.js +2 -0
  2701. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/rego.js +2 -0
  2702. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/renpy.js +2 -0
  2703. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/rescript.js +2 -0
  2704. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/rest.js +2 -0
  2705. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/rip.js +2 -0
  2706. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/roboconf.js +2 -0
  2707. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/robotframework.js +2 -0
  2708. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/ruby.js +2 -0
  2709. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/rust.js +2 -0
  2710. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/sas.js +2 -0
  2711. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/sass.js +2 -0
  2712. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/scala.js +2 -0
  2713. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/scheme.js +2 -0
  2714. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/scss.js +2 -0
  2715. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/shell-session.js +2 -0
  2716. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/smali.js +2 -0
  2717. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/smalltalk.js +2 -0
  2718. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/smarty.js +2 -0
  2719. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/sml.js +2 -0
  2720. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/solidity.js +2 -0
  2721. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/solution-file.js +2 -0
  2722. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/soy.js +2 -0
  2723. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/sparql.js +2 -0
  2724. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/splunk-spl.js +2 -0
  2725. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/sqf.js +2 -0
  2726. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/sql.js +2 -0
  2727. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/squirrel.js +2 -0
  2728. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/stan.js +2 -0
  2729. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/stata.js +2 -0
  2730. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/stylus.js +2 -0
  2731. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/supercollider.js +2 -0
  2732. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/supported-languages.js +5 -0
  2733. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/swift.js +2 -0
  2734. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/systemd.js +2 -0
  2735. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/t4-cs.js +2 -0
  2736. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/t4-templating.js +2 -0
  2737. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/t4-vb.js +2 -0
  2738. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/tap.js +2 -0
  2739. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/tcl.js +2 -0
  2740. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/textile.js +2 -0
  2741. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/toml.js +2 -0
  2742. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/tremor.js +2 -0
  2743. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/tsx.js +2 -0
  2744. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/tt2.js +2 -0
  2745. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/turtle.js +2 -0
  2746. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/twig.js +2 -0
  2747. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/typescript.js +2 -0
  2748. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/typoscript.js +2 -0
  2749. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/unrealscript.js +2 -0
  2750. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/uorazor.js +2 -0
  2751. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/uri.js +2 -0
  2752. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/v.js +2 -0
  2753. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/vala.js +2 -0
  2754. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/vbnet.js +2 -0
  2755. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/velocity.js +2 -0
  2756. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/verilog.js +2 -0
  2757. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/vhdl.js +2 -0
  2758. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/vim.js +2 -0
  2759. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/visual-basic.js +2 -0
  2760. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/warpscript.js +2 -0
  2761. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/wasm.js +2 -0
  2762. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/web-idl.js +2 -0
  2763. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/wgsl.js +2 -0
  2764. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/wiki.js +2 -0
  2765. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/wolfram.js +2 -0
  2766. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/wren.js +2 -0
  2767. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/xeora.js +2 -0
  2768. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/xml-doc.js +2 -0
  2769. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/xojo.js +2 -0
  2770. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/xquery.js +2 -0
  2771. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/yaml.js +2 -0
  2772. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/yang.js +2 -0
  2773. package/node_modules/react-syntax-highlighter/dist/esm/languages/prism/zig.js +2 -0
  2774. package/node_modules/react-syntax-highlighter/dist/esm/light-async.js +19 -0
  2775. package/node_modules/react-syntax-highlighter/dist/esm/light.js +5 -0
  2776. package/node_modules/react-syntax-highlighter/dist/esm/prism-async-light.js +17 -0
  2777. package/node_modules/react-syntax-highlighter/dist/esm/prism-async.js +13 -0
  2778. package/node_modules/react-syntax-highlighter/dist/esm/prism-light.js +10 -0
  2779. package/node_modules/react-syntax-highlighter/dist/esm/prism.js +7 -0
  2780. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/a11y-dark.js +96 -0
  2781. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/a11y-light.js +96 -0
  2782. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/agate.js +99 -0
  2783. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/an-old-hope.js +96 -0
  2784. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/androidstudio.js +81 -0
  2785. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/arduino-light.js +113 -0
  2786. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/arta.js +100 -0
  2787. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/ascetic.js +67 -0
  2788. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-cave-dark.js +102 -0
  2789. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-cave-light.js +102 -0
  2790. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-dune-dark.js +90 -0
  2791. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-dune-light.js +90 -0
  2792. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-estuary-dark.js +102 -0
  2793. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-estuary-light.js +102 -0
  2794. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-forest-dark.js +90 -0
  2795. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-forest-light.js +90 -0
  2796. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-heath-dark.js +90 -0
  2797. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-heath-light.js +90 -0
  2798. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-lakeside-dark.js +90 -0
  2799. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-lakeside-light.js +90 -0
  2800. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-plateau-dark.js +102 -0
  2801. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-plateau-light.js +102 -0
  2802. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-savanna-dark.js +102 -0
  2803. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-savanna-light.js +102 -0
  2804. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-seaside-dark.js +90 -0
  2805. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-seaside-light.js +90 -0
  2806. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-sulphurpool-dark.js +90 -0
  2807. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atelier-sulphurpool-light.js +90 -0
  2808. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atom-one-dark-reasonable.js +141 -0
  2809. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atom-one-dark.js +114 -0
  2810. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/atom-one-light.js +114 -0
  2811. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/brown-paper.js +91 -0
  2812. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/codepen-embed.js +96 -0
  2813. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/color-brewer.js +99 -0
  2814. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/darcula.js +106 -0
  2815. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/dark.js +91 -0
  2816. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/darkula.js +1 -0
  2817. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/default-style.js +113 -0
  2818. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/docco.js +109 -0
  2819. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/dracula.js +91 -0
  2820. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/far.js +103 -0
  2821. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/foundation.js +98 -0
  2822. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/github-gist.js +95 -0
  2823. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/github.js +116 -0
  2824. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/gml.js +112 -0
  2825. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/googlecode.js +113 -0
  2826. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/gradient-dark.js +131 -0
  2827. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/gradient-light.js +131 -0
  2828. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/grayscale.js +116 -0
  2829. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/gruvbox-dark.js +143 -0
  2830. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/gruvbox-light.js +143 -0
  2831. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/hopscotch.js +102 -0
  2832. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/hybrid.js +126 -0
  2833. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/idea.js +119 -0
  2834. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/index.js +97 -0
  2835. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/ir-black.js +96 -0
  2836. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/isbl-editor-dark.js +128 -0
  2837. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/isbl-editor-light.js +128 -0
  2838. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/kimbie.dark.js +99 -0
  2839. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/kimbie.light.js +99 -0
  2840. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/lightfair.js +117 -0
  2841. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/lioshi.js +102 -0
  2842. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/magula.js +101 -0
  2843. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/mono-blue.js +96 -0
  2844. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/monokai-sublime.js +116 -0
  2845. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/monokai.js +114 -0
  2846. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/night-owl.js +144 -0
  2847. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/nnfx-dark.js +116 -0
  2848. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/nnfx.js +116 -0
  2849. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/nord.js +236 -0
  2850. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/obsidian.js +117 -0
  2851. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/ocean.js +96 -0
  2852. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/paraiso-dark.js +96 -0
  2853. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/paraiso-light.js +96 -0
  2854. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/pojoaque.js +104 -0
  2855. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/purebasic.js +118 -0
  2856. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/qtcreator_dark.js +119 -0
  2857. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/qtcreator_light.js +119 -0
  2858. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/railscasts.js +108 -0
  2859. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/rainbow.js +109 -0
  2860. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/routeros.js +119 -0
  2861. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/school-book.js +100 -0
  2862. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/shades-of-purple.js +103 -0
  2863. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/solarized-dark.js +114 -0
  2864. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/solarized-light.js +114 -0
  2865. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/srcery.js +109 -0
  2866. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/stackoverflow-dark.js +111 -0
  2867. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/stackoverflow-light.js +111 -0
  2868. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/sunburst.js +105 -0
  2869. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night-blue.js +96 -0
  2870. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night-bright.js +96 -0
  2871. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night-eighties.js +96 -0
  2872. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night.js +96 -0
  2873. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/tomorrow.js +96 -0
  2874. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/vs.js +93 -0
  2875. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/vs2015.js +136 -0
  2876. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/xcode.js +121 -0
  2877. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/xt256.js +101 -0
  2878. package/node_modules/react-syntax-highlighter/dist/esm/styles/hljs/zenburn.js +96 -0
  2879. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/a11y-dark.js +146 -0
  2880. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/a11y-one-light.js +500 -0
  2881. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/atom-dark.js +153 -0
  2882. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/base16-ateliersulphurpool.light.js +197 -0
  2883. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/cb.js +161 -0
  2884. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/coldark-cold.js +386 -0
  2885. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/coldark-dark.js +386 -0
  2886. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/coy-without-shadows.js +182 -0
  2887. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/coy.js +249 -0
  2888. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/darcula.js +201 -0
  2889. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/dark.js +154 -0
  2890. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/dracula.js +154 -0
  2891. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/duotone-dark.js +218 -0
  2892. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/duotone-earth.js +218 -0
  2893. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/duotone-forest.js +218 -0
  2894. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/duotone-light.js +218 -0
  2895. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/duotone-sea.js +218 -0
  2896. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/duotone-space.js +218 -0
  2897. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/funky.js +161 -0
  2898. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/ghcolors.js +178 -0
  2899. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/gruvbox-dark.js +177 -0
  2900. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/gruvbox-light.js +177 -0
  2901. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/holi-theme.js +194 -0
  2902. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/hopscotch.js +148 -0
  2903. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/index.js +44 -0
  2904. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/lucario.js +154 -0
  2905. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/material-dark.js +195 -0
  2906. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/material-light.js +203 -0
  2907. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/material-oceanic.js +199 -0
  2908. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/night-owl.js +192 -0
  2909. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/nord.js +152 -0
  2910. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/okaidia.js +156 -0
  2911. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/one-dark.js +501 -0
  2912. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/one-light.js +489 -0
  2913. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/pojoaque.js +161 -0
  2914. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/prism.js +192 -0
  2915. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/shades-of-purple.js +234 -0
  2916. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/solarized-dark-atom.js +153 -0
  2917. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/solarizedlight.js +168 -0
  2918. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/synthwave84.js +183 -0
  2919. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/tomorrow.js +153 -0
  2920. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/twilight.js +214 -0
  2921. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/vs-dark.js +155 -0
  2922. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/vs.js +206 -0
  2923. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/vsc-dark-plus.js +282 -0
  2924. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/xonokai.js +180 -0
  2925. package/node_modules/react-syntax-highlighter/dist/esm/styles/prism/z-touch.js +196 -0
  2926. package/node_modules/react-syntax-highlighter/package.json +130 -0
  2927. package/node_modules/react-syntax-highlighter/scripts/build-languages-highlightjs.js +127 -0
  2928. package/node_modules/react-syntax-highlighter/scripts/build-languages-refractor.js +132 -0
  2929. package/node_modules/react-syntax-highlighter/scripts/build-stylesheets-highlightjs.js +131 -0
  2930. package/node_modules/react-syntax-highlighter/scripts/build-stylesheets-refractor.js +153 -0
  2931. package/node_modules/react-syntax-highlighter/src/async-languages/create-language-async-loader.js +6 -0
  2932. package/node_modules/react-syntax-highlighter/src/async-languages/hljs.js +194 -0
  2933. package/node_modules/react-syntax-highlighter/src/async-languages/prism.js +300 -0
  2934. package/node_modules/react-syntax-highlighter/src/async-syntax-highlighter.js +155 -0
  2935. package/node_modules/react-syntax-highlighter/src/checkForListedLanguage.js +4 -0
  2936. package/node_modules/react-syntax-highlighter/src/create-element.js +212 -0
  2937. package/node_modules/react-syntax-highlighter/src/default-highlight.js +9 -0
  2938. package/node_modules/react-syntax-highlighter/src/highlight.js +439 -0
  2939. package/node_modules/react-syntax-highlighter/src/index.js +11 -0
  2940. package/node_modules/react-syntax-highlighter/src/languages/hljs/1c.js +2 -0
  2941. package/node_modules/react-syntax-highlighter/src/languages/hljs/abnf.js +2 -0
  2942. package/node_modules/react-syntax-highlighter/src/languages/hljs/accesslog.js +2 -0
  2943. package/node_modules/react-syntax-highlighter/src/languages/hljs/actionscript.js +2 -0
  2944. package/node_modules/react-syntax-highlighter/src/languages/hljs/ada.js +2 -0
  2945. package/node_modules/react-syntax-highlighter/src/languages/hljs/angelscript.js +2 -0
  2946. package/node_modules/react-syntax-highlighter/src/languages/hljs/apache.js +2 -0
  2947. package/node_modules/react-syntax-highlighter/src/languages/hljs/applescript.js +2 -0
  2948. package/node_modules/react-syntax-highlighter/src/languages/hljs/arcade.js +2 -0
  2949. package/node_modules/react-syntax-highlighter/src/languages/hljs/arduino.js +2 -0
  2950. package/node_modules/react-syntax-highlighter/src/languages/hljs/armasm.js +2 -0
  2951. package/node_modules/react-syntax-highlighter/src/languages/hljs/asciidoc.js +2 -0
  2952. package/node_modules/react-syntax-highlighter/src/languages/hljs/aspectj.js +2 -0
  2953. package/node_modules/react-syntax-highlighter/src/languages/hljs/autohotkey.js +2 -0
  2954. package/node_modules/react-syntax-highlighter/src/languages/hljs/autoit.js +2 -0
  2955. package/node_modules/react-syntax-highlighter/src/languages/hljs/avrasm.js +2 -0
  2956. package/node_modules/react-syntax-highlighter/src/languages/hljs/awk.js +2 -0
  2957. package/node_modules/react-syntax-highlighter/src/languages/hljs/axapta.js +2 -0
  2958. package/node_modules/react-syntax-highlighter/src/languages/hljs/bash.js +2 -0
  2959. package/node_modules/react-syntax-highlighter/src/languages/hljs/basic.js +2 -0
  2960. package/node_modules/react-syntax-highlighter/src/languages/hljs/bnf.js +2 -0
  2961. package/node_modules/react-syntax-highlighter/src/languages/hljs/brainfuck.js +2 -0
  2962. package/node_modules/react-syntax-highlighter/src/languages/hljs/c-like.js +2 -0
  2963. package/node_modules/react-syntax-highlighter/src/languages/hljs/c.js +2 -0
  2964. package/node_modules/react-syntax-highlighter/src/languages/hljs/cal.js +2 -0
  2965. package/node_modules/react-syntax-highlighter/src/languages/hljs/capnproto.js +2 -0
  2966. package/node_modules/react-syntax-highlighter/src/languages/hljs/ceylon.js +2 -0
  2967. package/node_modules/react-syntax-highlighter/src/languages/hljs/clean.js +2 -0
  2968. package/node_modules/react-syntax-highlighter/src/languages/hljs/clojure-repl.js +2 -0
  2969. package/node_modules/react-syntax-highlighter/src/languages/hljs/clojure.js +2 -0
  2970. package/node_modules/react-syntax-highlighter/src/languages/hljs/cmake.js +2 -0
  2971. package/node_modules/react-syntax-highlighter/src/languages/hljs/coffeescript.js +2 -0
  2972. package/node_modules/react-syntax-highlighter/src/languages/hljs/coq.js +2 -0
  2973. package/node_modules/react-syntax-highlighter/src/languages/hljs/cos.js +2 -0
  2974. package/node_modules/react-syntax-highlighter/src/languages/hljs/cpp.js +2 -0
  2975. package/node_modules/react-syntax-highlighter/src/languages/hljs/crmsh.js +2 -0
  2976. package/node_modules/react-syntax-highlighter/src/languages/hljs/crystal.js +2 -0
  2977. package/node_modules/react-syntax-highlighter/src/languages/hljs/csharp.js +2 -0
  2978. package/node_modules/react-syntax-highlighter/src/languages/hljs/csp.js +2 -0
  2979. package/node_modules/react-syntax-highlighter/src/languages/hljs/css.js +2 -0
  2980. package/node_modules/react-syntax-highlighter/src/languages/hljs/d.js +2 -0
  2981. package/node_modules/react-syntax-highlighter/src/languages/hljs/dart.js +2 -0
  2982. package/node_modules/react-syntax-highlighter/src/languages/hljs/delphi.js +2 -0
  2983. package/node_modules/react-syntax-highlighter/src/languages/hljs/diff.js +2 -0
  2984. package/node_modules/react-syntax-highlighter/src/languages/hljs/django.js +2 -0
  2985. package/node_modules/react-syntax-highlighter/src/languages/hljs/dns.js +2 -0
  2986. package/node_modules/react-syntax-highlighter/src/languages/hljs/dockerfile.js +2 -0
  2987. package/node_modules/react-syntax-highlighter/src/languages/hljs/dos.js +2 -0
  2988. package/node_modules/react-syntax-highlighter/src/languages/hljs/dsconfig.js +2 -0
  2989. package/node_modules/react-syntax-highlighter/src/languages/hljs/dts.js +2 -0
  2990. package/node_modules/react-syntax-highlighter/src/languages/hljs/dust.js +2 -0
  2991. package/node_modules/react-syntax-highlighter/src/languages/hljs/ebnf.js +2 -0
  2992. package/node_modules/react-syntax-highlighter/src/languages/hljs/elixir.js +2 -0
  2993. package/node_modules/react-syntax-highlighter/src/languages/hljs/elm.js +2 -0
  2994. package/node_modules/react-syntax-highlighter/src/languages/hljs/erb.js +2 -0
  2995. package/node_modules/react-syntax-highlighter/src/languages/hljs/erlang-repl.js +2 -0
  2996. package/node_modules/react-syntax-highlighter/src/languages/hljs/erlang.js +2 -0
  2997. package/node_modules/react-syntax-highlighter/src/languages/hljs/excel.js +2 -0
  2998. package/node_modules/react-syntax-highlighter/src/languages/hljs/fix.js +2 -0
  2999. package/node_modules/react-syntax-highlighter/src/languages/hljs/flix.js +2 -0
  3000. package/node_modules/react-syntax-highlighter/src/languages/hljs/fortran.js +2 -0
  3001. package/node_modules/react-syntax-highlighter/src/languages/hljs/fsharp.js +2 -0
  3002. package/node_modules/react-syntax-highlighter/src/languages/hljs/gams.js +2 -0
  3003. package/node_modules/react-syntax-highlighter/src/languages/hljs/gauss.js +2 -0
  3004. package/node_modules/react-syntax-highlighter/src/languages/hljs/gcode.js +2 -0
  3005. package/node_modules/react-syntax-highlighter/src/languages/hljs/gherkin.js +2 -0
  3006. package/node_modules/react-syntax-highlighter/src/languages/hljs/glsl.js +2 -0
  3007. package/node_modules/react-syntax-highlighter/src/languages/hljs/gml.js +2 -0
  3008. package/node_modules/react-syntax-highlighter/src/languages/hljs/go.js +2 -0
  3009. package/node_modules/react-syntax-highlighter/src/languages/hljs/golo.js +2 -0
  3010. package/node_modules/react-syntax-highlighter/src/languages/hljs/gradle.js +2 -0
  3011. package/node_modules/react-syntax-highlighter/src/languages/hljs/groovy.js +2 -0
  3012. package/node_modules/react-syntax-highlighter/src/languages/hljs/haml.js +2 -0
  3013. package/node_modules/react-syntax-highlighter/src/languages/hljs/handlebars.js +2 -0
  3014. package/node_modules/react-syntax-highlighter/src/languages/hljs/haskell.js +2 -0
  3015. package/node_modules/react-syntax-highlighter/src/languages/hljs/haxe.js +2 -0
  3016. package/node_modules/react-syntax-highlighter/src/languages/hljs/hsp.js +2 -0
  3017. package/node_modules/react-syntax-highlighter/src/languages/hljs/htmlbars.js +2 -0
  3018. package/node_modules/react-syntax-highlighter/src/languages/hljs/http.js +2 -0
  3019. package/node_modules/react-syntax-highlighter/src/languages/hljs/hy.js +2 -0
  3020. package/node_modules/react-syntax-highlighter/src/languages/hljs/index.js +191 -0
  3021. package/node_modules/react-syntax-highlighter/src/languages/hljs/inform7.js +2 -0
  3022. package/node_modules/react-syntax-highlighter/src/languages/hljs/ini.js +2 -0
  3023. package/node_modules/react-syntax-highlighter/src/languages/hljs/irpf90.js +2 -0
  3024. package/node_modules/react-syntax-highlighter/src/languages/hljs/isbl.js +2 -0
  3025. package/node_modules/react-syntax-highlighter/src/languages/hljs/java.js +2 -0
  3026. package/node_modules/react-syntax-highlighter/src/languages/hljs/javascript.js +2 -0
  3027. package/node_modules/react-syntax-highlighter/src/languages/hljs/jboss-cli.js +2 -0
  3028. package/node_modules/react-syntax-highlighter/src/languages/hljs/json.js +2 -0
  3029. package/node_modules/react-syntax-highlighter/src/languages/hljs/julia-repl.js +2 -0
  3030. package/node_modules/react-syntax-highlighter/src/languages/hljs/julia.js +2 -0
  3031. package/node_modules/react-syntax-highlighter/src/languages/hljs/kotlin.js +2 -0
  3032. package/node_modules/react-syntax-highlighter/src/languages/hljs/lasso.js +2 -0
  3033. package/node_modules/react-syntax-highlighter/src/languages/hljs/latex.js +2 -0
  3034. package/node_modules/react-syntax-highlighter/src/languages/hljs/ldif.js +2 -0
  3035. package/node_modules/react-syntax-highlighter/src/languages/hljs/leaf.js +2 -0
  3036. package/node_modules/react-syntax-highlighter/src/languages/hljs/less.js +2 -0
  3037. package/node_modules/react-syntax-highlighter/src/languages/hljs/lisp.js +2 -0
  3038. package/node_modules/react-syntax-highlighter/src/languages/hljs/livecodeserver.js +2 -0
  3039. package/node_modules/react-syntax-highlighter/src/languages/hljs/livescript.js +2 -0
  3040. package/node_modules/react-syntax-highlighter/src/languages/hljs/llvm.js +2 -0
  3041. package/node_modules/react-syntax-highlighter/src/languages/hljs/lsl.js +2 -0
  3042. package/node_modules/react-syntax-highlighter/src/languages/hljs/lua.js +2 -0
  3043. package/node_modules/react-syntax-highlighter/src/languages/hljs/makefile.js +2 -0
  3044. package/node_modules/react-syntax-highlighter/src/languages/hljs/markdown.js +2 -0
  3045. package/node_modules/react-syntax-highlighter/src/languages/hljs/mathematica.js +2 -0
  3046. package/node_modules/react-syntax-highlighter/src/languages/hljs/matlab.js +2 -0
  3047. package/node_modules/react-syntax-highlighter/src/languages/hljs/maxima.js +2 -0
  3048. package/node_modules/react-syntax-highlighter/src/languages/hljs/mel.js +2 -0
  3049. package/node_modules/react-syntax-highlighter/src/languages/hljs/mercury.js +2 -0
  3050. package/node_modules/react-syntax-highlighter/src/languages/hljs/mipsasm.js +2 -0
  3051. package/node_modules/react-syntax-highlighter/src/languages/hljs/mizar.js +2 -0
  3052. package/node_modules/react-syntax-highlighter/src/languages/hljs/mojolicious.js +2 -0
  3053. package/node_modules/react-syntax-highlighter/src/languages/hljs/monkey.js +2 -0
  3054. package/node_modules/react-syntax-highlighter/src/languages/hljs/moonscript.js +2 -0
  3055. package/node_modules/react-syntax-highlighter/src/languages/hljs/n1ql.js +2 -0
  3056. package/node_modules/react-syntax-highlighter/src/languages/hljs/nginx.js +2 -0
  3057. package/node_modules/react-syntax-highlighter/src/languages/hljs/nim.js +2 -0
  3058. package/node_modules/react-syntax-highlighter/src/languages/hljs/nix.js +2 -0
  3059. package/node_modules/react-syntax-highlighter/src/languages/hljs/node-repl.js +2 -0
  3060. package/node_modules/react-syntax-highlighter/src/languages/hljs/nsis.js +2 -0
  3061. package/node_modules/react-syntax-highlighter/src/languages/hljs/objectivec.js +2 -0
  3062. package/node_modules/react-syntax-highlighter/src/languages/hljs/ocaml.js +2 -0
  3063. package/node_modules/react-syntax-highlighter/src/languages/hljs/openscad.js +2 -0
  3064. package/node_modules/react-syntax-highlighter/src/languages/hljs/oxygene.js +2 -0
  3065. package/node_modules/react-syntax-highlighter/src/languages/hljs/parser3.js +2 -0
  3066. package/node_modules/react-syntax-highlighter/src/languages/hljs/perl.js +2 -0
  3067. package/node_modules/react-syntax-highlighter/src/languages/hljs/pf.js +2 -0
  3068. package/node_modules/react-syntax-highlighter/src/languages/hljs/pgsql.js +2 -0
  3069. package/node_modules/react-syntax-highlighter/src/languages/hljs/php-template.js +2 -0
  3070. package/node_modules/react-syntax-highlighter/src/languages/hljs/php.js +2 -0
  3071. package/node_modules/react-syntax-highlighter/src/languages/hljs/plaintext.js +2 -0
  3072. package/node_modules/react-syntax-highlighter/src/languages/hljs/pony.js +2 -0
  3073. package/node_modules/react-syntax-highlighter/src/languages/hljs/powershell.js +2 -0
  3074. package/node_modules/react-syntax-highlighter/src/languages/hljs/processing.js +2 -0
  3075. package/node_modules/react-syntax-highlighter/src/languages/hljs/profile.js +2 -0
  3076. package/node_modules/react-syntax-highlighter/src/languages/hljs/prolog.js +2 -0
  3077. package/node_modules/react-syntax-highlighter/src/languages/hljs/properties.js +2 -0
  3078. package/node_modules/react-syntax-highlighter/src/languages/hljs/protobuf.js +2 -0
  3079. package/node_modules/react-syntax-highlighter/src/languages/hljs/puppet.js +2 -0
  3080. package/node_modules/react-syntax-highlighter/src/languages/hljs/purebasic.js +2 -0
  3081. package/node_modules/react-syntax-highlighter/src/languages/hljs/python-repl.js +2 -0
  3082. package/node_modules/react-syntax-highlighter/src/languages/hljs/python.js +2 -0
  3083. package/node_modules/react-syntax-highlighter/src/languages/hljs/q.js +2 -0
  3084. package/node_modules/react-syntax-highlighter/src/languages/hljs/qml.js +2 -0
  3085. package/node_modules/react-syntax-highlighter/src/languages/hljs/r.js +2 -0
  3086. package/node_modules/react-syntax-highlighter/src/languages/hljs/reasonml.js +2 -0
  3087. package/node_modules/react-syntax-highlighter/src/languages/hljs/rib.js +2 -0
  3088. package/node_modules/react-syntax-highlighter/src/languages/hljs/roboconf.js +2 -0
  3089. package/node_modules/react-syntax-highlighter/src/languages/hljs/routeros.js +2 -0
  3090. package/node_modules/react-syntax-highlighter/src/languages/hljs/rsl.js +2 -0
  3091. package/node_modules/react-syntax-highlighter/src/languages/hljs/ruby.js +2 -0
  3092. package/node_modules/react-syntax-highlighter/src/languages/hljs/ruleslanguage.js +2 -0
  3093. package/node_modules/react-syntax-highlighter/src/languages/hljs/rust.js +2 -0
  3094. package/node_modules/react-syntax-highlighter/src/languages/hljs/sas.js +2 -0
  3095. package/node_modules/react-syntax-highlighter/src/languages/hljs/scala.js +2 -0
  3096. package/node_modules/react-syntax-highlighter/src/languages/hljs/scheme.js +2 -0
  3097. package/node_modules/react-syntax-highlighter/src/languages/hljs/scilab.js +2 -0
  3098. package/node_modules/react-syntax-highlighter/src/languages/hljs/scss.js +2 -0
  3099. package/node_modules/react-syntax-highlighter/src/languages/hljs/shell.js +2 -0
  3100. package/node_modules/react-syntax-highlighter/src/languages/hljs/smali.js +2 -0
  3101. package/node_modules/react-syntax-highlighter/src/languages/hljs/smalltalk.js +2 -0
  3102. package/node_modules/react-syntax-highlighter/src/languages/hljs/sml.js +2 -0
  3103. package/node_modules/react-syntax-highlighter/src/languages/hljs/sqf.js +2 -0
  3104. package/node_modules/react-syntax-highlighter/src/languages/hljs/sql.js +2 -0
  3105. package/node_modules/react-syntax-highlighter/src/languages/hljs/sql_more.js +2 -0
  3106. package/node_modules/react-syntax-highlighter/src/languages/hljs/stan.js +2 -0
  3107. package/node_modules/react-syntax-highlighter/src/languages/hljs/stata.js +2 -0
  3108. package/node_modules/react-syntax-highlighter/src/languages/hljs/step21.js +2 -0
  3109. package/node_modules/react-syntax-highlighter/src/languages/hljs/stylus.js +2 -0
  3110. package/node_modules/react-syntax-highlighter/src/languages/hljs/subunit.js +2 -0
  3111. package/node_modules/react-syntax-highlighter/src/languages/hljs/supported-languages.js +197 -0
  3112. package/node_modules/react-syntax-highlighter/src/languages/hljs/swift.js +2 -0
  3113. package/node_modules/react-syntax-highlighter/src/languages/hljs/taggerscript.js +2 -0
  3114. package/node_modules/react-syntax-highlighter/src/languages/hljs/tap.js +2 -0
  3115. package/node_modules/react-syntax-highlighter/src/languages/hljs/tcl.js +2 -0
  3116. package/node_modules/react-syntax-highlighter/src/languages/hljs/thrift.js +2 -0
  3117. package/node_modules/react-syntax-highlighter/src/languages/hljs/tp.js +2 -0
  3118. package/node_modules/react-syntax-highlighter/src/languages/hljs/twig.js +2 -0
  3119. package/node_modules/react-syntax-highlighter/src/languages/hljs/typescript.js +2 -0
  3120. package/node_modules/react-syntax-highlighter/src/languages/hljs/vala.js +2 -0
  3121. package/node_modules/react-syntax-highlighter/src/languages/hljs/vbnet.js +2 -0
  3122. package/node_modules/react-syntax-highlighter/src/languages/hljs/vbscript-html.js +2 -0
  3123. package/node_modules/react-syntax-highlighter/src/languages/hljs/vbscript.js +2 -0
  3124. package/node_modules/react-syntax-highlighter/src/languages/hljs/verilog.js +2 -0
  3125. package/node_modules/react-syntax-highlighter/src/languages/hljs/vhdl.js +2 -0
  3126. package/node_modules/react-syntax-highlighter/src/languages/hljs/vim.js +2 -0
  3127. package/node_modules/react-syntax-highlighter/src/languages/hljs/vue.js +4 -0
  3128. package/node_modules/react-syntax-highlighter/src/languages/hljs/x86asm.js +2 -0
  3129. package/node_modules/react-syntax-highlighter/src/languages/hljs/xl.js +2 -0
  3130. package/node_modules/react-syntax-highlighter/src/languages/hljs/xml.js +2 -0
  3131. package/node_modules/react-syntax-highlighter/src/languages/hljs/xquery.js +2 -0
  3132. package/node_modules/react-syntax-highlighter/src/languages/hljs/yaml.js +2 -0
  3133. package/node_modules/react-syntax-highlighter/src/languages/hljs/zephir.js +2 -0
  3134. package/node_modules/react-syntax-highlighter/src/languages/prism/abap.js +2 -0
  3135. package/node_modules/react-syntax-highlighter/src/languages/prism/abnf.js +2 -0
  3136. package/node_modules/react-syntax-highlighter/src/languages/prism/actionscript.js +2 -0
  3137. package/node_modules/react-syntax-highlighter/src/languages/prism/ada.js +2 -0
  3138. package/node_modules/react-syntax-highlighter/src/languages/prism/agda.js +2 -0
  3139. package/node_modules/react-syntax-highlighter/src/languages/prism/al.js +2 -0
  3140. package/node_modules/react-syntax-highlighter/src/languages/prism/antlr4.js +2 -0
  3141. package/node_modules/react-syntax-highlighter/src/languages/prism/apacheconf.js +2 -0
  3142. package/node_modules/react-syntax-highlighter/src/languages/prism/apex.js +2 -0
  3143. package/node_modules/react-syntax-highlighter/src/languages/prism/apl.js +2 -0
  3144. package/node_modules/react-syntax-highlighter/src/languages/prism/applescript.js +2 -0
  3145. package/node_modules/react-syntax-highlighter/src/languages/prism/aql.js +2 -0
  3146. package/node_modules/react-syntax-highlighter/src/languages/prism/arduino.js +2 -0
  3147. package/node_modules/react-syntax-highlighter/src/languages/prism/arff.js +2 -0
  3148. package/node_modules/react-syntax-highlighter/src/languages/prism/armasm.js +2 -0
  3149. package/node_modules/react-syntax-highlighter/src/languages/prism/arturo.js +2 -0
  3150. package/node_modules/react-syntax-highlighter/src/languages/prism/asciidoc.js +2 -0
  3151. package/node_modules/react-syntax-highlighter/src/languages/prism/asm6502.js +2 -0
  3152. package/node_modules/react-syntax-highlighter/src/languages/prism/asmatmel.js +2 -0
  3153. package/node_modules/react-syntax-highlighter/src/languages/prism/aspnet.js +2 -0
  3154. package/node_modules/react-syntax-highlighter/src/languages/prism/autohotkey.js +2 -0
  3155. package/node_modules/react-syntax-highlighter/src/languages/prism/autoit.js +2 -0
  3156. package/node_modules/react-syntax-highlighter/src/languages/prism/avisynth.js +2 -0
  3157. package/node_modules/react-syntax-highlighter/src/languages/prism/avro-idl.js +2 -0
  3158. package/node_modules/react-syntax-highlighter/src/languages/prism/awk.js +2 -0
  3159. package/node_modules/react-syntax-highlighter/src/languages/prism/bash.js +2 -0
  3160. package/node_modules/react-syntax-highlighter/src/languages/prism/basic.js +2 -0
  3161. package/node_modules/react-syntax-highlighter/src/languages/prism/batch.js +2 -0
  3162. package/node_modules/react-syntax-highlighter/src/languages/prism/bbcode.js +2 -0
  3163. package/node_modules/react-syntax-highlighter/src/languages/prism/bbj.js +2 -0
  3164. package/node_modules/react-syntax-highlighter/src/languages/prism/bicep.js +2 -0
  3165. package/node_modules/react-syntax-highlighter/src/languages/prism/birb.js +2 -0
  3166. package/node_modules/react-syntax-highlighter/src/languages/prism/bison.js +2 -0
  3167. package/node_modules/react-syntax-highlighter/src/languages/prism/bnf.js +2 -0
  3168. package/node_modules/react-syntax-highlighter/src/languages/prism/bqn.js +2 -0
  3169. package/node_modules/react-syntax-highlighter/src/languages/prism/brainfuck.js +2 -0
  3170. package/node_modules/react-syntax-highlighter/src/languages/prism/brightscript.js +2 -0
  3171. package/node_modules/react-syntax-highlighter/src/languages/prism/bro.js +2 -0
  3172. package/node_modules/react-syntax-highlighter/src/languages/prism/bsl.js +2 -0
  3173. package/node_modules/react-syntax-highlighter/src/languages/prism/c.js +2 -0
  3174. package/node_modules/react-syntax-highlighter/src/languages/prism/cfscript.js +2 -0
  3175. package/node_modules/react-syntax-highlighter/src/languages/prism/chaiscript.js +2 -0
  3176. package/node_modules/react-syntax-highlighter/src/languages/prism/cil.js +2 -0
  3177. package/node_modules/react-syntax-highlighter/src/languages/prism/cilkc.js +2 -0
  3178. package/node_modules/react-syntax-highlighter/src/languages/prism/cilkcpp.js +2 -0
  3179. package/node_modules/react-syntax-highlighter/src/languages/prism/clike.js +2 -0
  3180. package/node_modules/react-syntax-highlighter/src/languages/prism/clojure.js +2 -0
  3181. package/node_modules/react-syntax-highlighter/src/languages/prism/cmake.js +2 -0
  3182. package/node_modules/react-syntax-highlighter/src/languages/prism/cobol.js +2 -0
  3183. package/node_modules/react-syntax-highlighter/src/languages/prism/coffeescript.js +2 -0
  3184. package/node_modules/react-syntax-highlighter/src/languages/prism/concurnas.js +2 -0
  3185. package/node_modules/react-syntax-highlighter/src/languages/prism/cooklang.js +2 -0
  3186. package/node_modules/react-syntax-highlighter/src/languages/prism/coq.js +2 -0
  3187. package/node_modules/react-syntax-highlighter/src/languages/prism/core.js +2 -0
  3188. package/node_modules/react-syntax-highlighter/src/languages/prism/cpp.js +2 -0
  3189. package/node_modules/react-syntax-highlighter/src/languages/prism/crystal.js +2 -0
  3190. package/node_modules/react-syntax-highlighter/src/languages/prism/csharp.js +2 -0
  3191. package/node_modules/react-syntax-highlighter/src/languages/prism/cshtml.js +2 -0
  3192. package/node_modules/react-syntax-highlighter/src/languages/prism/csp.js +2 -0
  3193. package/node_modules/react-syntax-highlighter/src/languages/prism/css-extras.js +2 -0
  3194. package/node_modules/react-syntax-highlighter/src/languages/prism/css.js +2 -0
  3195. package/node_modules/react-syntax-highlighter/src/languages/prism/csv.js +2 -0
  3196. package/node_modules/react-syntax-highlighter/src/languages/prism/cue.js +2 -0
  3197. package/node_modules/react-syntax-highlighter/src/languages/prism/cypher.js +2 -0
  3198. package/node_modules/react-syntax-highlighter/src/languages/prism/d.js +2 -0
  3199. package/node_modules/react-syntax-highlighter/src/languages/prism/dart.js +2 -0
  3200. package/node_modules/react-syntax-highlighter/src/languages/prism/dataweave.js +2 -0
  3201. package/node_modules/react-syntax-highlighter/src/languages/prism/dax.js +2 -0
  3202. package/node_modules/react-syntax-highlighter/src/languages/prism/dhall.js +2 -0
  3203. package/node_modules/react-syntax-highlighter/src/languages/prism/diff.js +2 -0
  3204. package/node_modules/react-syntax-highlighter/src/languages/prism/django.js +2 -0
  3205. package/node_modules/react-syntax-highlighter/src/languages/prism/dns-zone-file.js +2 -0
  3206. package/node_modules/react-syntax-highlighter/src/languages/prism/docker.js +2 -0
  3207. package/node_modules/react-syntax-highlighter/src/languages/prism/dot.js +2 -0
  3208. package/node_modules/react-syntax-highlighter/src/languages/prism/ebnf.js +2 -0
  3209. package/node_modules/react-syntax-highlighter/src/languages/prism/editorconfig.js +2 -0
  3210. package/node_modules/react-syntax-highlighter/src/languages/prism/eiffel.js +2 -0
  3211. package/node_modules/react-syntax-highlighter/src/languages/prism/ejs.js +2 -0
  3212. package/node_modules/react-syntax-highlighter/src/languages/prism/elixir.js +2 -0
  3213. package/node_modules/react-syntax-highlighter/src/languages/prism/elm.js +2 -0
  3214. package/node_modules/react-syntax-highlighter/src/languages/prism/erb.js +2 -0
  3215. package/node_modules/react-syntax-highlighter/src/languages/prism/erlang.js +2 -0
  3216. package/node_modules/react-syntax-highlighter/src/languages/prism/etlua.js +2 -0
  3217. package/node_modules/react-syntax-highlighter/src/languages/prism/excel-formula.js +2 -0
  3218. package/node_modules/react-syntax-highlighter/src/languages/prism/factor.js +2 -0
  3219. package/node_modules/react-syntax-highlighter/src/languages/prism/false.js +2 -0
  3220. package/node_modules/react-syntax-highlighter/src/languages/prism/firestore-security-rules.js +2 -0
  3221. package/node_modules/react-syntax-highlighter/src/languages/prism/flow.js +2 -0
  3222. package/node_modules/react-syntax-highlighter/src/languages/prism/fortran.js +2 -0
  3223. package/node_modules/react-syntax-highlighter/src/languages/prism/fsharp.js +2 -0
  3224. package/node_modules/react-syntax-highlighter/src/languages/prism/ftl.js +2 -0
  3225. package/node_modules/react-syntax-highlighter/src/languages/prism/gap.js +2 -0
  3226. package/node_modules/react-syntax-highlighter/src/languages/prism/gcode.js +2 -0
  3227. package/node_modules/react-syntax-highlighter/src/languages/prism/gdscript.js +2 -0
  3228. package/node_modules/react-syntax-highlighter/src/languages/prism/gedcom.js +2 -0
  3229. package/node_modules/react-syntax-highlighter/src/languages/prism/gettext.js +2 -0
  3230. package/node_modules/react-syntax-highlighter/src/languages/prism/gherkin.js +2 -0
  3231. package/node_modules/react-syntax-highlighter/src/languages/prism/git.js +2 -0
  3232. package/node_modules/react-syntax-highlighter/src/languages/prism/glsl.js +2 -0
  3233. package/node_modules/react-syntax-highlighter/src/languages/prism/gml.js +2 -0
  3234. package/node_modules/react-syntax-highlighter/src/languages/prism/gn.js +2 -0
  3235. package/node_modules/react-syntax-highlighter/src/languages/prism/go-module.js +2 -0
  3236. package/node_modules/react-syntax-highlighter/src/languages/prism/go.js +2 -0
  3237. package/node_modules/react-syntax-highlighter/src/languages/prism/gradle.js +2 -0
  3238. package/node_modules/react-syntax-highlighter/src/languages/prism/graphql.js +2 -0
  3239. package/node_modules/react-syntax-highlighter/src/languages/prism/groovy.js +2 -0
  3240. package/node_modules/react-syntax-highlighter/src/languages/prism/haml.js +2 -0
  3241. package/node_modules/react-syntax-highlighter/src/languages/prism/handlebars.js +2 -0
  3242. package/node_modules/react-syntax-highlighter/src/languages/prism/haskell.js +2 -0
  3243. package/node_modules/react-syntax-highlighter/src/languages/prism/haxe.js +2 -0
  3244. package/node_modules/react-syntax-highlighter/src/languages/prism/hcl.js +2 -0
  3245. package/node_modules/react-syntax-highlighter/src/languages/prism/hlsl.js +2 -0
  3246. package/node_modules/react-syntax-highlighter/src/languages/prism/hoon.js +2 -0
  3247. package/node_modules/react-syntax-highlighter/src/languages/prism/hpkp.js +2 -0
  3248. package/node_modules/react-syntax-highlighter/src/languages/prism/hsts.js +2 -0
  3249. package/node_modules/react-syntax-highlighter/src/languages/prism/http.js +2 -0
  3250. package/node_modules/react-syntax-highlighter/src/languages/prism/ichigojam.js +2 -0
  3251. package/node_modules/react-syntax-highlighter/src/languages/prism/icon.js +2 -0
  3252. package/node_modules/react-syntax-highlighter/src/languages/prism/icu-message-format.js +2 -0
  3253. package/node_modules/react-syntax-highlighter/src/languages/prism/idris.js +2 -0
  3254. package/node_modules/react-syntax-highlighter/src/languages/prism/iecst.js +2 -0
  3255. package/node_modules/react-syntax-highlighter/src/languages/prism/ignore.js +2 -0
  3256. package/node_modules/react-syntax-highlighter/src/languages/prism/index.js +297 -0
  3257. package/node_modules/react-syntax-highlighter/src/languages/prism/inform7.js +2 -0
  3258. package/node_modules/react-syntax-highlighter/src/languages/prism/ini.js +2 -0
  3259. package/node_modules/react-syntax-highlighter/src/languages/prism/io.js +2 -0
  3260. package/node_modules/react-syntax-highlighter/src/languages/prism/j.js +2 -0
  3261. package/node_modules/react-syntax-highlighter/src/languages/prism/java.js +2 -0
  3262. package/node_modules/react-syntax-highlighter/src/languages/prism/javadoc.js +2 -0
  3263. package/node_modules/react-syntax-highlighter/src/languages/prism/javadoclike.js +2 -0
  3264. package/node_modules/react-syntax-highlighter/src/languages/prism/javascript.js +2 -0
  3265. package/node_modules/react-syntax-highlighter/src/languages/prism/javastacktrace.js +2 -0
  3266. package/node_modules/react-syntax-highlighter/src/languages/prism/jexl.js +2 -0
  3267. package/node_modules/react-syntax-highlighter/src/languages/prism/jolie.js +2 -0
  3268. package/node_modules/react-syntax-highlighter/src/languages/prism/jq.js +2 -0
  3269. package/node_modules/react-syntax-highlighter/src/languages/prism/js-extras.js +2 -0
  3270. package/node_modules/react-syntax-highlighter/src/languages/prism/js-templates.js +2 -0
  3271. package/node_modules/react-syntax-highlighter/src/languages/prism/jsdoc.js +2 -0
  3272. package/node_modules/react-syntax-highlighter/src/languages/prism/json.js +2 -0
  3273. package/node_modules/react-syntax-highlighter/src/languages/prism/json5.js +2 -0
  3274. package/node_modules/react-syntax-highlighter/src/languages/prism/jsonp.js +2 -0
  3275. package/node_modules/react-syntax-highlighter/src/languages/prism/jsstacktrace.js +2 -0
  3276. package/node_modules/react-syntax-highlighter/src/languages/prism/jsx.js +2 -0
  3277. package/node_modules/react-syntax-highlighter/src/languages/prism/julia.js +2 -0
  3278. package/node_modules/react-syntax-highlighter/src/languages/prism/keepalived.js +2 -0
  3279. package/node_modules/react-syntax-highlighter/src/languages/prism/keyman.js +2 -0
  3280. package/node_modules/react-syntax-highlighter/src/languages/prism/kotlin.js +2 -0
  3281. package/node_modules/react-syntax-highlighter/src/languages/prism/kumir.js +2 -0
  3282. package/node_modules/react-syntax-highlighter/src/languages/prism/kusto.js +2 -0
  3283. package/node_modules/react-syntax-highlighter/src/languages/prism/latex.js +2 -0
  3284. package/node_modules/react-syntax-highlighter/src/languages/prism/latte.js +2 -0
  3285. package/node_modules/react-syntax-highlighter/src/languages/prism/less.js +2 -0
  3286. package/node_modules/react-syntax-highlighter/src/languages/prism/lilypond.js +2 -0
  3287. package/node_modules/react-syntax-highlighter/src/languages/prism/linker-script.js +2 -0
  3288. package/node_modules/react-syntax-highlighter/src/languages/prism/liquid.js +2 -0
  3289. package/node_modules/react-syntax-highlighter/src/languages/prism/lisp.js +2 -0
  3290. package/node_modules/react-syntax-highlighter/src/languages/prism/livescript.js +2 -0
  3291. package/node_modules/react-syntax-highlighter/src/languages/prism/llvm.js +2 -0
  3292. package/node_modules/react-syntax-highlighter/src/languages/prism/log.js +2 -0
  3293. package/node_modules/react-syntax-highlighter/src/languages/prism/lolcode.js +2 -0
  3294. package/node_modules/react-syntax-highlighter/src/languages/prism/lua.js +2 -0
  3295. package/node_modules/react-syntax-highlighter/src/languages/prism/magma.js +2 -0
  3296. package/node_modules/react-syntax-highlighter/src/languages/prism/makefile.js +2 -0
  3297. package/node_modules/react-syntax-highlighter/src/languages/prism/markdown.js +2 -0
  3298. package/node_modules/react-syntax-highlighter/src/languages/prism/markup-templating.js +2 -0
  3299. package/node_modules/react-syntax-highlighter/src/languages/prism/markup.js +2 -0
  3300. package/node_modules/react-syntax-highlighter/src/languages/prism/mata.js +2 -0
  3301. package/node_modules/react-syntax-highlighter/src/languages/prism/matlab.js +2 -0
  3302. package/node_modules/react-syntax-highlighter/src/languages/prism/maxscript.js +2 -0
  3303. package/node_modules/react-syntax-highlighter/src/languages/prism/mel.js +2 -0
  3304. package/node_modules/react-syntax-highlighter/src/languages/prism/mermaid.js +2 -0
  3305. package/node_modules/react-syntax-highlighter/src/languages/prism/metafont.js +2 -0
  3306. package/node_modules/react-syntax-highlighter/src/languages/prism/mizar.js +2 -0
  3307. package/node_modules/react-syntax-highlighter/src/languages/prism/mongodb.js +2 -0
  3308. package/node_modules/react-syntax-highlighter/src/languages/prism/monkey.js +2 -0
  3309. package/node_modules/react-syntax-highlighter/src/languages/prism/moonscript.js +2 -0
  3310. package/node_modules/react-syntax-highlighter/src/languages/prism/n1ql.js +2 -0
  3311. package/node_modules/react-syntax-highlighter/src/languages/prism/n4js.js +2 -0
  3312. package/node_modules/react-syntax-highlighter/src/languages/prism/nand2tetris-hdl.js +2 -0
  3313. package/node_modules/react-syntax-highlighter/src/languages/prism/naniscript.js +2 -0
  3314. package/node_modules/react-syntax-highlighter/src/languages/prism/nasm.js +2 -0
  3315. package/node_modules/react-syntax-highlighter/src/languages/prism/neon.js +2 -0
  3316. package/node_modules/react-syntax-highlighter/src/languages/prism/nevod.js +2 -0
  3317. package/node_modules/react-syntax-highlighter/src/languages/prism/nginx.js +2 -0
  3318. package/node_modules/react-syntax-highlighter/src/languages/prism/nim.js +2 -0
  3319. package/node_modules/react-syntax-highlighter/src/languages/prism/nix.js +2 -0
  3320. package/node_modules/react-syntax-highlighter/src/languages/prism/nsis.js +2 -0
  3321. package/node_modules/react-syntax-highlighter/src/languages/prism/objectivec.js +2 -0
  3322. package/node_modules/react-syntax-highlighter/src/languages/prism/ocaml.js +2 -0
  3323. package/node_modules/react-syntax-highlighter/src/languages/prism/odin.js +2 -0
  3324. package/node_modules/react-syntax-highlighter/src/languages/prism/opencl.js +2 -0
  3325. package/node_modules/react-syntax-highlighter/src/languages/prism/openqasm.js +2 -0
  3326. package/node_modules/react-syntax-highlighter/src/languages/prism/oz.js +2 -0
  3327. package/node_modules/react-syntax-highlighter/src/languages/prism/parigp.js +2 -0
  3328. package/node_modules/react-syntax-highlighter/src/languages/prism/parser.js +2 -0
  3329. package/node_modules/react-syntax-highlighter/src/languages/prism/pascal.js +2 -0
  3330. package/node_modules/react-syntax-highlighter/src/languages/prism/pascaligo.js +2 -0
  3331. package/node_modules/react-syntax-highlighter/src/languages/prism/pcaxis.js +2 -0
  3332. package/node_modules/react-syntax-highlighter/src/languages/prism/peoplecode.js +2 -0
  3333. package/node_modules/react-syntax-highlighter/src/languages/prism/perl.js +2 -0
  3334. package/node_modules/react-syntax-highlighter/src/languages/prism/php-extras.js +2 -0
  3335. package/node_modules/react-syntax-highlighter/src/languages/prism/php.js +2 -0
  3336. package/node_modules/react-syntax-highlighter/src/languages/prism/phpdoc.js +2 -0
  3337. package/node_modules/react-syntax-highlighter/src/languages/prism/plant-uml.js +2 -0
  3338. package/node_modules/react-syntax-highlighter/src/languages/prism/plsql.js +2 -0
  3339. package/node_modules/react-syntax-highlighter/src/languages/prism/powerquery.js +2 -0
  3340. package/node_modules/react-syntax-highlighter/src/languages/prism/powershell.js +2 -0
  3341. package/node_modules/react-syntax-highlighter/src/languages/prism/processing.js +2 -0
  3342. package/node_modules/react-syntax-highlighter/src/languages/prism/prolog.js +2 -0
  3343. package/node_modules/react-syntax-highlighter/src/languages/prism/promql.js +2 -0
  3344. package/node_modules/react-syntax-highlighter/src/languages/prism/properties.js +2 -0
  3345. package/node_modules/react-syntax-highlighter/src/languages/prism/protobuf.js +2 -0
  3346. package/node_modules/react-syntax-highlighter/src/languages/prism/psl.js +2 -0
  3347. package/node_modules/react-syntax-highlighter/src/languages/prism/pug.js +2 -0
  3348. package/node_modules/react-syntax-highlighter/src/languages/prism/puppet.js +2 -0
  3349. package/node_modules/react-syntax-highlighter/src/languages/prism/pure.js +2 -0
  3350. package/node_modules/react-syntax-highlighter/src/languages/prism/purebasic.js +2 -0
  3351. package/node_modules/react-syntax-highlighter/src/languages/prism/purescript.js +2 -0
  3352. package/node_modules/react-syntax-highlighter/src/languages/prism/python.js +2 -0
  3353. package/node_modules/react-syntax-highlighter/src/languages/prism/q.js +2 -0
  3354. package/node_modules/react-syntax-highlighter/src/languages/prism/qml.js +2 -0
  3355. package/node_modules/react-syntax-highlighter/src/languages/prism/qore.js +2 -0
  3356. package/node_modules/react-syntax-highlighter/src/languages/prism/qsharp.js +2 -0
  3357. package/node_modules/react-syntax-highlighter/src/languages/prism/r.js +2 -0
  3358. package/node_modules/react-syntax-highlighter/src/languages/prism/racket.js +2 -0
  3359. package/node_modules/react-syntax-highlighter/src/languages/prism/reason.js +2 -0
  3360. package/node_modules/react-syntax-highlighter/src/languages/prism/regex.js +2 -0
  3361. package/node_modules/react-syntax-highlighter/src/languages/prism/rego.js +2 -0
  3362. package/node_modules/react-syntax-highlighter/src/languages/prism/renpy.js +2 -0
  3363. package/node_modules/react-syntax-highlighter/src/languages/prism/rescript.js +2 -0
  3364. package/node_modules/react-syntax-highlighter/src/languages/prism/rest.js +2 -0
  3365. package/node_modules/react-syntax-highlighter/src/languages/prism/rip.js +2 -0
  3366. package/node_modules/react-syntax-highlighter/src/languages/prism/roboconf.js +2 -0
  3367. package/node_modules/react-syntax-highlighter/src/languages/prism/robotframework.js +2 -0
  3368. package/node_modules/react-syntax-highlighter/src/languages/prism/ruby.js +2 -0
  3369. package/node_modules/react-syntax-highlighter/src/languages/prism/rust.js +2 -0
  3370. package/node_modules/react-syntax-highlighter/src/languages/prism/sas.js +2 -0
  3371. package/node_modules/react-syntax-highlighter/src/languages/prism/sass.js +2 -0
  3372. package/node_modules/react-syntax-highlighter/src/languages/prism/scala.js +2 -0
  3373. package/node_modules/react-syntax-highlighter/src/languages/prism/scheme.js +2 -0
  3374. package/node_modules/react-syntax-highlighter/src/languages/prism/scss.js +2 -0
  3375. package/node_modules/react-syntax-highlighter/src/languages/prism/shell-session.js +2 -0
  3376. package/node_modules/react-syntax-highlighter/src/languages/prism/smali.js +2 -0
  3377. package/node_modules/react-syntax-highlighter/src/languages/prism/smalltalk.js +2 -0
  3378. package/node_modules/react-syntax-highlighter/src/languages/prism/smarty.js +2 -0
  3379. package/node_modules/react-syntax-highlighter/src/languages/prism/sml.js +2 -0
  3380. package/node_modules/react-syntax-highlighter/src/languages/prism/solidity.js +2 -0
  3381. package/node_modules/react-syntax-highlighter/src/languages/prism/solution-file.js +2 -0
  3382. package/node_modules/react-syntax-highlighter/src/languages/prism/soy.js +2 -0
  3383. package/node_modules/react-syntax-highlighter/src/languages/prism/sparql.js +2 -0
  3384. package/node_modules/react-syntax-highlighter/src/languages/prism/splunk-spl.js +2 -0
  3385. package/node_modules/react-syntax-highlighter/src/languages/prism/sqf.js +2 -0
  3386. package/node_modules/react-syntax-highlighter/src/languages/prism/sql.js +2 -0
  3387. package/node_modules/react-syntax-highlighter/src/languages/prism/squirrel.js +2 -0
  3388. package/node_modules/react-syntax-highlighter/src/languages/prism/stan.js +2 -0
  3389. package/node_modules/react-syntax-highlighter/src/languages/prism/stata.js +2 -0
  3390. package/node_modules/react-syntax-highlighter/src/languages/prism/stylus.js +2 -0
  3391. package/node_modules/react-syntax-highlighter/src/languages/prism/supercollider.js +2 -0
  3392. package/node_modules/react-syntax-highlighter/src/languages/prism/supported-languages.js +303 -0
  3393. package/node_modules/react-syntax-highlighter/src/languages/prism/swift.js +2 -0
  3394. package/node_modules/react-syntax-highlighter/src/languages/prism/systemd.js +2 -0
  3395. package/node_modules/react-syntax-highlighter/src/languages/prism/t4-cs.js +2 -0
  3396. package/node_modules/react-syntax-highlighter/src/languages/prism/t4-templating.js +2 -0
  3397. package/node_modules/react-syntax-highlighter/src/languages/prism/t4-vb.js +2 -0
  3398. package/node_modules/react-syntax-highlighter/src/languages/prism/tap.js +2 -0
  3399. package/node_modules/react-syntax-highlighter/src/languages/prism/tcl.js +2 -0
  3400. package/node_modules/react-syntax-highlighter/src/languages/prism/textile.js +2 -0
  3401. package/node_modules/react-syntax-highlighter/src/languages/prism/toml.js +2 -0
  3402. package/node_modules/react-syntax-highlighter/src/languages/prism/tremor.js +2 -0
  3403. package/node_modules/react-syntax-highlighter/src/languages/prism/tsx.js +2 -0
  3404. package/node_modules/react-syntax-highlighter/src/languages/prism/tt2.js +2 -0
  3405. package/node_modules/react-syntax-highlighter/src/languages/prism/turtle.js +2 -0
  3406. package/node_modules/react-syntax-highlighter/src/languages/prism/twig.js +2 -0
  3407. package/node_modules/react-syntax-highlighter/src/languages/prism/typescript.js +2 -0
  3408. package/node_modules/react-syntax-highlighter/src/languages/prism/typoscript.js +2 -0
  3409. package/node_modules/react-syntax-highlighter/src/languages/prism/unrealscript.js +2 -0
  3410. package/node_modules/react-syntax-highlighter/src/languages/prism/uorazor.js +2 -0
  3411. package/node_modules/react-syntax-highlighter/src/languages/prism/uri.js +2 -0
  3412. package/node_modules/react-syntax-highlighter/src/languages/prism/v.js +2 -0
  3413. package/node_modules/react-syntax-highlighter/src/languages/prism/vala.js +2 -0
  3414. package/node_modules/react-syntax-highlighter/src/languages/prism/vbnet.js +2 -0
  3415. package/node_modules/react-syntax-highlighter/src/languages/prism/velocity.js +2 -0
  3416. package/node_modules/react-syntax-highlighter/src/languages/prism/verilog.js +2 -0
  3417. package/node_modules/react-syntax-highlighter/src/languages/prism/vhdl.js +2 -0
  3418. package/node_modules/react-syntax-highlighter/src/languages/prism/vim.js +2 -0
  3419. package/node_modules/react-syntax-highlighter/src/languages/prism/visual-basic.js +2 -0
  3420. package/node_modules/react-syntax-highlighter/src/languages/prism/warpscript.js +2 -0
  3421. package/node_modules/react-syntax-highlighter/src/languages/prism/wasm.js +2 -0
  3422. package/node_modules/react-syntax-highlighter/src/languages/prism/web-idl.js +2 -0
  3423. package/node_modules/react-syntax-highlighter/src/languages/prism/wgsl.js +2 -0
  3424. package/node_modules/react-syntax-highlighter/src/languages/prism/wiki.js +2 -0
  3425. package/node_modules/react-syntax-highlighter/src/languages/prism/wolfram.js +2 -0
  3426. package/node_modules/react-syntax-highlighter/src/languages/prism/wren.js +2 -0
  3427. package/node_modules/react-syntax-highlighter/src/languages/prism/xeora.js +2 -0
  3428. package/node_modules/react-syntax-highlighter/src/languages/prism/xml-doc.js +2 -0
  3429. package/node_modules/react-syntax-highlighter/src/languages/prism/xojo.js +2 -0
  3430. package/node_modules/react-syntax-highlighter/src/languages/prism/xquery.js +2 -0
  3431. package/node_modules/react-syntax-highlighter/src/languages/prism/yaml.js +2 -0
  3432. package/node_modules/react-syntax-highlighter/src/languages/prism/yang.js +2 -0
  3433. package/node_modules/react-syntax-highlighter/src/languages/prism/zig.js +2 -0
  3434. package/node_modules/react-syntax-highlighter/src/light-async.js +21 -0
  3435. package/node_modules/react-syntax-highlighter/src/light.js +7 -0
  3436. package/node_modules/react-syntax-highlighter/src/prism-async-light.js +19 -0
  3437. package/node_modules/react-syntax-highlighter/src/prism-async.js +14 -0
  3438. package/node_modules/react-syntax-highlighter/src/prism-light.js +10 -0
  3439. package/node_modules/react-syntax-highlighter/src/prism.js +9 -0
  3440. package/node_modules/react-syntax-highlighter/src/styles/hljs/a11y-dark.js +96 -0
  3441. package/node_modules/react-syntax-highlighter/src/styles/hljs/a11y-light.js +96 -0
  3442. package/node_modules/react-syntax-highlighter/src/styles/hljs/agate.js +99 -0
  3443. package/node_modules/react-syntax-highlighter/src/styles/hljs/an-old-hope.js +96 -0
  3444. package/node_modules/react-syntax-highlighter/src/styles/hljs/androidstudio.js +81 -0
  3445. package/node_modules/react-syntax-highlighter/src/styles/hljs/arduino-light.js +113 -0
  3446. package/node_modules/react-syntax-highlighter/src/styles/hljs/arta.js +100 -0
  3447. package/node_modules/react-syntax-highlighter/src/styles/hljs/ascetic.js +67 -0
  3448. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-cave-dark.js +102 -0
  3449. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-cave-light.js +102 -0
  3450. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-dune-dark.js +90 -0
  3451. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-dune-light.js +90 -0
  3452. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-estuary-dark.js +102 -0
  3453. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-estuary-light.js +102 -0
  3454. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-forest-dark.js +90 -0
  3455. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-forest-light.js +90 -0
  3456. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-heath-dark.js +90 -0
  3457. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-heath-light.js +90 -0
  3458. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-lakeside-dark.js +90 -0
  3459. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-lakeside-light.js +90 -0
  3460. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-plateau-dark.js +102 -0
  3461. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-plateau-light.js +102 -0
  3462. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-savanna-dark.js +102 -0
  3463. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-savanna-light.js +102 -0
  3464. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-seaside-dark.js +90 -0
  3465. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-seaside-light.js +90 -0
  3466. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-sulphurpool-dark.js +90 -0
  3467. package/node_modules/react-syntax-highlighter/src/styles/hljs/atelier-sulphurpool-light.js +90 -0
  3468. package/node_modules/react-syntax-highlighter/src/styles/hljs/atom-one-dark-reasonable.js +141 -0
  3469. package/node_modules/react-syntax-highlighter/src/styles/hljs/atom-one-dark.js +114 -0
  3470. package/node_modules/react-syntax-highlighter/src/styles/hljs/atom-one-light.js +114 -0
  3471. package/node_modules/react-syntax-highlighter/src/styles/hljs/brown-paper.js +91 -0
  3472. package/node_modules/react-syntax-highlighter/src/styles/hljs/codepen-embed.js +96 -0
  3473. package/node_modules/react-syntax-highlighter/src/styles/hljs/color-brewer.js +99 -0
  3474. package/node_modules/react-syntax-highlighter/src/styles/hljs/darcula.js +106 -0
  3475. package/node_modules/react-syntax-highlighter/src/styles/hljs/dark.js +91 -0
  3476. package/node_modules/react-syntax-highlighter/src/styles/hljs/darkula.js +1 -0
  3477. package/node_modules/react-syntax-highlighter/src/styles/hljs/default-style.js +113 -0
  3478. package/node_modules/react-syntax-highlighter/src/styles/hljs/docco.js +109 -0
  3479. package/node_modules/react-syntax-highlighter/src/styles/hljs/dracula.js +91 -0
  3480. package/node_modules/react-syntax-highlighter/src/styles/hljs/far.js +103 -0
  3481. package/node_modules/react-syntax-highlighter/src/styles/hljs/foundation.js +98 -0
  3482. package/node_modules/react-syntax-highlighter/src/styles/hljs/github-gist.js +95 -0
  3483. package/node_modules/react-syntax-highlighter/src/styles/hljs/github.js +116 -0
  3484. package/node_modules/react-syntax-highlighter/src/styles/hljs/gml.js +112 -0
  3485. package/node_modules/react-syntax-highlighter/src/styles/hljs/googlecode.js +113 -0
  3486. package/node_modules/react-syntax-highlighter/src/styles/hljs/gradient-dark.js +131 -0
  3487. package/node_modules/react-syntax-highlighter/src/styles/hljs/gradient-light.js +131 -0
  3488. package/node_modules/react-syntax-highlighter/src/styles/hljs/grayscale.js +116 -0
  3489. package/node_modules/react-syntax-highlighter/src/styles/hljs/gruvbox-dark.js +143 -0
  3490. package/node_modules/react-syntax-highlighter/src/styles/hljs/gruvbox-light.js +143 -0
  3491. package/node_modules/react-syntax-highlighter/src/styles/hljs/hopscotch.js +102 -0
  3492. package/node_modules/react-syntax-highlighter/src/styles/hljs/hybrid.js +126 -0
  3493. package/node_modules/react-syntax-highlighter/src/styles/hljs/idea.js +119 -0
  3494. package/node_modules/react-syntax-highlighter/src/styles/hljs/index.js +97 -0
  3495. package/node_modules/react-syntax-highlighter/src/styles/hljs/ir-black.js +96 -0
  3496. package/node_modules/react-syntax-highlighter/src/styles/hljs/isbl-editor-dark.js +128 -0
  3497. package/node_modules/react-syntax-highlighter/src/styles/hljs/isbl-editor-light.js +128 -0
  3498. package/node_modules/react-syntax-highlighter/src/styles/hljs/kimbie.dark.js +99 -0
  3499. package/node_modules/react-syntax-highlighter/src/styles/hljs/kimbie.light.js +99 -0
  3500. package/node_modules/react-syntax-highlighter/src/styles/hljs/lightfair.js +117 -0
  3501. package/node_modules/react-syntax-highlighter/src/styles/hljs/lioshi.js +102 -0
  3502. package/node_modules/react-syntax-highlighter/src/styles/hljs/magula.js +101 -0
  3503. package/node_modules/react-syntax-highlighter/src/styles/hljs/mono-blue.js +96 -0
  3504. package/node_modules/react-syntax-highlighter/src/styles/hljs/monokai-sublime.js +116 -0
  3505. package/node_modules/react-syntax-highlighter/src/styles/hljs/monokai.js +114 -0
  3506. package/node_modules/react-syntax-highlighter/src/styles/hljs/night-owl.js +144 -0
  3507. package/node_modules/react-syntax-highlighter/src/styles/hljs/nnfx-dark.js +116 -0
  3508. package/node_modules/react-syntax-highlighter/src/styles/hljs/nnfx.js +116 -0
  3509. package/node_modules/react-syntax-highlighter/src/styles/hljs/nord.js +236 -0
  3510. package/node_modules/react-syntax-highlighter/src/styles/hljs/obsidian.js +117 -0
  3511. package/node_modules/react-syntax-highlighter/src/styles/hljs/ocean.js +96 -0
  3512. package/node_modules/react-syntax-highlighter/src/styles/hljs/paraiso-dark.js +96 -0
  3513. package/node_modules/react-syntax-highlighter/src/styles/hljs/paraiso-light.js +96 -0
  3514. package/node_modules/react-syntax-highlighter/src/styles/hljs/pojoaque.js +104 -0
  3515. package/node_modules/react-syntax-highlighter/src/styles/hljs/purebasic.js +118 -0
  3516. package/node_modules/react-syntax-highlighter/src/styles/hljs/qtcreator_dark.js +119 -0
  3517. package/node_modules/react-syntax-highlighter/src/styles/hljs/qtcreator_light.js +119 -0
  3518. package/node_modules/react-syntax-highlighter/src/styles/hljs/railscasts.js +108 -0
  3519. package/node_modules/react-syntax-highlighter/src/styles/hljs/rainbow.js +109 -0
  3520. package/node_modules/react-syntax-highlighter/src/styles/hljs/routeros.js +119 -0
  3521. package/node_modules/react-syntax-highlighter/src/styles/hljs/school-book.js +100 -0
  3522. package/node_modules/react-syntax-highlighter/src/styles/hljs/shades-of-purple.js +103 -0
  3523. package/node_modules/react-syntax-highlighter/src/styles/hljs/solarized-dark.js +114 -0
  3524. package/node_modules/react-syntax-highlighter/src/styles/hljs/solarized-light.js +114 -0
  3525. package/node_modules/react-syntax-highlighter/src/styles/hljs/srcery.js +109 -0
  3526. package/node_modules/react-syntax-highlighter/src/styles/hljs/stackoverflow-dark.js +111 -0
  3527. package/node_modules/react-syntax-highlighter/src/styles/hljs/stackoverflow-light.js +111 -0
  3528. package/node_modules/react-syntax-highlighter/src/styles/hljs/sunburst.js +105 -0
  3529. package/node_modules/react-syntax-highlighter/src/styles/hljs/tomorrow-night-blue.js +96 -0
  3530. package/node_modules/react-syntax-highlighter/src/styles/hljs/tomorrow-night-bright.js +96 -0
  3531. package/node_modules/react-syntax-highlighter/src/styles/hljs/tomorrow-night-eighties.js +96 -0
  3532. package/node_modules/react-syntax-highlighter/src/styles/hljs/tomorrow-night.js +96 -0
  3533. package/node_modules/react-syntax-highlighter/src/styles/hljs/tomorrow.js +96 -0
  3534. package/node_modules/react-syntax-highlighter/src/styles/hljs/vs.js +93 -0
  3535. package/node_modules/react-syntax-highlighter/src/styles/hljs/vs2015.js +136 -0
  3536. package/node_modules/react-syntax-highlighter/src/styles/hljs/xcode.js +121 -0
  3537. package/node_modules/react-syntax-highlighter/src/styles/hljs/xt256.js +101 -0
  3538. package/node_modules/react-syntax-highlighter/src/styles/hljs/zenburn.js +96 -0
  3539. package/node_modules/react-syntax-highlighter/src/styles/prism/a11y-dark.js +146 -0
  3540. package/node_modules/react-syntax-highlighter/src/styles/prism/a11y-one-light.js +516 -0
  3541. package/node_modules/react-syntax-highlighter/src/styles/prism/atom-dark.js +153 -0
  3542. package/node_modules/react-syntax-highlighter/src/styles/prism/base16-ateliersulphurpool.light.js +197 -0
  3543. package/node_modules/react-syntax-highlighter/src/styles/prism/cb.js +161 -0
  3544. package/node_modules/react-syntax-highlighter/src/styles/prism/coldark-cold.js +386 -0
  3545. package/node_modules/react-syntax-highlighter/src/styles/prism/coldark-dark.js +386 -0
  3546. package/node_modules/react-syntax-highlighter/src/styles/prism/coy-without-shadows.js +182 -0
  3547. package/node_modules/react-syntax-highlighter/src/styles/prism/coy.js +249 -0
  3548. package/node_modules/react-syntax-highlighter/src/styles/prism/darcula.js +201 -0
  3549. package/node_modules/react-syntax-highlighter/src/styles/prism/dark.js +154 -0
  3550. package/node_modules/react-syntax-highlighter/src/styles/prism/dracula.js +154 -0
  3551. package/node_modules/react-syntax-highlighter/src/styles/prism/duotone-dark.js +218 -0
  3552. package/node_modules/react-syntax-highlighter/src/styles/prism/duotone-earth.js +218 -0
  3553. package/node_modules/react-syntax-highlighter/src/styles/prism/duotone-forest.js +218 -0
  3554. package/node_modules/react-syntax-highlighter/src/styles/prism/duotone-light.js +218 -0
  3555. package/node_modules/react-syntax-highlighter/src/styles/prism/duotone-sea.js +218 -0
  3556. package/node_modules/react-syntax-highlighter/src/styles/prism/duotone-space.js +218 -0
  3557. package/node_modules/react-syntax-highlighter/src/styles/prism/funky.js +161 -0
  3558. package/node_modules/react-syntax-highlighter/src/styles/prism/ghcolors.js +178 -0
  3559. package/node_modules/react-syntax-highlighter/src/styles/prism/gruvbox-dark.js +177 -0
  3560. package/node_modules/react-syntax-highlighter/src/styles/prism/gruvbox-light.js +177 -0
  3561. package/node_modules/react-syntax-highlighter/src/styles/prism/holi-theme.js +194 -0
  3562. package/node_modules/react-syntax-highlighter/src/styles/prism/hopscotch.js +148 -0
  3563. package/node_modules/react-syntax-highlighter/src/styles/prism/index.js +44 -0
  3564. package/node_modules/react-syntax-highlighter/src/styles/prism/lucario.js +154 -0
  3565. package/node_modules/react-syntax-highlighter/src/styles/prism/material-dark.js +195 -0
  3566. package/node_modules/react-syntax-highlighter/src/styles/prism/material-light.js +203 -0
  3567. package/node_modules/react-syntax-highlighter/src/styles/prism/material-oceanic.js +199 -0
  3568. package/node_modules/react-syntax-highlighter/src/styles/prism/night-owl.js +192 -0
  3569. package/node_modules/react-syntax-highlighter/src/styles/prism/nord.js +152 -0
  3570. package/node_modules/react-syntax-highlighter/src/styles/prism/okaidia.js +156 -0
  3571. package/node_modules/react-syntax-highlighter/src/styles/prism/one-dark.js +501 -0
  3572. package/node_modules/react-syntax-highlighter/src/styles/prism/one-light.js +489 -0
  3573. package/node_modules/react-syntax-highlighter/src/styles/prism/pojoaque.js +161 -0
  3574. package/node_modules/react-syntax-highlighter/src/styles/prism/prism.js +192 -0
  3575. package/node_modules/react-syntax-highlighter/src/styles/prism/shades-of-purple.js +234 -0
  3576. package/node_modules/react-syntax-highlighter/src/styles/prism/solarized-dark-atom.js +153 -0
  3577. package/node_modules/react-syntax-highlighter/src/styles/prism/solarizedlight.js +168 -0
  3578. package/node_modules/react-syntax-highlighter/src/styles/prism/synthwave84.js +183 -0
  3579. package/node_modules/react-syntax-highlighter/src/styles/prism/tomorrow.js +153 -0
  3580. package/node_modules/react-syntax-highlighter/src/styles/prism/twilight.js +214 -0
  3581. package/node_modules/react-syntax-highlighter/src/styles/prism/vs-dark.js +155 -0
  3582. package/node_modules/react-syntax-highlighter/src/styles/prism/vs.js +206 -0
  3583. package/node_modules/react-syntax-highlighter/src/styles/prism/vsc-dark-plus.js +282 -0
  3584. package/node_modules/react-syntax-highlighter/src/styles/prism/xonokai.js +180 -0
  3585. package/node_modules/react-syntax-highlighter/src/styles/prism/z-touch.js +196 -0
  3586. package/node_modules/refractor/lang/abap.d.ts +7 -0
  3587. package/node_modules/refractor/lang/abap.js +62 -0
  3588. package/node_modules/refractor/lang/abnf.d.ts +7 -0
  3589. package/node_modules/refractor/lang/abnf.js +66 -0
  3590. package/node_modules/refractor/lang/actionscript.d.ts +7 -0
  3591. package/node_modules/refractor/lang/actionscript.js +32 -0
  3592. package/node_modules/refractor/lang/ada.d.ts +7 -0
  3593. package/node_modules/refractor/lang/ada.js +34 -0
  3594. package/node_modules/refractor/lang/agda.d.ts +7 -0
  3595. package/node_modules/refractor/lang/agda.js +34 -0
  3596. package/node_modules/refractor/lang/al.d.ts +7 -0
  3597. package/node_modules/refractor/lang/al.js +38 -0
  3598. package/node_modules/refractor/lang/antlr4.d.ts +7 -0
  3599. package/node_modules/refractor/lang/antlr4.js +77 -0
  3600. package/node_modules/refractor/lang/apacheconf.d.ts +7 -0
  3601. package/node_modules/refractor/lang/apacheconf.js +59 -0
  3602. package/node_modules/refractor/lang/apex.d.ts +7 -0
  3603. package/node_modules/refractor/lang/apex.js +88 -0
  3604. package/node_modules/refractor/lang/apl.d.ts +7 -0
  3605. package/node_modules/refractor/lang/apl.js +44 -0
  3606. package/node_modules/refractor/lang/applescript.d.ts +7 -0
  3607. package/node_modules/refractor/lang/applescript.js +29 -0
  3608. package/node_modules/refractor/lang/aql.d.ts +7 -0
  3609. package/node_modules/refractor/lang/aql.js +60 -0
  3610. package/node_modules/refractor/lang/arduino.d.ts +7 -0
  3611. package/node_modules/refractor/lang/arduino.js +21 -0
  3612. package/node_modules/refractor/lang/arff.d.ts +7 -0
  3613. package/node_modules/refractor/lang/arff.js +20 -0
  3614. package/node_modules/refractor/lang/armasm.d.ts +7 -0
  3615. package/node_modules/refractor/lang/armasm.js +57 -0
  3616. package/node_modules/refractor/lang/arturo.d.ts +7 -0
  3617. package/node_modules/refractor/lang/arturo.js +102 -0
  3618. package/node_modules/refractor/lang/asciidoc.d.ts +7 -0
  3619. package/node_modules/refractor/lang/asciidoc.js +241 -0
  3620. package/node_modules/refractor/lang/asm6502.d.ts +7 -0
  3621. package/node_modules/refractor/lang/asm6502.js +40 -0
  3622. package/node_modules/refractor/lang/asmatmel.d.ts +7 -0
  3623. package/node_modules/refractor/lang/asmatmel.js +52 -0
  3624. package/node_modules/refractor/lang/aspnet.d.ts +7 -0
  3625. package/node_modules/refractor/lang/aspnet.js +73 -0
  3626. package/node_modules/refractor/lang/autohotkey.d.ts +7 -0
  3627. package/node_modules/refractor/lang/autohotkey.js +55 -0
  3628. package/node_modules/refractor/lang/autoit.d.ts +7 -0
  3629. package/node_modules/refractor/lang/autoit.js +46 -0
  3630. package/node_modules/refractor/lang/avisynth.d.ts +7 -0
  3631. package/node_modules/refractor/lang/avisynth.js +200 -0
  3632. package/node_modules/refractor/lang/avro-idl.d.ts +7 -0
  3633. package/node_modules/refractor/lang/avro-idl.js +57 -0
  3634. package/node_modules/refractor/lang/awk.d.ts +7 -0
  3635. package/node_modules/refractor/lang/awk.js +39 -0
  3636. package/node_modules/refractor/lang/bash.d.ts +7 -0
  3637. package/node_modules/refractor/lang/bash.js +250 -0
  3638. package/node_modules/refractor/lang/basic.d.ts +7 -0
  3639. package/node_modules/refractor/lang/basic.js +29 -0
  3640. package/node_modules/refractor/lang/batch.d.ts +7 -0
  3641. package/node_modules/refractor/lang/batch.js +110 -0
  3642. package/node_modules/refractor/lang/bbcode.d.ts +7 -0
  3643. package/node_modules/refractor/lang/bbcode.js +39 -0
  3644. package/node_modules/refractor/lang/bbj.d.ts +7 -0
  3645. package/node_modules/refractor/lang/bbj.js +30 -0
  3646. package/node_modules/refractor/lang/bicep.d.ts +7 -0
  3647. package/node_modules/refractor/lang/bicep.js +85 -0
  3648. package/node_modules/refractor/lang/birb.d.ts +7 -0
  3649. package/node_modules/refractor/lang/birb.js +34 -0
  3650. package/node_modules/refractor/lang/bison.d.ts +7 -0
  3651. package/node_modules/refractor/lang/bison.js +50 -0
  3652. package/node_modules/refractor/lang/bnf.d.ts +7 -0
  3653. package/node_modules/refractor/lang/bnf.js +30 -0
  3654. package/node_modules/refractor/lang/bqn.d.ts +7 -0
  3655. package/node_modules/refractor/lang/bqn.js +74 -0
  3656. package/node_modules/refractor/lang/brainfuck.d.ts +7 -0
  3657. package/node_modules/refractor/lang/brainfuck.js +30 -0
  3658. package/node_modules/refractor/lang/brightscript.d.ts +7 -0
  3659. package/node_modules/refractor/lang/brightscript.js +57 -0
  3660. package/node_modules/refractor/lang/bro.d.ts +7 -0
  3661. package/node_modules/refractor/lang/bro.js +39 -0
  3662. package/node_modules/refractor/lang/bsl.d.ts +7 -0
  3663. package/node_modules/refractor/lang/bsl.js +88 -0
  3664. package/node_modules/refractor/lang/c.d.ts +7 -0
  3665. package/node_modules/refractor/lang/c.js +94 -0
  3666. package/node_modules/refractor/lang/cfscript.d.ts +7 -0
  3667. package/node_modules/refractor/lang/cfscript.js +58 -0
  3668. package/node_modules/refractor/lang/chaiscript.d.ts +7 -0
  3669. package/node_modules/refractor/lang/chaiscript.js +73 -0
  3670. package/node_modules/refractor/lang/cil.d.ts +7 -0
  3671. package/node_modules/refractor/lang/cil.js +31 -0
  3672. package/node_modules/refractor/lang/cilkc.d.ts +7 -0
  3673. package/node_modules/refractor/lang/cilkc.js +19 -0
  3674. package/node_modules/refractor/lang/cilkcpp.d.ts +7 -0
  3675. package/node_modules/refractor/lang/cilkcpp.js +20 -0
  3676. package/node_modules/refractor/lang/clike.d.ts +7 -0
  3677. package/node_modules/refractor/lang/clike.js +43 -0
  3678. package/node_modules/refractor/lang/clojure.d.ts +7 -0
  3679. package/node_modules/refractor/lang/clojure.js +43 -0
  3680. package/node_modules/refractor/lang/cmake.d.ts +7 -0
  3681. package/node_modules/refractor/lang/cmake.js +44 -0
  3682. package/node_modules/refractor/lang/cobol.d.ts +7 -0
  3683. package/node_modules/refractor/lang/cobol.js +62 -0
  3684. package/node_modules/refractor/lang/coffeescript.d.ts +7 -0
  3685. package/node_modules/refractor/lang/coffeescript.js +97 -0
  3686. package/node_modules/refractor/lang/concurnas.d.ts +7 -0
  3687. package/node_modules/refractor/lang/concurnas.js +74 -0
  3688. package/node_modules/refractor/lang/cooklang.d.ts +7 -0
  3689. package/node_modules/refractor/lang/cooklang.js +148 -0
  3690. package/node_modules/refractor/lang/coq.d.ts +7 -0
  3691. package/node_modules/refractor/lang/coq.js +67 -0
  3692. package/node_modules/refractor/lang/cpp.d.ts +7 -0
  3693. package/node_modules/refractor/lang/cpp.js +128 -0
  3694. package/node_modules/refractor/lang/crystal.d.ts +7 -0
  3695. package/node_modules/refractor/lang/crystal.js +66 -0
  3696. package/node_modules/refractor/lang/csharp.d.ts +7 -0
  3697. package/node_modules/refractor/lang/csharp.js +486 -0
  3698. package/node_modules/refractor/lang/cshtml.d.ts +7 -0
  3699. package/node_modules/refractor/lang/cshtml.js +268 -0
  3700. package/node_modules/refractor/lang/csp.d.ts +7 -0
  3701. package/node_modules/refractor/lang/csp.js +87 -0
  3702. package/node_modules/refractor/lang/css-extras.d.ts +7 -0
  3703. package/node_modules/refractor/lang/css-extras.js +129 -0
  3704. package/node_modules/refractor/lang/css.d.ts +7 -0
  3705. package/node_modules/refractor/lang/css.js +90 -0
  3706. package/node_modules/refractor/lang/csv.d.ts +7 -0
  3707. package/node_modules/refractor/lang/csv.js +16 -0
  3708. package/node_modules/refractor/lang/cue.d.ts +7 -0
  3709. package/node_modules/refractor/lang/cue.js +98 -0
  3710. package/node_modules/refractor/lang/cypher.d.ts +7 -0
  3711. package/node_modules/refractor/lang/cypher.js +44 -0
  3712. package/node_modules/refractor/lang/d.d.ts +7 -0
  3713. package/node_modules/refractor/lang/d.js +98 -0
  3714. package/node_modules/refractor/lang/dart.d.ts +7 -0
  3715. package/node_modules/refractor/lang/dart.js +94 -0
  3716. package/node_modules/refractor/lang/dataweave.d.ts +7 -0
  3717. package/node_modules/refractor/lang/dataweave.js +52 -0
  3718. package/node_modules/refractor/lang/dax.d.ts +7 -0
  3719. package/node_modules/refractor/lang/dax.js +40 -0
  3720. package/node_modules/refractor/lang/dhall.d.ts +7 -0
  3721. package/node_modules/refractor/lang/dhall.js +81 -0
  3722. package/node_modules/refractor/lang/diff.d.ts +7 -0
  3723. package/node_modules/refractor/lang/diff.js +73 -0
  3724. package/node_modules/refractor/lang/django.d.ts +7 -0
  3725. package/node_modules/refractor/lang/django.js +68 -0
  3726. package/node_modules/refractor/lang/dns-zone-file.d.ts +7 -0
  3727. package/node_modules/refractor/lang/dns-zone-file.js +43 -0
  3728. package/node_modules/refractor/lang/docker.d.ts +7 -0
  3729. package/node_modules/refractor/lang/docker.js +129 -0
  3730. package/node_modules/refractor/lang/dot.d.ts +7 -0
  3731. package/node_modules/refractor/lang/dot.js +93 -0
  3732. package/node_modules/refractor/lang/ebnf.d.ts +7 -0
  3733. package/node_modules/refractor/lang/ebnf.js +30 -0
  3734. package/node_modules/refractor/lang/editorconfig.d.ts +7 -0
  3735. package/node_modules/refractor/lang/editorconfig.js +37 -0
  3736. package/node_modules/refractor/lang/eiffel.d.ts +7 -0
  3737. package/node_modules/refractor/lang/eiffel.js +45 -0
  3738. package/node_modules/refractor/lang/ejs.d.ts +7 -0
  3739. package/node_modules/refractor/lang/ejs.js +39 -0
  3740. package/node_modules/refractor/lang/elixir.d.ts +7 -0
  3741. package/node_modules/refractor/lang/elixir.js +111 -0
  3742. package/node_modules/refractor/lang/elm.d.ts +7 -0
  3743. package/node_modules/refractor/lang/elm.js +59 -0
  3744. package/node_modules/refractor/lang/erb.d.ts +7 -0
  3745. package/node_modules/refractor/lang/erb.js +40 -0
  3746. package/node_modules/refractor/lang/erlang.d.ts +7 -0
  3747. package/node_modules/refractor/lang/erlang.js +53 -0
  3748. package/node_modules/refractor/lang/etlua.d.ts +7 -0
  3749. package/node_modules/refractor/lang/etlua.js +37 -0
  3750. package/node_modules/refractor/lang/excel-formula.d.ts +7 -0
  3751. package/node_modules/refractor/lang/excel-formula.js +78 -0
  3752. package/node_modules/refractor/lang/factor.d.ts +7 -0
  3753. package/node_modules/refractor/lang/factor.js +937 -0
  3754. package/node_modules/refractor/lang/false.d.ts +7 -0
  3755. package/node_modules/refractor/lang/false.js +42 -0
  3756. package/node_modules/refractor/lang/firestore-security-rules.d.ts +7 -0
  3757. package/node_modules/refractor/lang/firestore-security-rules.js +50 -0
  3758. package/node_modules/refractor/lang/flow.d.ts +7 -0
  3759. package/node_modules/refractor/lang/flow.js +47 -0
  3760. package/node_modules/refractor/lang/fortran.d.ts +7 -0
  3761. package/node_modules/refractor/lang/fortran.js +51 -0
  3762. package/node_modules/refractor/lang/fsharp.d.ts +7 -0
  3763. package/node_modules/refractor/lang/fsharp.js +91 -0
  3764. package/node_modules/refractor/lang/ftl.d.ts +7 -0
  3765. package/node_modules/refractor/lang/ftl.js +134 -0
  3766. package/node_modules/refractor/lang/gap.d.ts +7 -0
  3767. package/node_modules/refractor/lang/gap.js +61 -0
  3768. package/node_modules/refractor/lang/gcode.d.ts +7 -0
  3769. package/node_modules/refractor/lang/gcode.js +26 -0
  3770. package/node_modules/refractor/lang/gdscript.d.ts +7 -0
  3771. package/node_modules/refractor/lang/gdscript.js +40 -0
  3772. package/node_modules/refractor/lang/gedcom.d.ts +7 -0
  3773. package/node_modules/refractor/lang/gedcom.js +40 -0
  3774. package/node_modules/refractor/lang/gettext.d.ts +7 -0
  3775. package/node_modules/refractor/lang/gettext.js +52 -0
  3776. package/node_modules/refractor/lang/gherkin.d.ts +7 -0
  3777. package/node_modules/refractor/lang/gherkin.js +95 -0
  3778. package/node_modules/refractor/lang/git.d.ts +7 -0
  3779. package/node_modules/refractor/lang/git.js +73 -0
  3780. package/node_modules/refractor/lang/glsl.d.ts +7 -0
  3781. package/node_modules/refractor/lang/glsl.js +16 -0
  3782. package/node_modules/refractor/lang/gml.d.ts +7 -0
  3783. package/node_modules/refractor/lang/gml.js +25 -0
  3784. package/node_modules/refractor/lang/gn.d.ts +7 -0
  3785. package/node_modules/refractor/lang/gn.js +61 -0
  3786. package/node_modules/refractor/lang/go-module.d.ts +7 -0
  3787. package/node_modules/refractor/lang/go-module.js +34 -0
  3788. package/node_modules/refractor/lang/go.d.ts +7 -0
  3789. package/node_modules/refractor/lang/go.js +41 -0
  3790. package/node_modules/refractor/lang/gradle.d.ts +7 -0
  3791. package/node_modules/refractor/lang/gradle.js +71 -0
  3792. package/node_modules/refractor/lang/graphql.d.ts +7 -0
  3793. package/node_modules/refractor/lang/graphql.js +226 -0
  3794. package/node_modules/refractor/lang/groovy.d.ts +7 -0
  3795. package/node_modules/refractor/lang/groovy.js +74 -0
  3796. package/node_modules/refractor/lang/haml.d.ts +7 -0
  3797. package/node_modules/refractor/lang/haml.js +173 -0
  3798. package/node_modules/refractor/lang/handlebars.d.ts +7 -0
  3799. package/node_modules/refractor/lang/handlebars.js +54 -0
  3800. package/node_modules/refractor/lang/haskell.d.ts +7 -0
  3801. package/node_modules/refractor/lang/haskell.js +80 -0
  3802. package/node_modules/refractor/lang/haxe.d.ts +7 -0
  3803. package/node_modules/refractor/lang/haxe.js +89 -0
  3804. package/node_modules/refractor/lang/hcl.d.ts +7 -0
  3805. package/node_modules/refractor/lang/hcl.js +75 -0
  3806. package/node_modules/refractor/lang/hlsl.d.ts +7 -0
  3807. package/node_modules/refractor/lang/hlsl.js +32 -0
  3808. package/node_modules/refractor/lang/hoon.d.ts +7 -0
  3809. package/node_modules/refractor/lang/hoon.js +25 -0
  3810. package/node_modules/refractor/lang/hpkp.d.ts +7 -0
  3811. package/node_modules/refractor/lang/hpkp.js +25 -0
  3812. package/node_modules/refractor/lang/hsts.d.ts +7 -0
  3813. package/node_modules/refractor/lang/hsts.js +24 -0
  3814. package/node_modules/refractor/lang/http.d.ts +7 -0
  3815. package/node_modules/refractor/lang/http.js +164 -0
  3816. package/node_modules/refractor/lang/ichigojam.d.ts +7 -0
  3817. package/node_modules/refractor/lang/ichigojam.js +27 -0
  3818. package/node_modules/refractor/lang/icon.d.ts +7 -0
  3819. package/node_modules/refractor/lang/icon.js +33 -0
  3820. package/node_modules/refractor/lang/icu-message-format.d.ts +7 -0
  3821. package/node_modules/refractor/lang/icu-message-format.js +164 -0
  3822. package/node_modules/refractor/lang/idris.d.ts +7 -0
  3823. package/node_modules/refractor/lang/idris.js +30 -0
  3824. package/node_modules/refractor/lang/iecst.d.ts +7 -0
  3825. package/node_modules/refractor/lang/iecst.js +46 -0
  3826. package/node_modules/refractor/lang/ignore.d.ts +7 -0
  3827. package/node_modules/refractor/lang/ignore.js +31 -0
  3828. package/node_modules/refractor/lang/inform7.d.ts +7 -0
  3829. package/node_modules/refractor/lang/inform7.js +77 -0
  3830. package/node_modules/refractor/lang/ini.d.ts +7 -0
  3831. package/node_modules/refractor/lang/ini.js +52 -0
  3832. package/node_modules/refractor/lang/io.d.ts +7 -0
  3833. package/node_modules/refractor/lang/io.js +35 -0
  3834. package/node_modules/refractor/lang/j.d.ts +7 -0
  3835. package/node_modules/refractor/lang/j.js +41 -0
  3836. package/node_modules/refractor/lang/java.d.ts +7 -0
  3837. package/node_modules/refractor/lang/java.js +163 -0
  3838. package/node_modules/refractor/lang/javadoc.d.ts +7 -0
  3839. package/node_modules/refractor/lang/javadoc.js +108 -0
  3840. package/node_modules/refractor/lang/javadoclike.d.ts +7 -0
  3841. package/node_modules/refractor/lang/javadoclike.js +94 -0
  3842. package/node_modules/refractor/lang/javascript.d.ts +7 -0
  3843. package/node_modules/refractor/lang/javascript.js +195 -0
  3844. package/node_modules/refractor/lang/javastacktrace.d.ts +7 -0
  3845. package/node_modules/refractor/lang/javastacktrace.js +149 -0
  3846. package/node_modules/refractor/lang/jexl.d.ts +7 -0
  3847. package/node_modules/refractor/lang/jexl.js +26 -0
  3848. package/node_modules/refractor/lang/jolie.d.ts +7 -0
  3849. package/node_modules/refractor/lang/jolie.js +58 -0
  3850. package/node_modules/refractor/lang/jq.d.ts +7 -0
  3851. package/node_modules/refractor/lang/jq.js +80 -0
  3852. package/node_modules/refractor/lang/js-extras.d.ts +7 -0
  3853. package/node_modules/refractor/lang/js-extras.js +160 -0
  3854. package/node_modules/refractor/lang/js-templates.d.ts +7 -0
  3855. package/node_modules/refractor/lang/js-templates.js +366 -0
  3856. package/node_modules/refractor/lang/jsdoc.d.ts +7 -0
  3857. package/node_modules/refractor/lang/jsdoc.js +102 -0
  3858. package/node_modules/refractor/lang/json.d.ts +7 -0
  3859. package/node_modules/refractor/lang/json.js +36 -0
  3860. package/node_modules/refractor/lang/json5.d.ts +7 -0
  3861. package/node_modules/refractor/lang/json5.js +34 -0
  3862. package/node_modules/refractor/lang/jsonp.d.ts +7 -0
  3863. package/node_modules/refractor/lang/jsonp.js +18 -0
  3864. package/node_modules/refractor/lang/jsstacktrace.d.ts +7 -0
  3865. package/node_modules/refractor/lang/jsstacktrace.js +53 -0
  3866. package/node_modules/refractor/lang/jsx.d.ts +7 -0
  3867. package/node_modules/refractor/lang/jsx.js +193 -0
  3868. package/node_modules/refractor/lang/julia.d.ts +7 -0
  3869. package/node_modules/refractor/lang/julia.js +50 -0
  3870. package/node_modules/refractor/lang/keepalived.d.ts +7 -0
  3871. package/node_modules/refractor/lang/keepalived.js +63 -0
  3872. package/node_modules/refractor/lang/keyman.d.ts +7 -0
  3873. package/node_modules/refractor/lang/keyman.js +54 -0
  3874. package/node_modules/refractor/lang/kotlin.d.ts +7 -0
  3875. package/node_modules/refractor/lang/kotlin.js +96 -0
  3876. package/node_modules/refractor/lang/kumir.d.ts +7 -0
  3877. package/node_modules/refractor/lang/kumir.js +116 -0
  3878. package/node_modules/refractor/lang/kusto.d.ts +7 -0
  3879. package/node_modules/refractor/lang/kusto.js +54 -0
  3880. package/node_modules/refractor/lang/latex.d.ts +7 -0
  3881. package/node_modules/refractor/lang/latex.js +77 -0
  3882. package/node_modules/refractor/lang/latte.d.ts +7 -0
  3883. package/node_modules/refractor/lang/latte.js +85 -0
  3884. package/node_modules/refractor/lang/less.d.ts +7 -0
  3885. package/node_modules/refractor/lang/less.js +65 -0
  3886. package/node_modules/refractor/lang/lilypond.d.ts +7 -0
  3887. package/node_modules/refractor/lang/lilypond.js +90 -0
  3888. package/node_modules/refractor/lang/linker-script.d.ts +7 -0
  3889. package/node_modules/refractor/lang/linker-script.js +35 -0
  3890. package/node_modules/refractor/lang/liquid.d.ts +7 -0
  3891. package/node_modules/refractor/lang/liquid.js +82 -0
  3892. package/node_modules/refractor/lang/lisp.d.ts +7 -0
  3893. package/node_modules/refractor/lang/lisp.js +223 -0
  3894. package/node_modules/refractor/lang/livescript.d.ts +7 -0
  3895. package/node_modules/refractor/lang/livescript.js +132 -0
  3896. package/node_modules/refractor/lang/llvm.d.ts +7 -0
  3897. package/node_modules/refractor/lang/llvm.js +31 -0
  3898. package/node_modules/refractor/lang/log.d.ts +7 -0
  3899. package/node_modules/refractor/lang/log.js +129 -0
  3900. package/node_modules/refractor/lang/lolcode.d.ts +7 -0
  3901. package/node_modules/refractor/lang/lolcode.js +60 -0
  3902. package/node_modules/refractor/lang/lua.d.ts +7 -0
  3903. package/node_modules/refractor/lang/lua.js +33 -0
  3904. package/node_modules/refractor/lang/magma.d.ts +7 -0
  3905. package/node_modules/refractor/lang/magma.js +43 -0
  3906. package/node_modules/refractor/lang/makefile.d.ts +7 -0
  3907. package/node_modules/refractor/lang/makefile.js +42 -0
  3908. package/node_modules/refractor/lang/markdown.d.ts +7 -0
  3909. package/node_modules/refractor/lang/markdown.js +449 -0
  3910. package/node_modules/refractor/lang/markup-templating.d.ts +7 -0
  3911. package/node_modules/refractor/lang/markup-templating.js +134 -0
  3912. package/node_modules/refractor/lang/markup.d.ts +7 -0
  3913. package/node_modules/refractor/lang/markup.js +202 -0
  3914. package/node_modules/refractor/lang/mata.d.ts +7 -0
  3915. package/node_modules/refractor/lang/mata.js +59 -0
  3916. package/node_modules/refractor/lang/matlab.d.ts +7 -0
  3917. package/node_modules/refractor/lang/matlab.js +24 -0
  3918. package/node_modules/refractor/lang/maxscript.d.ts +7 -0
  3919. package/node_modules/refractor/lang/maxscript.js +98 -0
  3920. package/node_modules/refractor/lang/mel.d.ts +7 -0
  3921. package/node_modules/refractor/lang/mel.js +56 -0
  3922. package/node_modules/refractor/lang/mermaid.d.ts +7 -0
  3923. package/node_modules/refractor/lang/mermaid.js +122 -0
  3924. package/node_modules/refractor/lang/metafont.d.ts +7 -0
  3925. package/node_modules/refractor/lang/metafont.js +102 -0
  3926. package/node_modules/refractor/lang/mizar.d.ts +7 -0
  3927. package/node_modules/refractor/lang/mizar.js +23 -0
  3928. package/node_modules/refractor/lang/mongodb.d.ts +7 -0
  3929. package/node_modules/refractor/lang/mongodb.js +307 -0
  3930. package/node_modules/refractor/lang/monkey.d.ts +7 -0
  3931. package/node_modules/refractor/lang/monkey.js +41 -0
  3932. package/node_modules/refractor/lang/moonscript.d.ts +7 -0
  3933. package/node_modules/refractor/lang/moonscript.js +70 -0
  3934. package/node_modules/refractor/lang/n1ql.d.ts +7 -0
  3935. package/node_modules/refractor/lang/n1ql.js +36 -0
  3936. package/node_modules/refractor/lang/n4js.d.ts +7 -0
  3937. package/node_modules/refractor/lang/n4js.js +25 -0
  3938. package/node_modules/refractor/lang/nand2tetris-hdl.d.ts +7 -0
  3939. package/node_modules/refractor/lang/nand2tetris-hdl.js +19 -0
  3940. package/node_modules/refractor/lang/naniscript.d.ts +7 -0
  3941. package/node_modules/refractor/lang/naniscript.js +176 -0
  3942. package/node_modules/refractor/lang/nasm.d.ts +7 -0
  3943. package/node_modules/refractor/lang/nasm.js +36 -0
  3944. package/node_modules/refractor/lang/neon.d.ts +7 -0
  3945. package/node_modules/refractor/lang/neon.js +54 -0
  3946. package/node_modules/refractor/lang/nevod.d.ts +7 -0
  3947. package/node_modules/refractor/lang/nevod.js +139 -0
  3948. package/node_modules/refractor/lang/nginx.d.ts +7 -0
  3949. package/node_modules/refractor/lang/nginx.js +63 -0
  3950. package/node_modules/refractor/lang/nim.d.ts +7 -0
  3951. package/node_modules/refractor/lang/nim.js +57 -0
  3952. package/node_modules/refractor/lang/nix.d.ts +7 -0
  3953. package/node_modules/refractor/lang/nix.js +48 -0
  3954. package/node_modules/refractor/lang/nsis.d.ts +7 -0
  3955. package/node_modules/refractor/lang/nsis.js +43 -0
  3956. package/node_modules/refractor/lang/objectivec.d.ts +7 -0
  3957. package/node_modules/refractor/lang/objectivec.js +23 -0
  3958. package/node_modules/refractor/lang/ocaml.d.ts +7 -0
  3959. package/node_modules/refractor/lang/ocaml.js +69 -0
  3960. package/node_modules/refractor/lang/odin.d.ts +7 -0
  3961. package/node_modules/refractor/lang/odin.js +98 -0
  3962. package/node_modules/refractor/lang/opencl.d.ts +7 -0
  3963. package/node_modules/refractor/lang/opencl.js +78 -0
  3964. package/node_modules/refractor/lang/openqasm.d.ts +7 -0
  3965. package/node_modules/refractor/lang/openqasm.js +33 -0
  3966. package/node_modules/refractor/lang/oz.d.ts +7 -0
  3967. package/node_modules/refractor/lang/oz.js +41 -0
  3968. package/node_modules/refractor/lang/parigp.d.ts +7 -0
  3969. package/node_modules/refractor/lang/parigp.js +63 -0
  3970. package/node_modules/refractor/lang/parser.d.ts +7 -0
  3971. package/node_modules/refractor/lang/parser.js +88 -0
  3972. package/node_modules/refractor/lang/pascal.d.ts +7 -0
  3973. package/node_modules/refractor/lang/pascal.js +83 -0
  3974. package/node_modules/refractor/lang/pascaligo.d.ts +7 -0
  3975. package/node_modules/refractor/lang/pascaligo.js +97 -0
  3976. package/node_modules/refractor/lang/pcaxis.d.ts +7 -0
  3977. package/node_modules/refractor/lang/pcaxis.js +64 -0
  3978. package/node_modules/refractor/lang/peoplecode.d.ts +7 -0
  3979. package/node_modules/refractor/lang/peoplecode.js +54 -0
  3980. package/node_modules/refractor/lang/perl.d.ts +7 -0
  3981. package/node_modules/refractor/lang/perl.js +160 -0
  3982. package/node_modules/refractor/lang/php-extras.d.ts +7 -0
  3983. package/node_modules/refractor/lang/php-extras.js +27 -0
  3984. package/node_modules/refractor/lang/php.d.ts +7 -0
  3985. package/node_modules/refractor/lang/php.js +361 -0
  3986. package/node_modules/refractor/lang/phpdoc.d.ts +7 -0
  3987. package/node_modules/refractor/lang/phpdoc.js +44 -0
  3988. package/node_modules/refractor/lang/plant-uml.d.ts +7 -0
  3989. package/node_modules/refractor/lang/plant-uml.js +123 -0
  3990. package/node_modules/refractor/lang/plsql.d.ts +7 -0
  3991. package/node_modules/refractor/lang/plsql.js +29 -0
  3992. package/node_modules/refractor/lang/powerquery.d.ts +7 -0
  3993. package/node_modules/refractor/lang/powerquery.js +67 -0
  3994. package/node_modules/refractor/lang/powershell.d.ts +7 -0
  3995. package/node_modules/refractor/lang/powershell.js +68 -0
  3996. package/node_modules/refractor/lang/processing.d.ts +7 -0
  3997. package/node_modules/refractor/lang/processing.js +27 -0
  3998. package/node_modules/refractor/lang/prolog.d.ts +7 -0
  3999. package/node_modules/refractor/lang/prolog.js +29 -0
  4000. package/node_modules/refractor/lang/promql.d.ts +7 -0
  4001. package/node_modules/refractor/lang/promql.js +112 -0
  4002. package/node_modules/refractor/lang/properties.d.ts +7 -0
  4003. package/node_modules/refractor/lang/properties.js +24 -0
  4004. package/node_modules/refractor/lang/protobuf.d.ts +7 -0
  4005. package/node_modules/refractor/lang/protobuf.js +55 -0
  4006. package/node_modules/refractor/lang/psl.d.ts +7 -0
  4007. package/node_modules/refractor/lang/psl.js +49 -0
  4008. package/node_modules/refractor/lang/pug.d.ts +7 -0
  4009. package/node_modules/refractor/lang/pug.js +220 -0
  4010. package/node_modules/refractor/lang/puppet.d.ts +7 -0
  4011. package/node_modules/refractor/lang/puppet.js +155 -0
  4012. package/node_modules/refractor/lang/pure.d.ts +7 -0
  4013. package/node_modules/refractor/lang/pure.js +106 -0
  4014. package/node_modules/refractor/lang/purebasic.d.ts +7 -0
  4015. package/node_modules/refractor/lang/purebasic.js +82 -0
  4016. package/node_modules/refractor/lang/purescript.d.ts +7 -0
  4017. package/node_modules/refractor/lang/purescript.js +42 -0
  4018. package/node_modules/refractor/lang/python.d.ts +7 -0
  4019. package/node_modules/refractor/lang/python.js +80 -0
  4020. package/node_modules/refractor/lang/q.d.ts +7 -0
  4021. package/node_modules/refractor/lang/q.js +64 -0
  4022. package/node_modules/refractor/lang/qml.d.ts +7 -0
  4023. package/node_modules/refractor/lang/qml.js +93 -0
  4024. package/node_modules/refractor/lang/qore.d.ts +7 -0
  4025. package/node_modules/refractor/lang/qore.js +35 -0
  4026. package/node_modules/refractor/lang/qsharp.d.ts +7 -0
  4027. package/node_modules/refractor/lang/qsharp.js +151 -0
  4028. package/node_modules/refractor/lang/r.d.ts +7 -0
  4029. package/node_modules/refractor/lang/r.js +33 -0
  4030. package/node_modules/refractor/lang/racket.d.ts +7 -0
  4031. package/node_modules/refractor/lang/racket.js +28 -0
  4032. package/node_modules/refractor/lang/reason.d.ts +7 -0
  4033. package/node_modules/refractor/lang/reason.js +39 -0
  4034. package/node_modules/refractor/lang/regex.d.ts +7 -0
  4035. package/node_modules/refractor/lang/regex.js +112 -0
  4036. package/node_modules/refractor/lang/rego.d.ts +7 -0
  4037. package/node_modules/refractor/lang/rego.js +39 -0
  4038. package/node_modules/refractor/lang/renpy.d.ts +7 -0
  4039. package/node_modules/refractor/lang/renpy.js +34 -0
  4040. package/node_modules/refractor/lang/rescript.d.ts +7 -0
  4041. package/node_modules/refractor/lang/rescript.js +76 -0
  4042. package/node_modules/refractor/lang/rest.d.ts +7 -0
  4043. package/node_modules/refractor/lang/rest.js +221 -0
  4044. package/node_modules/refractor/lang/rip.d.ts +7 -0
  4045. package/node_modules/refractor/lang/rip.js +41 -0
  4046. package/node_modules/refractor/lang/roboconf.d.ts +7 -0
  4047. package/node_modules/refractor/lang/roboconf.js +38 -0
  4048. package/node_modules/refractor/lang/robotframework.d.ts +7 -0
  4049. package/node_modules/refractor/lang/robotframework.js +111 -0
  4050. package/node_modules/refractor/lang/ruby.d.ts +7 -0
  4051. package/node_modules/refractor/lang/ruby.js +206 -0
  4052. package/node_modules/refractor/lang/rust.d.ts +7 -0
  4053. package/node_modules/refractor/lang/rust.js +134 -0
  4054. package/node_modules/refractor/lang/sas.d.ts +7 -0
  4055. package/node_modules/refractor/lang/sas.js +368 -0
  4056. package/node_modules/refractor/lang/sass.d.ts +7 -0
  4057. package/node_modules/refractor/lang/sass.js +85 -0
  4058. package/node_modules/refractor/lang/scala.d.ts +7 -0
  4059. package/node_modules/refractor/lang/scala.js +64 -0
  4060. package/node_modules/refractor/lang/scheme.d.ts +7 -0
  4061. package/node_modules/refractor/lang/scheme.js +143 -0
  4062. package/node_modules/refractor/lang/scss.d.ts +7 -0
  4063. package/node_modules/refractor/lang/scss.js +90 -0
  4064. package/node_modules/refractor/lang/shell-session.d.ts +7 -0
  4065. package/node_modules/refractor/lang/shell-session.js +82 -0
  4066. package/node_modules/refractor/lang/smali.d.ts +7 -0
  4067. package/node_modules/refractor/lang/smali.js +95 -0
  4068. package/node_modules/refractor/lang/smalltalk.d.ts +7 -0
  4069. package/node_modules/refractor/lang/smalltalk.js +48 -0
  4070. package/node_modules/refractor/lang/smarty.d.ts +7 -0
  4071. package/node_modules/refractor/lang/smarty.js +147 -0
  4072. package/node_modules/refractor/lang/sml.d.ts +7 -0
  4073. package/node_modules/refractor/lang/sml.js +79 -0
  4074. package/node_modules/refractor/lang/solidity.d.ts +7 -0
  4075. package/node_modules/refractor/lang/solidity.js +34 -0
  4076. package/node_modules/refractor/lang/solution-file.d.ts +7 -0
  4077. package/node_modules/refractor/lang/solution-file.js +58 -0
  4078. package/node_modules/refractor/lang/soy.d.ts +7 -0
  4079. package/node_modules/refractor/lang/soy.js +110 -0
  4080. package/node_modules/refractor/lang/sparql.d.ts +7 -0
  4081. package/node_modules/refractor/lang/sparql.js +27 -0
  4082. package/node_modules/refractor/lang/splunk-spl.d.ts +7 -0
  4083. package/node_modules/refractor/lang/splunk-spl.js +35 -0
  4084. package/node_modules/refractor/lang/sqf.d.ts +7 -0
  4085. package/node_modules/refractor/lang/sqf.js +48 -0
  4086. package/node_modules/refractor/lang/sql.d.ts +7 -0
  4087. package/node_modules/refractor/lang/sql.js +46 -0
  4088. package/node_modules/refractor/lang/squirrel.d.ts +7 -0
  4089. package/node_modules/refractor/lang/squirrel.js +56 -0
  4090. package/node_modules/refractor/lang/stan.d.ts +7 -0
  4091. package/node_modules/refractor/lang/stan.js +73 -0
  4092. package/node_modules/refractor/lang/stata.d.ts +7 -0
  4093. package/node_modules/refractor/lang/stata.js +89 -0
  4094. package/node_modules/refractor/lang/stylus.d.ts +7 -0
  4095. package/node_modules/refractor/lang/stylus.js +150 -0
  4096. package/node_modules/refractor/lang/supercollider.d.ts +7 -0
  4097. package/node_modules/refractor/lang/supercollider.js +44 -0
  4098. package/node_modules/refractor/lang/swift.d.ts +7 -0
  4099. package/node_modules/refractor/lang/swift.js +157 -0
  4100. package/node_modules/refractor/lang/systemd.d.ts +7 -0
  4101. package/node_modules/refractor/lang/systemd.js +81 -0
  4102. package/node_modules/refractor/lang/t4-cs.d.ts +7 -0
  4103. package/node_modules/refractor/lang/t4-cs.js +16 -0
  4104. package/node_modules/refractor/lang/t4-templating.d.ts +7 -0
  4105. package/node_modules/refractor/lang/t4-templating.js +56 -0
  4106. package/node_modules/refractor/lang/t4-vb.d.ts +7 -0
  4107. package/node_modules/refractor/lang/t4-vb.js +15 -0
  4108. package/node_modules/refractor/lang/tap.d.ts +7 -0
  4109. package/node_modules/refractor/lang/tap.js +34 -0
  4110. package/node_modules/refractor/lang/tcl.d.ts +7 -0
  4111. package/node_modules/refractor/lang/tcl.js +59 -0
  4112. package/node_modules/refractor/lang/textile.d.ts +7 -0
  4113. package/node_modules/refractor/lang/textile.js +304 -0
  4114. package/node_modules/refractor/lang/toml.d.ts +7 -0
  4115. package/node_modules/refractor/lang/toml.js +70 -0
  4116. package/node_modules/refractor/lang/tremor.d.ts +7 -0
  4117. package/node_modules/refractor/lang/tremor.js +86 -0
  4118. package/node_modules/refractor/lang/tsx.d.ts +7 -0
  4119. package/node_modules/refractor/lang/tsx.js +32 -0
  4120. package/node_modules/refractor/lang/tt2.d.ts +7 -0
  4121. package/node_modules/refractor/lang/tt2.js +65 -0
  4122. package/node_modules/refractor/lang/turtle.d.ts +7 -0
  4123. package/node_modules/refractor/lang/turtle.js +64 -0
  4124. package/node_modules/refractor/lang/twig.d.ts +7 -0
  4125. package/node_modules/refractor/lang/twig.js +52 -0
  4126. package/node_modules/refractor/lang/typescript.d.ts +7 -0
  4127. package/node_modules/refractor/lang/typescript.js +71 -0
  4128. package/node_modules/refractor/lang/typoscript.d.ts +7 -0
  4129. package/node_modules/refractor/lang/typoscript.js +89 -0
  4130. package/node_modules/refractor/lang/unrealscript.d.ts +7 -0
  4131. package/node_modules/refractor/lang/unrealscript.js +53 -0
  4132. package/node_modules/refractor/lang/uorazor.d.ts +7 -0
  4133. package/node_modules/refractor/lang/uorazor.js +63 -0
  4134. package/node_modules/refractor/lang/uri.d.ts +7 -0
  4135. package/node_modules/refractor/lang/uri.js +105 -0
  4136. package/node_modules/refractor/lang/v.d.ts +7 -0
  4137. package/node_modules/refractor/lang/v.js +95 -0
  4138. package/node_modules/refractor/lang/vala.d.ts +7 -0
  4139. package/node_modules/refractor/lang/vala.js +100 -0
  4140. package/node_modules/refractor/lang/vbnet.d.ts +7 -0
  4141. package/node_modules/refractor/lang/vbnet.js +35 -0
  4142. package/node_modules/refractor/lang/velocity.d.ts +7 -0
  4143. package/node_modules/refractor/lang/velocity.js +83 -0
  4144. package/node_modules/refractor/lang/verilog.d.ts +7 -0
  4145. package/node_modules/refractor/lang/verilog.js +38 -0
  4146. package/node_modules/refractor/lang/vhdl.d.ts +7 -0
  4147. package/node_modules/refractor/lang/vhdl.js +38 -0
  4148. package/node_modules/refractor/lang/vim.d.ts +7 -0
  4149. package/node_modules/refractor/lang/vim.js +23 -0
  4150. package/node_modules/refractor/lang/visual-basic.d.ts +7 -0
  4151. package/node_modules/refractor/lang/visual-basic.js +42 -0
  4152. package/node_modules/refractor/lang/warpscript.d.ts +7 -0
  4153. package/node_modules/refractor/lang/warpscript.js +35 -0
  4154. package/node_modules/refractor/lang/wasm.d.ts +7 -0
  4155. package/node_modules/refractor/lang/wasm.js +43 -0
  4156. package/node_modules/refractor/lang/web-idl.d.ts +7 -0
  4157. package/node_modules/refractor/lang/web-idl.js +120 -0
  4158. package/node_modules/refractor/lang/wgsl.d.ts +7 -0
  4159. package/node_modules/refractor/lang/wgsl.js +112 -0
  4160. package/node_modules/refractor/lang/wiki.d.ts +7 -0
  4161. package/node_modules/refractor/lang/wiki.js +90 -0
  4162. package/node_modules/refractor/lang/wolfram.d.ts +7 -0
  4163. package/node_modules/refractor/lang/wolfram.js +42 -0
  4164. package/node_modules/refractor/lang/wren.d.ts +7 -0
  4165. package/node_modules/refractor/lang/wren.js +105 -0
  4166. package/node_modules/refractor/lang/xeora.d.ts +7 -0
  4167. package/node_modules/refractor/lang/xeora.js +131 -0
  4168. package/node_modules/refractor/lang/xml-doc.d.ts +7 -0
  4169. package/node_modules/refractor/lang/xml-doc.js +47 -0
  4170. package/node_modules/refractor/lang/xojo.d.ts +7 -0
  4171. package/node_modules/refractor/lang/xojo.js +30 -0
  4172. package/node_modules/refractor/lang/xquery.d.ts +7 -0
  4173. package/node_modules/refractor/lang/xquery.js +205 -0
  4174. package/node_modules/refractor/lang/yaml.d.ts +7 -0
  4175. package/node_modules/refractor/lang/yaml.js +129 -0
  4176. package/node_modules/refractor/lang/yang.d.ts +7 -0
  4177. package/node_modules/refractor/lang/yang.js +30 -0
  4178. package/node_modules/refractor/lang/zig.d.ts +7 -0
  4179. package/node_modules/refractor/lang/zig.js +131 -0
  4180. package/node_modules/refractor/lib/all.d.ts +3 -0
  4181. package/node_modules/refractor/lib/all.d.ts.map +1 -0
  4182. package/node_modules/refractor/lib/all.js +602 -0
  4183. package/node_modules/refractor/lib/common.d.ts +3 -0
  4184. package/node_modules/refractor/lib/common.d.ts.map +1 -0
  4185. package/node_modules/refractor/lib/common.js +80 -0
  4186. package/node_modules/refractor/lib/core.d.ts +125 -0
  4187. package/node_modules/refractor/lib/core.d.ts.map +1 -0
  4188. package/node_modules/refractor/lib/core.js +316 -0
  4189. package/node_modules/refractor/lib/prism-core.d.ts +113 -0
  4190. package/node_modules/refractor/lib/prism-core.d.ts.map +1 -0
  4191. package/node_modules/refractor/lib/prism-core.js +768 -0
  4192. package/node_modules/refractor/license +23 -0
  4193. package/node_modules/refractor/package.json +140 -0
  4194. package/node_modules/refractor/readme.md +828 -0
  4195. package/node_modules/space-separated-tokens/index.d.ts +18 -0
  4196. package/node_modules/space-separated-tokens/index.js +24 -0
  4197. package/node_modules/space-separated-tokens/license +22 -0
  4198. package/node_modules/space-separated-tokens/package.json +67 -0
  4199. package/node_modules/space-separated-tokens/readme.md +156 -0
  4200. package/oclif.manifest.json +821 -602
  4201. package/package.json +2 -2
  4202. package/dist/server/infra/http/review-api-handler.d.ts +0 -13
  4203. package/dist/server/infra/http/review-api-handler.js +0 -286
  4204. package/dist/server/infra/http/review-ui.d.ts +0 -7
  4205. package/dist/server/infra/http/review-ui.js +0 -606
  4206. package/dist/webui/assets/index-B9JmEFOK.js +0 -130
  4207. package/dist/webui/assets/index-CMIKsBMr.css +0 -1
  4208. package/dist/webui/assets/qoder-connector-D9_pSbd_.svg +0 -1
@@ -0,0 +1,2517 @@
1
+ function deepFreeze(obj) {
2
+ if (obj instanceof Map) {
3
+ obj.clear = obj.delete = obj.set = function () {
4
+ throw new Error('map is read-only');
5
+ };
6
+ } else if (obj instanceof Set) {
7
+ obj.add = obj.clear = obj.delete = function () {
8
+ throw new Error('set is read-only');
9
+ };
10
+ }
11
+
12
+ // Freeze self
13
+ Object.freeze(obj);
14
+
15
+ Object.getOwnPropertyNames(obj).forEach(function (name) {
16
+ var prop = obj[name];
17
+
18
+ // Freeze prop if it is an object
19
+ if (typeof prop == 'object' && !Object.isFrozen(prop)) {
20
+ deepFreeze(prop);
21
+ }
22
+ });
23
+
24
+ return obj;
25
+ }
26
+
27
+ var deepFreezeEs6 = deepFreeze;
28
+ var _default = deepFreeze;
29
+ deepFreezeEs6.default = _default;
30
+
31
+ /** @implements CallbackResponse */
32
+ class Response {
33
+ /**
34
+ * @param {CompiledMode} mode
35
+ */
36
+ constructor(mode) {
37
+ // eslint-disable-next-line no-undefined
38
+ if (mode.data === undefined) mode.data = {};
39
+
40
+ this.data = mode.data;
41
+ this.isMatchIgnored = false;
42
+ }
43
+
44
+ ignoreMatch() {
45
+ this.isMatchIgnored = true;
46
+ }
47
+ }
48
+
49
+ /**
50
+ * @param {string} value
51
+ * @returns {string}
52
+ */
53
+ function escapeHTML(value) {
54
+ return value
55
+ .replace(/&/g, '&')
56
+ .replace(/</g, '&lt;')
57
+ .replace(/>/g, '&gt;')
58
+ .replace(/"/g, '&quot;')
59
+ .replace(/'/g, '&#x27;');
60
+ }
61
+
62
+ /**
63
+ * performs a shallow merge of multiple objects into one
64
+ *
65
+ * @template T
66
+ * @param {T} original
67
+ * @param {Record<string,any>[]} objects
68
+ * @returns {T} a single new object
69
+ */
70
+ function inherit(original, ...objects) {
71
+ /** @type Record<string,any> */
72
+ const result = Object.create(null);
73
+
74
+ for (const key in original) {
75
+ result[key] = original[key];
76
+ }
77
+ objects.forEach(function(obj) {
78
+ for (const key in obj) {
79
+ result[key] = obj[key];
80
+ }
81
+ });
82
+ return /** @type {T} */ (result);
83
+ }
84
+
85
+ /**
86
+ * @typedef {object} Renderer
87
+ * @property {(text: string) => void} addText
88
+ * @property {(node: Node) => void} openNode
89
+ * @property {(node: Node) => void} closeNode
90
+ * @property {() => string} value
91
+ */
92
+
93
+ /** @typedef {{kind?: string, sublanguage?: boolean}} Node */
94
+ /** @typedef {{walk: (r: Renderer) => void}} Tree */
95
+ /** */
96
+
97
+ const SPAN_CLOSE = '</span>';
98
+
99
+ /**
100
+ * Determines if a node needs to be wrapped in <span>
101
+ *
102
+ * @param {Node} node */
103
+ const emitsWrappingTags = (node) => {
104
+ return !!node.kind;
105
+ };
106
+
107
+ /** @type {Renderer} */
108
+ class HTMLRenderer {
109
+ /**
110
+ * Creates a new HTMLRenderer
111
+ *
112
+ * @param {Tree} parseTree - the parse tree (must support `walk` API)
113
+ * @param {{classPrefix: string}} options
114
+ */
115
+ constructor(parseTree, options) {
116
+ this.buffer = "";
117
+ this.classPrefix = options.classPrefix;
118
+ parseTree.walk(this);
119
+ }
120
+
121
+ /**
122
+ * Adds texts to the output stream
123
+ *
124
+ * @param {string} text */
125
+ addText(text) {
126
+ this.buffer += escapeHTML(text);
127
+ }
128
+
129
+ /**
130
+ * Adds a node open to the output stream (if needed)
131
+ *
132
+ * @param {Node} node */
133
+ openNode(node) {
134
+ if (!emitsWrappingTags(node)) return;
135
+
136
+ let className = node.kind;
137
+ if (!node.sublanguage) {
138
+ className = `${this.classPrefix}${className}`;
139
+ }
140
+ this.span(className);
141
+ }
142
+
143
+ /**
144
+ * Adds a node close to the output stream (if needed)
145
+ *
146
+ * @param {Node} node */
147
+ closeNode(node) {
148
+ if (!emitsWrappingTags(node)) return;
149
+
150
+ this.buffer += SPAN_CLOSE;
151
+ }
152
+
153
+ /**
154
+ * returns the accumulated buffer
155
+ */
156
+ value() {
157
+ return this.buffer;
158
+ }
159
+
160
+ // helpers
161
+
162
+ /**
163
+ * Builds a span element
164
+ *
165
+ * @param {string} className */
166
+ span(className) {
167
+ this.buffer += `<span class="${className}">`;
168
+ }
169
+ }
170
+
171
+ /** @typedef {{kind?: string, sublanguage?: boolean, children: Node[]} | string} Node */
172
+ /** @typedef {{kind?: string, sublanguage?: boolean, children: Node[]} } DataNode */
173
+ /** */
174
+
175
+ class TokenTree {
176
+ constructor() {
177
+ /** @type DataNode */
178
+ this.rootNode = { children: [] };
179
+ this.stack = [this.rootNode];
180
+ }
181
+
182
+ get top() {
183
+ return this.stack[this.stack.length - 1];
184
+ }
185
+
186
+ get root() { return this.rootNode; }
187
+
188
+ /** @param {Node} node */
189
+ add(node) {
190
+ this.top.children.push(node);
191
+ }
192
+
193
+ /** @param {string} kind */
194
+ openNode(kind) {
195
+ /** @type Node */
196
+ const node = { kind, children: [] };
197
+ this.add(node);
198
+ this.stack.push(node);
199
+ }
200
+
201
+ closeNode() {
202
+ if (this.stack.length > 1) {
203
+ return this.stack.pop();
204
+ }
205
+ // eslint-disable-next-line no-undefined
206
+ return undefined;
207
+ }
208
+
209
+ closeAllNodes() {
210
+ while (this.closeNode());
211
+ }
212
+
213
+ toJSON() {
214
+ return JSON.stringify(this.rootNode, null, 4);
215
+ }
216
+
217
+ /**
218
+ * @typedef { import("./html_renderer").Renderer } Renderer
219
+ * @param {Renderer} builder
220
+ */
221
+ walk(builder) {
222
+ // this does not
223
+ return this.constructor._walk(builder, this.rootNode);
224
+ // this works
225
+ // return TokenTree._walk(builder, this.rootNode);
226
+ }
227
+
228
+ /**
229
+ * @param {Renderer} builder
230
+ * @param {Node} node
231
+ */
232
+ static _walk(builder, node) {
233
+ if (typeof node === "string") {
234
+ builder.addText(node);
235
+ } else if (node.children) {
236
+ builder.openNode(node);
237
+ node.children.forEach((child) => this._walk(builder, child));
238
+ builder.closeNode(node);
239
+ }
240
+ return builder;
241
+ }
242
+
243
+ /**
244
+ * @param {Node} node
245
+ */
246
+ static _collapse(node) {
247
+ if (typeof node === "string") return;
248
+ if (!node.children) return;
249
+
250
+ if (node.children.every(el => typeof el === "string")) {
251
+ // node.text = node.children.join("");
252
+ // delete node.children;
253
+ node.children = [node.children.join("")];
254
+ } else {
255
+ node.children.forEach((child) => {
256
+ TokenTree._collapse(child);
257
+ });
258
+ }
259
+ }
260
+ }
261
+
262
+ /**
263
+ Currently this is all private API, but this is the minimal API necessary
264
+ that an Emitter must implement to fully support the parser.
265
+
266
+ Minimal interface:
267
+
268
+ - addKeyword(text, kind)
269
+ - addText(text)
270
+ - addSublanguage(emitter, subLanguageName)
271
+ - finalize()
272
+ - openNode(kind)
273
+ - closeNode()
274
+ - closeAllNodes()
275
+ - toHTML()
276
+
277
+ */
278
+
279
+ /**
280
+ * @implements {Emitter}
281
+ */
282
+ class TokenTreeEmitter extends TokenTree {
283
+ /**
284
+ * @param {*} options
285
+ */
286
+ constructor(options) {
287
+ super();
288
+ this.options = options;
289
+ }
290
+
291
+ /**
292
+ * @param {string} text
293
+ * @param {string} kind
294
+ */
295
+ addKeyword(text, kind) {
296
+ if (text === "") { return; }
297
+
298
+ this.openNode(kind);
299
+ this.addText(text);
300
+ this.closeNode();
301
+ }
302
+
303
+ /**
304
+ * @param {string} text
305
+ */
306
+ addText(text) {
307
+ if (text === "") { return; }
308
+
309
+ this.add(text);
310
+ }
311
+
312
+ /**
313
+ * @param {Emitter & {root: DataNode}} emitter
314
+ * @param {string} name
315
+ */
316
+ addSublanguage(emitter, name) {
317
+ /** @type DataNode */
318
+ const node = emitter.root;
319
+ node.kind = name;
320
+ node.sublanguage = true;
321
+ this.add(node);
322
+ }
323
+
324
+ toHTML() {
325
+ const renderer = new HTMLRenderer(this, this.options);
326
+ return renderer.value();
327
+ }
328
+
329
+ finalize() {
330
+ return true;
331
+ }
332
+ }
333
+
334
+ /**
335
+ * @param {string} value
336
+ * @returns {RegExp}
337
+ * */
338
+ function escape(value) {
339
+ return new RegExp(value.replace(/[-/\\^$*+?.()|[\]{}]/g, '\\$&'), 'm');
340
+ }
341
+
342
+ /**
343
+ * @param {RegExp | string } re
344
+ * @returns {string}
345
+ */
346
+ function source(re) {
347
+ if (!re) return null;
348
+ if (typeof re === "string") return re;
349
+
350
+ return re.source;
351
+ }
352
+
353
+ /**
354
+ * @param {...(RegExp | string) } args
355
+ * @returns {string}
356
+ */
357
+ function concat(...args) {
358
+ const joined = args.map((x) => source(x)).join("");
359
+ return joined;
360
+ }
361
+
362
+ /**
363
+ * Any of the passed expresssions may match
364
+ *
365
+ * Creates a huge this | this | that | that match
366
+ * @param {(RegExp | string)[] } args
367
+ * @returns {string}
368
+ */
369
+ function either(...args) {
370
+ const joined = '(' + args.map((x) => source(x)).join("|") + ")";
371
+ return joined;
372
+ }
373
+
374
+ /**
375
+ * @param {RegExp} re
376
+ * @returns {number}
377
+ */
378
+ function countMatchGroups(re) {
379
+ return (new RegExp(re.toString() + '|')).exec('').length - 1;
380
+ }
381
+
382
+ /**
383
+ * Does lexeme start with a regular expression match at the beginning
384
+ * @param {RegExp} re
385
+ * @param {string} lexeme
386
+ */
387
+ function startsWith(re, lexeme) {
388
+ const match = re && re.exec(lexeme);
389
+ return match && match.index === 0;
390
+ }
391
+
392
+ // BACKREF_RE matches an open parenthesis or backreference. To avoid
393
+ // an incorrect parse, it additionally matches the following:
394
+ // - [...] elements, where the meaning of parentheses and escapes change
395
+ // - other escape sequences, so we do not misparse escape sequences as
396
+ // interesting elements
397
+ // - non-matching or lookahead parentheses, which do not capture. These
398
+ // follow the '(' with a '?'.
399
+ const BACKREF_RE = /\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;
400
+
401
+ // join logically computes regexps.join(separator), but fixes the
402
+ // backreferences so they continue to match.
403
+ // it also places each individual regular expression into it's own
404
+ // match group, keeping track of the sequencing of those match groups
405
+ // is currently an exercise for the caller. :-)
406
+ /**
407
+ * @param {(string | RegExp)[]} regexps
408
+ * @param {string} separator
409
+ * @returns {string}
410
+ */
411
+ function join(regexps, separator = "|") {
412
+ let numCaptures = 0;
413
+
414
+ return regexps.map((regex) => {
415
+ numCaptures += 1;
416
+ const offset = numCaptures;
417
+ let re = source(regex);
418
+ let out = '';
419
+
420
+ while (re.length > 0) {
421
+ const match = BACKREF_RE.exec(re);
422
+ if (!match) {
423
+ out += re;
424
+ break;
425
+ }
426
+ out += re.substring(0, match.index);
427
+ re = re.substring(match.index + match[0].length);
428
+ if (match[0][0] === '\\' && match[1]) {
429
+ // Adjust the backreference.
430
+ out += '\\' + String(Number(match[1]) + offset);
431
+ } else {
432
+ out += match[0];
433
+ if (match[0] === '(') {
434
+ numCaptures++;
435
+ }
436
+ }
437
+ }
438
+ return out;
439
+ }).map(re => `(${re})`).join(separator);
440
+ }
441
+
442
+ // Common regexps
443
+ const MATCH_NOTHING_RE = /\b\B/;
444
+ const IDENT_RE = '[a-zA-Z]\\w*';
445
+ const UNDERSCORE_IDENT_RE = '[a-zA-Z_]\\w*';
446
+ const NUMBER_RE = '\\b\\d+(\\.\\d+)?';
447
+ const C_NUMBER_RE = '(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)'; // 0x..., 0..., decimal, float
448
+ const BINARY_NUMBER_RE = '\\b(0b[01]+)'; // 0b...
449
+ const RE_STARTERS_RE = '!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~';
450
+
451
+ /**
452
+ * @param { Partial<Mode> & {binary?: string | RegExp} } opts
453
+ */
454
+ const SHEBANG = (opts = {}) => {
455
+ const beginShebang = /^#![ ]*\//;
456
+ if (opts.binary) {
457
+ opts.begin = concat(
458
+ beginShebang,
459
+ /.*\b/,
460
+ opts.binary,
461
+ /\b.*/);
462
+ }
463
+ return inherit({
464
+ className: 'meta',
465
+ begin: beginShebang,
466
+ end: /$/,
467
+ relevance: 0,
468
+ /** @type {ModeCallback} */
469
+ "on:begin": (m, resp) => {
470
+ if (m.index !== 0) resp.ignoreMatch();
471
+ }
472
+ }, opts);
473
+ };
474
+
475
+ // Common modes
476
+ const BACKSLASH_ESCAPE = {
477
+ begin: '\\\\[\\s\\S]', relevance: 0
478
+ };
479
+ const APOS_STRING_MODE = {
480
+ className: 'string',
481
+ begin: '\'',
482
+ end: '\'',
483
+ illegal: '\\n',
484
+ contains: [BACKSLASH_ESCAPE]
485
+ };
486
+ const QUOTE_STRING_MODE = {
487
+ className: 'string',
488
+ begin: '"',
489
+ end: '"',
490
+ illegal: '\\n',
491
+ contains: [BACKSLASH_ESCAPE]
492
+ };
493
+ const PHRASAL_WORDS_MODE = {
494
+ begin: /\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/
495
+ };
496
+ /**
497
+ * Creates a comment mode
498
+ *
499
+ * @param {string | RegExp} begin
500
+ * @param {string | RegExp} end
501
+ * @param {Mode | {}} [modeOptions]
502
+ * @returns {Partial<Mode>}
503
+ */
504
+ const COMMENT = function(begin, end, modeOptions = {}) {
505
+ const mode = inherit(
506
+ {
507
+ className: 'comment',
508
+ begin,
509
+ end,
510
+ contains: []
511
+ },
512
+ modeOptions
513
+ );
514
+ mode.contains.push(PHRASAL_WORDS_MODE);
515
+ mode.contains.push({
516
+ className: 'doctag',
517
+ begin: '(?:TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):',
518
+ relevance: 0
519
+ });
520
+ return mode;
521
+ };
522
+ const C_LINE_COMMENT_MODE = COMMENT('//', '$');
523
+ const C_BLOCK_COMMENT_MODE = COMMENT('/\\*', '\\*/');
524
+ const HASH_COMMENT_MODE = COMMENT('#', '$');
525
+ const NUMBER_MODE = {
526
+ className: 'number',
527
+ begin: NUMBER_RE,
528
+ relevance: 0
529
+ };
530
+ const C_NUMBER_MODE = {
531
+ className: 'number',
532
+ begin: C_NUMBER_RE,
533
+ relevance: 0
534
+ };
535
+ const BINARY_NUMBER_MODE = {
536
+ className: 'number',
537
+ begin: BINARY_NUMBER_RE,
538
+ relevance: 0
539
+ };
540
+ const CSS_NUMBER_MODE = {
541
+ className: 'number',
542
+ begin: NUMBER_RE + '(' +
543
+ '%|em|ex|ch|rem' +
544
+ '|vw|vh|vmin|vmax' +
545
+ '|cm|mm|in|pt|pc|px' +
546
+ '|deg|grad|rad|turn' +
547
+ '|s|ms' +
548
+ '|Hz|kHz' +
549
+ '|dpi|dpcm|dppx' +
550
+ ')?',
551
+ relevance: 0
552
+ };
553
+ const REGEXP_MODE = {
554
+ // this outer rule makes sure we actually have a WHOLE regex and not simply
555
+ // an expression such as:
556
+ //
557
+ // 3 / something
558
+ //
559
+ // (which will then blow up when regex's `illegal` sees the newline)
560
+ begin: /(?=\/[^/\n]*\/)/,
561
+ contains: [{
562
+ className: 'regexp',
563
+ begin: /\//,
564
+ end: /\/[gimuy]*/,
565
+ illegal: /\n/,
566
+ contains: [
567
+ BACKSLASH_ESCAPE,
568
+ {
569
+ begin: /\[/,
570
+ end: /\]/,
571
+ relevance: 0,
572
+ contains: [BACKSLASH_ESCAPE]
573
+ }
574
+ ]
575
+ }]
576
+ };
577
+ const TITLE_MODE = {
578
+ className: 'title',
579
+ begin: IDENT_RE,
580
+ relevance: 0
581
+ };
582
+ const UNDERSCORE_TITLE_MODE = {
583
+ className: 'title',
584
+ begin: UNDERSCORE_IDENT_RE,
585
+ relevance: 0
586
+ };
587
+ const METHOD_GUARD = {
588
+ // excludes method names from keyword processing
589
+ begin: '\\.\\s*' + UNDERSCORE_IDENT_RE,
590
+ relevance: 0
591
+ };
592
+
593
+ /**
594
+ * Adds end same as begin mechanics to a mode
595
+ *
596
+ * Your mode must include at least a single () match group as that first match
597
+ * group is what is used for comparison
598
+ * @param {Partial<Mode>} mode
599
+ */
600
+ const END_SAME_AS_BEGIN = function(mode) {
601
+ return Object.assign(mode,
602
+ {
603
+ /** @type {ModeCallback} */
604
+ 'on:begin': (m, resp) => { resp.data._beginMatch = m[1]; },
605
+ /** @type {ModeCallback} */
606
+ 'on:end': (m, resp) => { if (resp.data._beginMatch !== m[1]) resp.ignoreMatch(); }
607
+ });
608
+ };
609
+
610
+ var MODES = /*#__PURE__*/Object.freeze({
611
+ __proto__: null,
612
+ MATCH_NOTHING_RE: MATCH_NOTHING_RE,
613
+ IDENT_RE: IDENT_RE,
614
+ UNDERSCORE_IDENT_RE: UNDERSCORE_IDENT_RE,
615
+ NUMBER_RE: NUMBER_RE,
616
+ C_NUMBER_RE: C_NUMBER_RE,
617
+ BINARY_NUMBER_RE: BINARY_NUMBER_RE,
618
+ RE_STARTERS_RE: RE_STARTERS_RE,
619
+ SHEBANG: SHEBANG,
620
+ BACKSLASH_ESCAPE: BACKSLASH_ESCAPE,
621
+ APOS_STRING_MODE: APOS_STRING_MODE,
622
+ QUOTE_STRING_MODE: QUOTE_STRING_MODE,
623
+ PHRASAL_WORDS_MODE: PHRASAL_WORDS_MODE,
624
+ COMMENT: COMMENT,
625
+ C_LINE_COMMENT_MODE: C_LINE_COMMENT_MODE,
626
+ C_BLOCK_COMMENT_MODE: C_BLOCK_COMMENT_MODE,
627
+ HASH_COMMENT_MODE: HASH_COMMENT_MODE,
628
+ NUMBER_MODE: NUMBER_MODE,
629
+ C_NUMBER_MODE: C_NUMBER_MODE,
630
+ BINARY_NUMBER_MODE: BINARY_NUMBER_MODE,
631
+ CSS_NUMBER_MODE: CSS_NUMBER_MODE,
632
+ REGEXP_MODE: REGEXP_MODE,
633
+ TITLE_MODE: TITLE_MODE,
634
+ UNDERSCORE_TITLE_MODE: UNDERSCORE_TITLE_MODE,
635
+ METHOD_GUARD: METHOD_GUARD,
636
+ END_SAME_AS_BEGIN: END_SAME_AS_BEGIN
637
+ });
638
+
639
+ // Grammar extensions / plugins
640
+ // See: https://github.com/highlightjs/highlight.js/issues/2833
641
+
642
+ // Grammar extensions allow "syntactic sugar" to be added to the grammar modes
643
+ // without requiring any underlying changes to the compiler internals.
644
+
645
+ // `compileMatch` being the perfect small example of now allowing a grammar
646
+ // author to write `match` when they desire to match a single expression rather
647
+ // than being forced to use `begin`. The extension then just moves `match` into
648
+ // `begin` when it runs. Ie, no features have been added, but we've just made
649
+ // the experience of writing (and reading grammars) a little bit nicer.
650
+
651
+ // ------
652
+
653
+ // TODO: We need negative look-behind support to do this properly
654
+ /**
655
+ * Skip a match if it has a preceding dot
656
+ *
657
+ * This is used for `beginKeywords` to prevent matching expressions such as
658
+ * `bob.keyword.do()`. The mode compiler automatically wires this up as a
659
+ * special _internal_ 'on:begin' callback for modes with `beginKeywords`
660
+ * @param {RegExpMatchArray} match
661
+ * @param {CallbackResponse} response
662
+ */
663
+ function skipIfhasPrecedingDot(match, response) {
664
+ const before = match.input[match.index - 1];
665
+ if (before === ".") {
666
+ response.ignoreMatch();
667
+ }
668
+ }
669
+
670
+
671
+ /**
672
+ * `beginKeywords` syntactic sugar
673
+ * @type {CompilerExt}
674
+ */
675
+ function beginKeywords(mode, parent) {
676
+ if (!parent) return;
677
+ if (!mode.beginKeywords) return;
678
+
679
+ // for languages with keywords that include non-word characters checking for
680
+ // a word boundary is not sufficient, so instead we check for a word boundary
681
+ // or whitespace - this does no harm in any case since our keyword engine
682
+ // doesn't allow spaces in keywords anyways and we still check for the boundary
683
+ // first
684
+ mode.begin = '\\b(' + mode.beginKeywords.split(' ').join('|') + ')(?!\\.)(?=\\b|\\s)';
685
+ mode.__beforeBegin = skipIfhasPrecedingDot;
686
+ mode.keywords = mode.keywords || mode.beginKeywords;
687
+ delete mode.beginKeywords;
688
+
689
+ // prevents double relevance, the keywords themselves provide
690
+ // relevance, the mode doesn't need to double it
691
+ // eslint-disable-next-line no-undefined
692
+ if (mode.relevance === undefined) mode.relevance = 0;
693
+ }
694
+
695
+ /**
696
+ * Allow `illegal` to contain an array of illegal values
697
+ * @type {CompilerExt}
698
+ */
699
+ function compileIllegal(mode, _parent) {
700
+ if (!Array.isArray(mode.illegal)) return;
701
+
702
+ mode.illegal = either(...mode.illegal);
703
+ }
704
+
705
+ /**
706
+ * `match` to match a single expression for readability
707
+ * @type {CompilerExt}
708
+ */
709
+ function compileMatch(mode, _parent) {
710
+ if (!mode.match) return;
711
+ if (mode.begin || mode.end) throw new Error("begin & end are not supported with match");
712
+
713
+ mode.begin = mode.match;
714
+ delete mode.match;
715
+ }
716
+
717
+ /**
718
+ * provides the default 1 relevance to all modes
719
+ * @type {CompilerExt}
720
+ */
721
+ function compileRelevance(mode, _parent) {
722
+ // eslint-disable-next-line no-undefined
723
+ if (mode.relevance === undefined) mode.relevance = 1;
724
+ }
725
+
726
+ // keywords that should have no default relevance value
727
+ const COMMON_KEYWORDS = [
728
+ 'of',
729
+ 'and',
730
+ 'for',
731
+ 'in',
732
+ 'not',
733
+ 'or',
734
+ 'if',
735
+ 'then',
736
+ 'parent', // common variable name
737
+ 'list', // common variable name
738
+ 'value' // common variable name
739
+ ];
740
+
741
+ const DEFAULT_KEYWORD_CLASSNAME = "keyword";
742
+
743
+ /**
744
+ * Given raw keywords from a language definition, compile them.
745
+ *
746
+ * @param {string | Record<string,string|string[]> | Array<string>} rawKeywords
747
+ * @param {boolean} caseInsensitive
748
+ */
749
+ function compileKeywords(rawKeywords, caseInsensitive, className = DEFAULT_KEYWORD_CLASSNAME) {
750
+ /** @type KeywordDict */
751
+ const compiledKeywords = {};
752
+
753
+ // input can be a string of keywords, an array of keywords, or a object with
754
+ // named keys representing className (which can then point to a string or array)
755
+ if (typeof rawKeywords === 'string') {
756
+ compileList(className, rawKeywords.split(" "));
757
+ } else if (Array.isArray(rawKeywords)) {
758
+ compileList(className, rawKeywords);
759
+ } else {
760
+ Object.keys(rawKeywords).forEach(function(className) {
761
+ // collapse all our objects back into the parent object
762
+ Object.assign(
763
+ compiledKeywords,
764
+ compileKeywords(rawKeywords[className], caseInsensitive, className)
765
+ );
766
+ });
767
+ }
768
+ return compiledKeywords;
769
+
770
+ // ---
771
+
772
+ /**
773
+ * Compiles an individual list of keywords
774
+ *
775
+ * Ex: "for if when while|5"
776
+ *
777
+ * @param {string} className
778
+ * @param {Array<string>} keywordList
779
+ */
780
+ function compileList(className, keywordList) {
781
+ if (caseInsensitive) {
782
+ keywordList = keywordList.map(x => x.toLowerCase());
783
+ }
784
+ keywordList.forEach(function(keyword) {
785
+ const pair = keyword.split('|');
786
+ compiledKeywords[pair[0]] = [className, scoreForKeyword(pair[0], pair[1])];
787
+ });
788
+ }
789
+ }
790
+
791
+ /**
792
+ * Returns the proper score for a given keyword
793
+ *
794
+ * Also takes into account comment keywords, which will be scored 0 UNLESS
795
+ * another score has been manually assigned.
796
+ * @param {string} keyword
797
+ * @param {string} [providedScore]
798
+ */
799
+ function scoreForKeyword(keyword, providedScore) {
800
+ // manual scores always win over common keywords
801
+ // so you can force a score of 1 if you really insist
802
+ if (providedScore) {
803
+ return Number(providedScore);
804
+ }
805
+
806
+ return commonKeyword(keyword) ? 0 : 1;
807
+ }
808
+
809
+ /**
810
+ * Determines if a given keyword is common or not
811
+ *
812
+ * @param {string} keyword */
813
+ function commonKeyword(keyword) {
814
+ return COMMON_KEYWORDS.includes(keyword.toLowerCase());
815
+ }
816
+
817
+ // compilation
818
+
819
+ /**
820
+ * Compiles a language definition result
821
+ *
822
+ * Given the raw result of a language definition (Language), compiles this so
823
+ * that it is ready for highlighting code.
824
+ * @param {Language} language
825
+ * @param {{plugins: HLJSPlugin[]}} opts
826
+ * @returns {CompiledLanguage}
827
+ */
828
+ function compileLanguage(language, { plugins }) {
829
+ /**
830
+ * Builds a regex with the case sensativility of the current language
831
+ *
832
+ * @param {RegExp | string} value
833
+ * @param {boolean} [global]
834
+ */
835
+ function langRe(value, global) {
836
+ return new RegExp(
837
+ source(value),
838
+ 'm' + (language.case_insensitive ? 'i' : '') + (global ? 'g' : '')
839
+ );
840
+ }
841
+
842
+ /**
843
+ Stores multiple regular expressions and allows you to quickly search for
844
+ them all in a string simultaneously - returning the first match. It does
845
+ this by creating a huge (a|b|c) regex - each individual item wrapped with ()
846
+ and joined by `|` - using match groups to track position. When a match is
847
+ found checking which position in the array has content allows us to figure
848
+ out which of the original regexes / match groups triggered the match.
849
+
850
+ The match object itself (the result of `Regex.exec`) is returned but also
851
+ enhanced by merging in any meta-data that was registered with the regex.
852
+ This is how we keep track of which mode matched, and what type of rule
853
+ (`illegal`, `begin`, end, etc).
854
+ */
855
+ class MultiRegex {
856
+ constructor() {
857
+ this.matchIndexes = {};
858
+ // @ts-ignore
859
+ this.regexes = [];
860
+ this.matchAt = 1;
861
+ this.position = 0;
862
+ }
863
+
864
+ // @ts-ignore
865
+ addRule(re, opts) {
866
+ opts.position = this.position++;
867
+ // @ts-ignore
868
+ this.matchIndexes[this.matchAt] = opts;
869
+ this.regexes.push([opts, re]);
870
+ this.matchAt += countMatchGroups(re) + 1;
871
+ }
872
+
873
+ compile() {
874
+ if (this.regexes.length === 0) {
875
+ // avoids the need to check length every time exec is called
876
+ // @ts-ignore
877
+ this.exec = () => null;
878
+ }
879
+ const terminators = this.regexes.map(el => el[1]);
880
+ this.matcherRe = langRe(join(terminators), true);
881
+ this.lastIndex = 0;
882
+ }
883
+
884
+ /** @param {string} s */
885
+ exec(s) {
886
+ this.matcherRe.lastIndex = this.lastIndex;
887
+ const match = this.matcherRe.exec(s);
888
+ if (!match) { return null; }
889
+
890
+ // eslint-disable-next-line no-undefined
891
+ const i = match.findIndex((el, i) => i > 0 && el !== undefined);
892
+ // @ts-ignore
893
+ const matchData = this.matchIndexes[i];
894
+ // trim off any earlier non-relevant match groups (ie, the other regex
895
+ // match groups that make up the multi-matcher)
896
+ match.splice(0, i);
897
+
898
+ return Object.assign(match, matchData);
899
+ }
900
+ }
901
+
902
+ /*
903
+ Created to solve the key deficiently with MultiRegex - there is no way to
904
+ test for multiple matches at a single location. Why would we need to do
905
+ that? In the future a more dynamic engine will allow certain matches to be
906
+ ignored. An example: if we matched say the 3rd regex in a large group but
907
+ decided to ignore it - we'd need to started testing again at the 4th
908
+ regex... but MultiRegex itself gives us no real way to do that.
909
+
910
+ So what this class creates MultiRegexs on the fly for whatever search
911
+ position they are needed.
912
+
913
+ NOTE: These additional MultiRegex objects are created dynamically. For most
914
+ grammars most of the time we will never actually need anything more than the
915
+ first MultiRegex - so this shouldn't have too much overhead.
916
+
917
+ Say this is our search group, and we match regex3, but wish to ignore it.
918
+
919
+ regex1 | regex2 | regex3 | regex4 | regex5 ' ie, startAt = 0
920
+
921
+ What we need is a new MultiRegex that only includes the remaining
922
+ possibilities:
923
+
924
+ regex4 | regex5 ' ie, startAt = 3
925
+
926
+ This class wraps all that complexity up in a simple API... `startAt` decides
927
+ where in the array of expressions to start doing the matching. It
928
+ auto-increments, so if a match is found at position 2, then startAt will be
929
+ set to 3. If the end is reached startAt will return to 0.
930
+
931
+ MOST of the time the parser will be setting startAt manually to 0.
932
+ */
933
+ class ResumableMultiRegex {
934
+ constructor() {
935
+ // @ts-ignore
936
+ this.rules = [];
937
+ // @ts-ignore
938
+ this.multiRegexes = [];
939
+ this.count = 0;
940
+
941
+ this.lastIndex = 0;
942
+ this.regexIndex = 0;
943
+ }
944
+
945
+ // @ts-ignore
946
+ getMatcher(index) {
947
+ if (this.multiRegexes[index]) return this.multiRegexes[index];
948
+
949
+ const matcher = new MultiRegex();
950
+ this.rules.slice(index).forEach(([re, opts]) => matcher.addRule(re, opts));
951
+ matcher.compile();
952
+ this.multiRegexes[index] = matcher;
953
+ return matcher;
954
+ }
955
+
956
+ resumingScanAtSamePosition() {
957
+ return this.regexIndex !== 0;
958
+ }
959
+
960
+ considerAll() {
961
+ this.regexIndex = 0;
962
+ }
963
+
964
+ // @ts-ignore
965
+ addRule(re, opts) {
966
+ this.rules.push([re, opts]);
967
+ if (opts.type === "begin") this.count++;
968
+ }
969
+
970
+ /** @param {string} s */
971
+ exec(s) {
972
+ const m = this.getMatcher(this.regexIndex);
973
+ m.lastIndex = this.lastIndex;
974
+ let result = m.exec(s);
975
+
976
+ // The following is because we have no easy way to say "resume scanning at the
977
+ // existing position but also skip the current rule ONLY". What happens is
978
+ // all prior rules are also skipped which can result in matching the wrong
979
+ // thing. Example of matching "booger":
980
+
981
+ // our matcher is [string, "booger", number]
982
+ //
983
+ // ....booger....
984
+
985
+ // if "booger" is ignored then we'd really need a regex to scan from the
986
+ // SAME position for only: [string, number] but ignoring "booger" (if it
987
+ // was the first match), a simple resume would scan ahead who knows how
988
+ // far looking only for "number", ignoring potential string matches (or
989
+ // future "booger" matches that might be valid.)
990
+
991
+ // So what we do: We execute two matchers, one resuming at the same
992
+ // position, but the second full matcher starting at the position after:
993
+
994
+ // /--- resume first regex match here (for [number])
995
+ // |/---- full match here for [string, "booger", number]
996
+ // vv
997
+ // ....booger....
998
+
999
+ // Which ever results in a match first is then used. So this 3-4 step
1000
+ // process essentially allows us to say "match at this position, excluding
1001
+ // a prior rule that was ignored".
1002
+ //
1003
+ // 1. Match "booger" first, ignore. Also proves that [string] does non match.
1004
+ // 2. Resume matching for [number]
1005
+ // 3. Match at index + 1 for [string, "booger", number]
1006
+ // 4. If #2 and #3 result in matches, which came first?
1007
+ if (this.resumingScanAtSamePosition()) {
1008
+ if (result && result.index === this.lastIndex) ; else { // use the second matcher result
1009
+ const m2 = this.getMatcher(0);
1010
+ m2.lastIndex = this.lastIndex + 1;
1011
+ result = m2.exec(s);
1012
+ }
1013
+ }
1014
+
1015
+ if (result) {
1016
+ this.regexIndex += result.position + 1;
1017
+ if (this.regexIndex === this.count) {
1018
+ // wrap-around to considering all matches again
1019
+ this.considerAll();
1020
+ }
1021
+ }
1022
+
1023
+ return result;
1024
+ }
1025
+ }
1026
+
1027
+ /**
1028
+ * Given a mode, builds a huge ResumableMultiRegex that can be used to walk
1029
+ * the content and find matches.
1030
+ *
1031
+ * @param {CompiledMode} mode
1032
+ * @returns {ResumableMultiRegex}
1033
+ */
1034
+ function buildModeRegex(mode) {
1035
+ const mm = new ResumableMultiRegex();
1036
+
1037
+ mode.contains.forEach(term => mm.addRule(term.begin, { rule: term, type: "begin" }));
1038
+
1039
+ if (mode.terminatorEnd) {
1040
+ mm.addRule(mode.terminatorEnd, { type: "end" });
1041
+ }
1042
+ if (mode.illegal) {
1043
+ mm.addRule(mode.illegal, { type: "illegal" });
1044
+ }
1045
+
1046
+ return mm;
1047
+ }
1048
+
1049
+ /** skip vs abort vs ignore
1050
+ *
1051
+ * @skip - The mode is still entered and exited normally (and contains rules apply),
1052
+ * but all content is held and added to the parent buffer rather than being
1053
+ * output when the mode ends. Mostly used with `sublanguage` to build up
1054
+ * a single large buffer than can be parsed by sublanguage.
1055
+ *
1056
+ * - The mode begin ands ends normally.
1057
+ * - Content matched is added to the parent mode buffer.
1058
+ * - The parser cursor is moved forward normally.
1059
+ *
1060
+ * @abort - A hack placeholder until we have ignore. Aborts the mode (as if it
1061
+ * never matched) but DOES NOT continue to match subsequent `contains`
1062
+ * modes. Abort is bad/suboptimal because it can result in modes
1063
+ * farther down not getting applied because an earlier rule eats the
1064
+ * content but then aborts.
1065
+ *
1066
+ * - The mode does not begin.
1067
+ * - Content matched by `begin` is added to the mode buffer.
1068
+ * - The parser cursor is moved forward accordingly.
1069
+ *
1070
+ * @ignore - Ignores the mode (as if it never matched) and continues to match any
1071
+ * subsequent `contains` modes. Ignore isn't technically possible with
1072
+ * the current parser implementation.
1073
+ *
1074
+ * - The mode does not begin.
1075
+ * - Content matched by `begin` is ignored.
1076
+ * - The parser cursor is not moved forward.
1077
+ */
1078
+
1079
+ /**
1080
+ * Compiles an individual mode
1081
+ *
1082
+ * This can raise an error if the mode contains certain detectable known logic
1083
+ * issues.
1084
+ * @param {Mode} mode
1085
+ * @param {CompiledMode | null} [parent]
1086
+ * @returns {CompiledMode | never}
1087
+ */
1088
+ function compileMode(mode, parent) {
1089
+ const cmode = /** @type CompiledMode */ (mode);
1090
+ if (mode.isCompiled) return cmode;
1091
+
1092
+ [
1093
+ // do this early so compiler extensions generally don't have to worry about
1094
+ // the distinction between match/begin
1095
+ compileMatch
1096
+ ].forEach(ext => ext(mode, parent));
1097
+
1098
+ language.compilerExtensions.forEach(ext => ext(mode, parent));
1099
+
1100
+ // __beforeBegin is considered private API, internal use only
1101
+ mode.__beforeBegin = null;
1102
+
1103
+ [
1104
+ beginKeywords,
1105
+ // do this later so compiler extensions that come earlier have access to the
1106
+ // raw array if they wanted to perhaps manipulate it, etc.
1107
+ compileIllegal,
1108
+ // default to 1 relevance if not specified
1109
+ compileRelevance
1110
+ ].forEach(ext => ext(mode, parent));
1111
+
1112
+ mode.isCompiled = true;
1113
+
1114
+ let keywordPattern = null;
1115
+ if (typeof mode.keywords === "object") {
1116
+ keywordPattern = mode.keywords.$pattern;
1117
+ delete mode.keywords.$pattern;
1118
+ }
1119
+
1120
+ if (mode.keywords) {
1121
+ mode.keywords = compileKeywords(mode.keywords, language.case_insensitive);
1122
+ }
1123
+
1124
+ // both are not allowed
1125
+ if (mode.lexemes && keywordPattern) {
1126
+ throw new Error("ERR: Prefer `keywords.$pattern` to `mode.lexemes`, BOTH are not allowed. (see mode reference) ");
1127
+ }
1128
+
1129
+ // `mode.lexemes` was the old standard before we added and now recommend
1130
+ // using `keywords.$pattern` to pass the keyword pattern
1131
+ keywordPattern = keywordPattern || mode.lexemes || /\w+/;
1132
+ cmode.keywordPatternRe = langRe(keywordPattern, true);
1133
+
1134
+ if (parent) {
1135
+ if (!mode.begin) mode.begin = /\B|\b/;
1136
+ cmode.beginRe = langRe(mode.begin);
1137
+ if (mode.endSameAsBegin) mode.end = mode.begin;
1138
+ if (!mode.end && !mode.endsWithParent) mode.end = /\B|\b/;
1139
+ if (mode.end) cmode.endRe = langRe(mode.end);
1140
+ cmode.terminatorEnd = source(mode.end) || '';
1141
+ if (mode.endsWithParent && parent.terminatorEnd) {
1142
+ cmode.terminatorEnd += (mode.end ? '|' : '') + parent.terminatorEnd;
1143
+ }
1144
+ }
1145
+ if (mode.illegal) cmode.illegalRe = langRe(/** @type {RegExp | string} */ (mode.illegal));
1146
+ if (!mode.contains) mode.contains = [];
1147
+
1148
+ mode.contains = [].concat(...mode.contains.map(function(c) {
1149
+ return expandOrCloneMode(c === 'self' ? mode : c);
1150
+ }));
1151
+ mode.contains.forEach(function(c) { compileMode(/** @type Mode */ (c), cmode); });
1152
+
1153
+ if (mode.starts) {
1154
+ compileMode(mode.starts, parent);
1155
+ }
1156
+
1157
+ cmode.matcher = buildModeRegex(cmode);
1158
+ return cmode;
1159
+ }
1160
+
1161
+ if (!language.compilerExtensions) language.compilerExtensions = [];
1162
+
1163
+ // self is not valid at the top-level
1164
+ if (language.contains && language.contains.includes('self')) {
1165
+ throw new Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");
1166
+ }
1167
+
1168
+ // we need a null object, which inherit will guarantee
1169
+ language.classNameAliases = inherit(language.classNameAliases || {});
1170
+
1171
+ return compileMode(/** @type Mode */ (language));
1172
+ }
1173
+
1174
+ /**
1175
+ * Determines if a mode has a dependency on it's parent or not
1176
+ *
1177
+ * If a mode does have a parent dependency then often we need to clone it if
1178
+ * it's used in multiple places so that each copy points to the correct parent,
1179
+ * where-as modes without a parent can often safely be re-used at the bottom of
1180
+ * a mode chain.
1181
+ *
1182
+ * @param {Mode | null} mode
1183
+ * @returns {boolean} - is there a dependency on the parent?
1184
+ * */
1185
+ function dependencyOnParent(mode) {
1186
+ if (!mode) return false;
1187
+
1188
+ return mode.endsWithParent || dependencyOnParent(mode.starts);
1189
+ }
1190
+
1191
+ /**
1192
+ * Expands a mode or clones it if necessary
1193
+ *
1194
+ * This is necessary for modes with parental dependenceis (see notes on
1195
+ * `dependencyOnParent`) and for nodes that have `variants` - which must then be
1196
+ * exploded into their own individual modes at compile time.
1197
+ *
1198
+ * @param {Mode} mode
1199
+ * @returns {Mode | Mode[]}
1200
+ * */
1201
+ function expandOrCloneMode(mode) {
1202
+ if (mode.variants && !mode.cachedVariants) {
1203
+ mode.cachedVariants = mode.variants.map(function(variant) {
1204
+ return inherit(mode, { variants: null }, variant);
1205
+ });
1206
+ }
1207
+
1208
+ // EXPAND
1209
+ // if we have variants then essentially "replace" the mode with the variants
1210
+ // this happens in compileMode, where this function is called from
1211
+ if (mode.cachedVariants) {
1212
+ return mode.cachedVariants;
1213
+ }
1214
+
1215
+ // CLONE
1216
+ // if we have dependencies on parents then we need a unique
1217
+ // instance of ourselves, so we can be reused with many
1218
+ // different parents without issue
1219
+ if (dependencyOnParent(mode)) {
1220
+ return inherit(mode, { starts: mode.starts ? inherit(mode.starts) : null });
1221
+ }
1222
+
1223
+ if (Object.isFrozen(mode)) {
1224
+ return inherit(mode);
1225
+ }
1226
+
1227
+ // no special dependency issues, just return ourselves
1228
+ return mode;
1229
+ }
1230
+
1231
+ var version = "10.7.3";
1232
+
1233
+ // @ts-nocheck
1234
+
1235
+ function hasValueOrEmptyAttribute(value) {
1236
+ return Boolean(value || value === "");
1237
+ }
1238
+
1239
+ function BuildVuePlugin(hljs) {
1240
+ const Component = {
1241
+ props: ["language", "code", "autodetect"],
1242
+ data: function() {
1243
+ return {
1244
+ detectedLanguage: "",
1245
+ unknownLanguage: false
1246
+ };
1247
+ },
1248
+ computed: {
1249
+ className() {
1250
+ if (this.unknownLanguage) return "";
1251
+
1252
+ return "hljs " + this.detectedLanguage;
1253
+ },
1254
+ highlighted() {
1255
+ // no idea what language to use, return raw code
1256
+ if (!this.autoDetect && !hljs.getLanguage(this.language)) {
1257
+ console.warn(`The language "${this.language}" you specified could not be found.`);
1258
+ this.unknownLanguage = true;
1259
+ return escapeHTML(this.code);
1260
+ }
1261
+
1262
+ let result = {};
1263
+ if (this.autoDetect) {
1264
+ result = hljs.highlightAuto(this.code);
1265
+ this.detectedLanguage = result.language;
1266
+ } else {
1267
+ result = hljs.highlight(this.language, this.code, this.ignoreIllegals);
1268
+ this.detectedLanguage = this.language;
1269
+ }
1270
+ return result.value;
1271
+ },
1272
+ autoDetect() {
1273
+ return !this.language || hasValueOrEmptyAttribute(this.autodetect);
1274
+ },
1275
+ ignoreIllegals() {
1276
+ return true;
1277
+ }
1278
+ },
1279
+ // this avoids needing to use a whole Vue compilation pipeline just
1280
+ // to build Highlight.js
1281
+ render(createElement) {
1282
+ return createElement("pre", {}, [
1283
+ createElement("code", {
1284
+ class: this.className,
1285
+ domProps: { innerHTML: this.highlighted }
1286
+ })
1287
+ ]);
1288
+ }
1289
+ // template: `<pre><code :class="className" v-html="highlighted"></code></pre>`
1290
+ };
1291
+
1292
+ const VuePlugin = {
1293
+ install(Vue) {
1294
+ Vue.component('highlightjs', Component);
1295
+ }
1296
+ };
1297
+
1298
+ return { Component, VuePlugin };
1299
+ }
1300
+
1301
+ /* plugin itself */
1302
+
1303
+ /** @type {HLJSPlugin} */
1304
+ const mergeHTMLPlugin = {
1305
+ "after:highlightElement": ({ el, result, text }) => {
1306
+ const originalStream = nodeStream(el);
1307
+ if (!originalStream.length) return;
1308
+
1309
+ const resultNode = document.createElement('div');
1310
+ resultNode.innerHTML = result.value;
1311
+ result.value = mergeStreams(originalStream, nodeStream(resultNode), text);
1312
+ }
1313
+ };
1314
+
1315
+ /* Stream merging support functions */
1316
+
1317
+ /**
1318
+ * @typedef Event
1319
+ * @property {'start'|'stop'} event
1320
+ * @property {number} offset
1321
+ * @property {Node} node
1322
+ */
1323
+
1324
+ /**
1325
+ * @param {Node} node
1326
+ */
1327
+ function tag(node) {
1328
+ return node.nodeName.toLowerCase();
1329
+ }
1330
+
1331
+ /**
1332
+ * @param {Node} node
1333
+ */
1334
+ function nodeStream(node) {
1335
+ /** @type Event[] */
1336
+ const result = [];
1337
+ (function _nodeStream(node, offset) {
1338
+ for (let child = node.firstChild; child; child = child.nextSibling) {
1339
+ if (child.nodeType === 3) {
1340
+ offset += child.nodeValue.length;
1341
+ } else if (child.nodeType === 1) {
1342
+ result.push({
1343
+ event: 'start',
1344
+ offset: offset,
1345
+ node: child
1346
+ });
1347
+ offset = _nodeStream(child, offset);
1348
+ // Prevent void elements from having an end tag that would actually
1349
+ // double them in the output. There are more void elements in HTML
1350
+ // but we list only those realistically expected in code display.
1351
+ if (!tag(child).match(/br|hr|img|input/)) {
1352
+ result.push({
1353
+ event: 'stop',
1354
+ offset: offset,
1355
+ node: child
1356
+ });
1357
+ }
1358
+ }
1359
+ }
1360
+ return offset;
1361
+ })(node, 0);
1362
+ return result;
1363
+ }
1364
+
1365
+ /**
1366
+ * @param {any} original - the original stream
1367
+ * @param {any} highlighted - stream of the highlighted source
1368
+ * @param {string} value - the original source itself
1369
+ */
1370
+ function mergeStreams(original, highlighted, value) {
1371
+ let processed = 0;
1372
+ let result = '';
1373
+ const nodeStack = [];
1374
+
1375
+ function selectStream() {
1376
+ if (!original.length || !highlighted.length) {
1377
+ return original.length ? original : highlighted;
1378
+ }
1379
+ if (original[0].offset !== highlighted[0].offset) {
1380
+ return (original[0].offset < highlighted[0].offset) ? original : highlighted;
1381
+ }
1382
+
1383
+ /*
1384
+ To avoid starting the stream just before it should stop the order is
1385
+ ensured that original always starts first and closes last:
1386
+
1387
+ if (event1 == 'start' && event2 == 'start')
1388
+ return original;
1389
+ if (event1 == 'start' && event2 == 'stop')
1390
+ return highlighted;
1391
+ if (event1 == 'stop' && event2 == 'start')
1392
+ return original;
1393
+ if (event1 == 'stop' && event2 == 'stop')
1394
+ return highlighted;
1395
+
1396
+ ... which is collapsed to:
1397
+ */
1398
+ return highlighted[0].event === 'start' ? original : highlighted;
1399
+ }
1400
+
1401
+ /**
1402
+ * @param {Node} node
1403
+ */
1404
+ function open(node) {
1405
+ /** @param {Attr} attr */
1406
+ function attributeString(attr) {
1407
+ return ' ' + attr.nodeName + '="' + escapeHTML(attr.value) + '"';
1408
+ }
1409
+ // @ts-ignore
1410
+ result += '<' + tag(node) + [].map.call(node.attributes, attributeString).join('') + '>';
1411
+ }
1412
+
1413
+ /**
1414
+ * @param {Node} node
1415
+ */
1416
+ function close(node) {
1417
+ result += '</' + tag(node) + '>';
1418
+ }
1419
+
1420
+ /**
1421
+ * @param {Event} event
1422
+ */
1423
+ function render(event) {
1424
+ (event.event === 'start' ? open : close)(event.node);
1425
+ }
1426
+
1427
+ while (original.length || highlighted.length) {
1428
+ let stream = selectStream();
1429
+ result += escapeHTML(value.substring(processed, stream[0].offset));
1430
+ processed = stream[0].offset;
1431
+ if (stream === original) {
1432
+ /*
1433
+ On any opening or closing tag of the original markup we first close
1434
+ the entire highlighted node stack, then render the original tag along
1435
+ with all the following original tags at the same offset and then
1436
+ reopen all the tags on the highlighted stack.
1437
+ */
1438
+ nodeStack.reverse().forEach(close);
1439
+ do {
1440
+ render(stream.splice(0, 1)[0]);
1441
+ stream = selectStream();
1442
+ } while (stream === original && stream.length && stream[0].offset === processed);
1443
+ nodeStack.reverse().forEach(open);
1444
+ } else {
1445
+ if (stream[0].event === 'start') {
1446
+ nodeStack.push(stream[0].node);
1447
+ } else {
1448
+ nodeStack.pop();
1449
+ }
1450
+ render(stream.splice(0, 1)[0]);
1451
+ }
1452
+ }
1453
+ return result + escapeHTML(value.substr(processed));
1454
+ }
1455
+
1456
+ /*
1457
+
1458
+ For the reasoning behind this please see:
1459
+ https://github.com/highlightjs/highlight.js/issues/2880#issuecomment-747275419
1460
+
1461
+ */
1462
+
1463
+ /**
1464
+ * @type {Record<string, boolean>}
1465
+ */
1466
+ const seenDeprecations = {};
1467
+
1468
+ /**
1469
+ * @param {string} message
1470
+ */
1471
+ const error = (message) => {
1472
+ console.error(message);
1473
+ };
1474
+
1475
+ /**
1476
+ * @param {string} message
1477
+ * @param {any} args
1478
+ */
1479
+ const warn = (message, ...args) => {
1480
+ console.log(`WARN: ${message}`, ...args);
1481
+ };
1482
+
1483
+ /**
1484
+ * @param {string} version
1485
+ * @param {string} message
1486
+ */
1487
+ const deprecated = (version, message) => {
1488
+ if (seenDeprecations[`${version}/${message}`]) return;
1489
+
1490
+ console.log(`Deprecated as of ${version}. ${message}`);
1491
+ seenDeprecations[`${version}/${message}`] = true;
1492
+ };
1493
+
1494
+ /*
1495
+ Syntax highlighting with language autodetection.
1496
+ https://highlightjs.org/
1497
+ */
1498
+
1499
+ const escape$1 = escapeHTML;
1500
+ const inherit$1 = inherit;
1501
+ const NO_MATCH = Symbol("nomatch");
1502
+
1503
+ /**
1504
+ * @param {any} hljs - object that is extended (legacy)
1505
+ * @returns {HLJSApi}
1506
+ */
1507
+ const HLJS = function(hljs) {
1508
+ // Global internal variables used within the highlight.js library.
1509
+ /** @type {Record<string, Language>} */
1510
+ const languages = Object.create(null);
1511
+ /** @type {Record<string, string>} */
1512
+ const aliases = Object.create(null);
1513
+ /** @type {HLJSPlugin[]} */
1514
+ const plugins = [];
1515
+
1516
+ // safe/production mode - swallows more errors, tries to keep running
1517
+ // even if a single syntax or parse hits a fatal error
1518
+ let SAFE_MODE = true;
1519
+ const fixMarkupRe = /(^(<[^>]+>|\t|)+|\n)/gm;
1520
+ const LANGUAGE_NOT_FOUND = "Could not find the language '{}', did you forget to load/include a language module?";
1521
+ /** @type {Language} */
1522
+ const PLAINTEXT_LANGUAGE = { disableAutodetect: true, name: 'Plain text', contains: [] };
1523
+
1524
+ // Global options used when within external APIs. This is modified when
1525
+ // calling the `hljs.configure` function.
1526
+ /** @type HLJSOptions */
1527
+ let options = {
1528
+ noHighlightRe: /^(no-?highlight)$/i,
1529
+ languageDetectRe: /\blang(?:uage)?-([\w-]+)\b/i,
1530
+ classPrefix: 'hljs-',
1531
+ tabReplace: null,
1532
+ useBR: false,
1533
+ languages: null,
1534
+ // beta configuration options, subject to change, welcome to discuss
1535
+ // https://github.com/highlightjs/highlight.js/issues/1086
1536
+ __emitter: TokenTreeEmitter
1537
+ };
1538
+
1539
+ /* Utility functions */
1540
+
1541
+ /**
1542
+ * Tests a language name to see if highlighting should be skipped
1543
+ * @param {string} languageName
1544
+ */
1545
+ function shouldNotHighlight(languageName) {
1546
+ return options.noHighlightRe.test(languageName);
1547
+ }
1548
+
1549
+ /**
1550
+ * @param {HighlightedHTMLElement} block - the HTML element to determine language for
1551
+ */
1552
+ function blockLanguage(block) {
1553
+ let classes = block.className + ' ';
1554
+
1555
+ classes += block.parentNode ? block.parentNode.className : '';
1556
+
1557
+ // language-* takes precedence over non-prefixed class names.
1558
+ const match = options.languageDetectRe.exec(classes);
1559
+ if (match) {
1560
+ const language = getLanguage(match[1]);
1561
+ if (!language) {
1562
+ warn(LANGUAGE_NOT_FOUND.replace("{}", match[1]));
1563
+ warn("Falling back to no-highlight mode for this block.", block);
1564
+ }
1565
+ return language ? match[1] : 'no-highlight';
1566
+ }
1567
+
1568
+ return classes
1569
+ .split(/\s+/)
1570
+ .find((_class) => shouldNotHighlight(_class) || getLanguage(_class));
1571
+ }
1572
+
1573
+ /**
1574
+ * Core highlighting function.
1575
+ *
1576
+ * OLD API
1577
+ * highlight(lang, code, ignoreIllegals, continuation)
1578
+ *
1579
+ * NEW API
1580
+ * highlight(code, {lang, ignoreIllegals})
1581
+ *
1582
+ * @param {string} codeOrlanguageName - the language to use for highlighting
1583
+ * @param {string | HighlightOptions} optionsOrCode - the code to highlight
1584
+ * @param {boolean} [ignoreIllegals] - whether to ignore illegal matches, default is to bail
1585
+ * @param {CompiledMode} [continuation] - current continuation mode, if any
1586
+ *
1587
+ * @returns {HighlightResult} Result - an object that represents the result
1588
+ * @property {string} language - the language name
1589
+ * @property {number} relevance - the relevance score
1590
+ * @property {string} value - the highlighted HTML code
1591
+ * @property {string} code - the original raw code
1592
+ * @property {CompiledMode} top - top of the current mode stack
1593
+ * @property {boolean} illegal - indicates whether any illegal matches were found
1594
+ */
1595
+ function highlight(codeOrlanguageName, optionsOrCode, ignoreIllegals, continuation) {
1596
+ let code = "";
1597
+ let languageName = "";
1598
+ if (typeof optionsOrCode === "object") {
1599
+ code = codeOrlanguageName;
1600
+ ignoreIllegals = optionsOrCode.ignoreIllegals;
1601
+ languageName = optionsOrCode.language;
1602
+ // continuation not supported at all via the new API
1603
+ // eslint-disable-next-line no-undefined
1604
+ continuation = undefined;
1605
+ } else {
1606
+ // old API
1607
+ deprecated("10.7.0", "highlight(lang, code, ...args) has been deprecated.");
1608
+ deprecated("10.7.0", "Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277");
1609
+ languageName = codeOrlanguageName;
1610
+ code = optionsOrCode;
1611
+ }
1612
+
1613
+ /** @type {BeforeHighlightContext} */
1614
+ const context = {
1615
+ code,
1616
+ language: languageName
1617
+ };
1618
+ // the plugin can change the desired language or the code to be highlighted
1619
+ // just be changing the object it was passed
1620
+ fire("before:highlight", context);
1621
+
1622
+ // a before plugin can usurp the result completely by providing it's own
1623
+ // in which case we don't even need to call highlight
1624
+ const result = context.result
1625
+ ? context.result
1626
+ : _highlight(context.language, context.code, ignoreIllegals, continuation);
1627
+
1628
+ result.code = context.code;
1629
+ // the plugin can change anything in result to suite it
1630
+ fire("after:highlight", result);
1631
+
1632
+ return result;
1633
+ }
1634
+
1635
+ /**
1636
+ * private highlight that's used internally and does not fire callbacks
1637
+ *
1638
+ * @param {string} languageName - the language to use for highlighting
1639
+ * @param {string} codeToHighlight - the code to highlight
1640
+ * @param {boolean?} [ignoreIllegals] - whether to ignore illegal matches, default is to bail
1641
+ * @param {CompiledMode?} [continuation] - current continuation mode, if any
1642
+ * @returns {HighlightResult} - result of the highlight operation
1643
+ */
1644
+ function _highlight(languageName, codeToHighlight, ignoreIllegals, continuation) {
1645
+ /**
1646
+ * Return keyword data if a match is a keyword
1647
+ * @param {CompiledMode} mode - current mode
1648
+ * @param {RegExpMatchArray} match - regexp match data
1649
+ * @returns {KeywordData | false}
1650
+ */
1651
+ function keywordData(mode, match) {
1652
+ const matchText = language.case_insensitive ? match[0].toLowerCase() : match[0];
1653
+ return Object.prototype.hasOwnProperty.call(mode.keywords, matchText) && mode.keywords[matchText];
1654
+ }
1655
+
1656
+ function processKeywords() {
1657
+ if (!top.keywords) {
1658
+ emitter.addText(modeBuffer);
1659
+ return;
1660
+ }
1661
+
1662
+ let lastIndex = 0;
1663
+ top.keywordPatternRe.lastIndex = 0;
1664
+ let match = top.keywordPatternRe.exec(modeBuffer);
1665
+ let buf = "";
1666
+
1667
+ while (match) {
1668
+ buf += modeBuffer.substring(lastIndex, match.index);
1669
+ const data = keywordData(top, match);
1670
+ if (data) {
1671
+ const [kind, keywordRelevance] = data;
1672
+ emitter.addText(buf);
1673
+ buf = "";
1674
+
1675
+ relevance += keywordRelevance;
1676
+ if (kind.startsWith("_")) {
1677
+ // _ implied for relevance only, do not highlight
1678
+ // by applying a class name
1679
+ buf += match[0];
1680
+ } else {
1681
+ const cssClass = language.classNameAliases[kind] || kind;
1682
+ emitter.addKeyword(match[0], cssClass);
1683
+ }
1684
+ } else {
1685
+ buf += match[0];
1686
+ }
1687
+ lastIndex = top.keywordPatternRe.lastIndex;
1688
+ match = top.keywordPatternRe.exec(modeBuffer);
1689
+ }
1690
+ buf += modeBuffer.substr(lastIndex);
1691
+ emitter.addText(buf);
1692
+ }
1693
+
1694
+ function processSubLanguage() {
1695
+ if (modeBuffer === "") return;
1696
+ /** @type HighlightResult */
1697
+ let result = null;
1698
+
1699
+ if (typeof top.subLanguage === 'string') {
1700
+ if (!languages[top.subLanguage]) {
1701
+ emitter.addText(modeBuffer);
1702
+ return;
1703
+ }
1704
+ result = _highlight(top.subLanguage, modeBuffer, true, continuations[top.subLanguage]);
1705
+ continuations[top.subLanguage] = /** @type {CompiledMode} */ (result.top);
1706
+ } else {
1707
+ result = highlightAuto(modeBuffer, top.subLanguage.length ? top.subLanguage : null);
1708
+ }
1709
+
1710
+ // Counting embedded language score towards the host language may be disabled
1711
+ // with zeroing the containing mode relevance. Use case in point is Markdown that
1712
+ // allows XML everywhere and makes every XML snippet to have a much larger Markdown
1713
+ // score.
1714
+ if (top.relevance > 0) {
1715
+ relevance += result.relevance;
1716
+ }
1717
+ emitter.addSublanguage(result.emitter, result.language);
1718
+ }
1719
+
1720
+ function processBuffer() {
1721
+ if (top.subLanguage != null) {
1722
+ processSubLanguage();
1723
+ } else {
1724
+ processKeywords();
1725
+ }
1726
+ modeBuffer = '';
1727
+ }
1728
+
1729
+ /**
1730
+ * @param {Mode} mode - new mode to start
1731
+ */
1732
+ function startNewMode(mode) {
1733
+ if (mode.className) {
1734
+ emitter.openNode(language.classNameAliases[mode.className] || mode.className);
1735
+ }
1736
+ top = Object.create(mode, { parent: { value: top } });
1737
+ return top;
1738
+ }
1739
+
1740
+ /**
1741
+ * @param {CompiledMode } mode - the mode to potentially end
1742
+ * @param {RegExpMatchArray} match - the latest match
1743
+ * @param {string} matchPlusRemainder - match plus remainder of content
1744
+ * @returns {CompiledMode | void} - the next mode, or if void continue on in current mode
1745
+ */
1746
+ function endOfMode(mode, match, matchPlusRemainder) {
1747
+ let matched = startsWith(mode.endRe, matchPlusRemainder);
1748
+
1749
+ if (matched) {
1750
+ if (mode["on:end"]) {
1751
+ const resp = new Response(mode);
1752
+ mode["on:end"](match, resp);
1753
+ if (resp.isMatchIgnored) matched = false;
1754
+ }
1755
+
1756
+ if (matched) {
1757
+ while (mode.endsParent && mode.parent) {
1758
+ mode = mode.parent;
1759
+ }
1760
+ return mode;
1761
+ }
1762
+ }
1763
+ // even if on:end fires an `ignore` it's still possible
1764
+ // that we might trigger the end node because of a parent mode
1765
+ if (mode.endsWithParent) {
1766
+ return endOfMode(mode.parent, match, matchPlusRemainder);
1767
+ }
1768
+ }
1769
+
1770
+ /**
1771
+ * Handle matching but then ignoring a sequence of text
1772
+ *
1773
+ * @param {string} lexeme - string containing full match text
1774
+ */
1775
+ function doIgnore(lexeme) {
1776
+ if (top.matcher.regexIndex === 0) {
1777
+ // no more regexs to potentially match here, so we move the cursor forward one
1778
+ // space
1779
+ modeBuffer += lexeme[0];
1780
+ return 1;
1781
+ } else {
1782
+ // no need to move the cursor, we still have additional regexes to try and
1783
+ // match at this very spot
1784
+ resumeScanAtSamePosition = true;
1785
+ return 0;
1786
+ }
1787
+ }
1788
+
1789
+ /**
1790
+ * Handle the start of a new potential mode match
1791
+ *
1792
+ * @param {EnhancedMatch} match - the current match
1793
+ * @returns {number} how far to advance the parse cursor
1794
+ */
1795
+ function doBeginMatch(match) {
1796
+ const lexeme = match[0];
1797
+ const newMode = match.rule;
1798
+
1799
+ const resp = new Response(newMode);
1800
+ // first internal before callbacks, then the public ones
1801
+ const beforeCallbacks = [newMode.__beforeBegin, newMode["on:begin"]];
1802
+ for (const cb of beforeCallbacks) {
1803
+ if (!cb) continue;
1804
+ cb(match, resp);
1805
+ if (resp.isMatchIgnored) return doIgnore(lexeme);
1806
+ }
1807
+
1808
+ if (newMode && newMode.endSameAsBegin) {
1809
+ newMode.endRe = escape(lexeme);
1810
+ }
1811
+
1812
+ if (newMode.skip) {
1813
+ modeBuffer += lexeme;
1814
+ } else {
1815
+ if (newMode.excludeBegin) {
1816
+ modeBuffer += lexeme;
1817
+ }
1818
+ processBuffer();
1819
+ if (!newMode.returnBegin && !newMode.excludeBegin) {
1820
+ modeBuffer = lexeme;
1821
+ }
1822
+ }
1823
+ startNewMode(newMode);
1824
+ // if (mode["after:begin"]) {
1825
+ // let resp = new Response(mode);
1826
+ // mode["after:begin"](match, resp);
1827
+ // }
1828
+ return newMode.returnBegin ? 0 : lexeme.length;
1829
+ }
1830
+
1831
+ /**
1832
+ * Handle the potential end of mode
1833
+ *
1834
+ * @param {RegExpMatchArray} match - the current match
1835
+ */
1836
+ function doEndMatch(match) {
1837
+ const lexeme = match[0];
1838
+ const matchPlusRemainder = codeToHighlight.substr(match.index);
1839
+
1840
+ const endMode = endOfMode(top, match, matchPlusRemainder);
1841
+ if (!endMode) { return NO_MATCH; }
1842
+
1843
+ const origin = top;
1844
+ if (origin.skip) {
1845
+ modeBuffer += lexeme;
1846
+ } else {
1847
+ if (!(origin.returnEnd || origin.excludeEnd)) {
1848
+ modeBuffer += lexeme;
1849
+ }
1850
+ processBuffer();
1851
+ if (origin.excludeEnd) {
1852
+ modeBuffer = lexeme;
1853
+ }
1854
+ }
1855
+ do {
1856
+ if (top.className) {
1857
+ emitter.closeNode();
1858
+ }
1859
+ if (!top.skip && !top.subLanguage) {
1860
+ relevance += top.relevance;
1861
+ }
1862
+ top = top.parent;
1863
+ } while (top !== endMode.parent);
1864
+ if (endMode.starts) {
1865
+ if (endMode.endSameAsBegin) {
1866
+ endMode.starts.endRe = endMode.endRe;
1867
+ }
1868
+ startNewMode(endMode.starts);
1869
+ }
1870
+ return origin.returnEnd ? 0 : lexeme.length;
1871
+ }
1872
+
1873
+ function processContinuations() {
1874
+ const list = [];
1875
+ for (let current = top; current !== language; current = current.parent) {
1876
+ if (current.className) {
1877
+ list.unshift(current.className);
1878
+ }
1879
+ }
1880
+ list.forEach(item => emitter.openNode(item));
1881
+ }
1882
+
1883
+ /** @type {{type?: MatchType, index?: number, rule?: Mode}}} */
1884
+ let lastMatch = {};
1885
+
1886
+ /**
1887
+ * Process an individual match
1888
+ *
1889
+ * @param {string} textBeforeMatch - text preceeding the match (since the last match)
1890
+ * @param {EnhancedMatch} [match] - the match itself
1891
+ */
1892
+ function processLexeme(textBeforeMatch, match) {
1893
+ const lexeme = match && match[0];
1894
+
1895
+ // add non-matched text to the current mode buffer
1896
+ modeBuffer += textBeforeMatch;
1897
+
1898
+ if (lexeme == null) {
1899
+ processBuffer();
1900
+ return 0;
1901
+ }
1902
+
1903
+ // we've found a 0 width match and we're stuck, so we need to advance
1904
+ // this happens when we have badly behaved rules that have optional matchers to the degree that
1905
+ // sometimes they can end up matching nothing at all
1906
+ // Ref: https://github.com/highlightjs/highlight.js/issues/2140
1907
+ if (lastMatch.type === "begin" && match.type === "end" && lastMatch.index === match.index && lexeme === "") {
1908
+ // spit the "skipped" character that our regex choked on back into the output sequence
1909
+ modeBuffer += codeToHighlight.slice(match.index, match.index + 1);
1910
+ if (!SAFE_MODE) {
1911
+ /** @type {AnnotatedError} */
1912
+ const err = new Error('0 width match regex');
1913
+ err.languageName = languageName;
1914
+ err.badRule = lastMatch.rule;
1915
+ throw err;
1916
+ }
1917
+ return 1;
1918
+ }
1919
+ lastMatch = match;
1920
+
1921
+ if (match.type === "begin") {
1922
+ return doBeginMatch(match);
1923
+ } else if (match.type === "illegal" && !ignoreIllegals) {
1924
+ // illegal match, we do not continue processing
1925
+ /** @type {AnnotatedError} */
1926
+ const err = new Error('Illegal lexeme "' + lexeme + '" for mode "' + (top.className || '<unnamed>') + '"');
1927
+ err.mode = top;
1928
+ throw err;
1929
+ } else if (match.type === "end") {
1930
+ const processed = doEndMatch(match);
1931
+ if (processed !== NO_MATCH) {
1932
+ return processed;
1933
+ }
1934
+ }
1935
+
1936
+ // edge case for when illegal matches $ (end of line) which is technically
1937
+ // a 0 width match but not a begin/end match so it's not caught by the
1938
+ // first handler (when ignoreIllegals is true)
1939
+ if (match.type === "illegal" && lexeme === "") {
1940
+ // advance so we aren't stuck in an infinite loop
1941
+ return 1;
1942
+ }
1943
+
1944
+ // infinite loops are BAD, this is a last ditch catch all. if we have a
1945
+ // decent number of iterations yet our index (cursor position in our
1946
+ // parsing) still 3x behind our index then something is very wrong
1947
+ // so we bail
1948
+ if (iterations > 100000 && iterations > match.index * 3) {
1949
+ const err = new Error('potential infinite loop, way more iterations than matches');
1950
+ throw err;
1951
+ }
1952
+
1953
+ /*
1954
+ Why might be find ourselves here? Only one occasion now. An end match that was
1955
+ triggered but could not be completed. When might this happen? When an `endSameasBegin`
1956
+ rule sets the end rule to a specific match. Since the overall mode termination rule that's
1957
+ being used to scan the text isn't recompiled that means that any match that LOOKS like
1958
+ the end (but is not, because it is not an exact match to the beginning) will
1959
+ end up here. A definite end match, but when `doEndMatch` tries to "reapply"
1960
+ the end rule and fails to match, we wind up here, and just silently ignore the end.
1961
+
1962
+ This causes no real harm other than stopping a few times too many.
1963
+ */
1964
+
1965
+ modeBuffer += lexeme;
1966
+ return lexeme.length;
1967
+ }
1968
+
1969
+ const language = getLanguage(languageName);
1970
+ if (!language) {
1971
+ error(LANGUAGE_NOT_FOUND.replace("{}", languageName));
1972
+ throw new Error('Unknown language: "' + languageName + '"');
1973
+ }
1974
+
1975
+ const md = compileLanguage(language, { plugins });
1976
+ let result = '';
1977
+ /** @type {CompiledMode} */
1978
+ let top = continuation || md;
1979
+ /** @type Record<string,CompiledMode> */
1980
+ const continuations = {}; // keep continuations for sub-languages
1981
+ const emitter = new options.__emitter(options);
1982
+ processContinuations();
1983
+ let modeBuffer = '';
1984
+ let relevance = 0;
1985
+ let index = 0;
1986
+ let iterations = 0;
1987
+ let resumeScanAtSamePosition = false;
1988
+
1989
+ try {
1990
+ top.matcher.considerAll();
1991
+
1992
+ for (;;) {
1993
+ iterations++;
1994
+ if (resumeScanAtSamePosition) {
1995
+ // only regexes not matched previously will now be
1996
+ // considered for a potential match
1997
+ resumeScanAtSamePosition = false;
1998
+ } else {
1999
+ top.matcher.considerAll();
2000
+ }
2001
+ top.matcher.lastIndex = index;
2002
+
2003
+ const match = top.matcher.exec(codeToHighlight);
2004
+ // console.log("match", match[0], match.rule && match.rule.begin)
2005
+
2006
+ if (!match) break;
2007
+
2008
+ const beforeMatch = codeToHighlight.substring(index, match.index);
2009
+ const processedCount = processLexeme(beforeMatch, match);
2010
+ index = match.index + processedCount;
2011
+ }
2012
+ processLexeme(codeToHighlight.substr(index));
2013
+ emitter.closeAllNodes();
2014
+ emitter.finalize();
2015
+ result = emitter.toHTML();
2016
+
2017
+ return {
2018
+ // avoid possible breakage with v10 clients expecting
2019
+ // this to always be an integer
2020
+ relevance: Math.floor(relevance),
2021
+ value: result,
2022
+ language: languageName,
2023
+ illegal: false,
2024
+ emitter: emitter,
2025
+ top: top
2026
+ };
2027
+ } catch (err) {
2028
+ if (err.message && err.message.includes('Illegal')) {
2029
+ return {
2030
+ illegal: true,
2031
+ illegalBy: {
2032
+ msg: err.message,
2033
+ context: codeToHighlight.slice(index - 100, index + 100),
2034
+ mode: err.mode
2035
+ },
2036
+ sofar: result,
2037
+ relevance: 0,
2038
+ value: escape$1(codeToHighlight),
2039
+ emitter: emitter
2040
+ };
2041
+ } else if (SAFE_MODE) {
2042
+ return {
2043
+ illegal: false,
2044
+ relevance: 0,
2045
+ value: escape$1(codeToHighlight),
2046
+ emitter: emitter,
2047
+ language: languageName,
2048
+ top: top,
2049
+ errorRaised: err
2050
+ };
2051
+ } else {
2052
+ throw err;
2053
+ }
2054
+ }
2055
+ }
2056
+
2057
+ /**
2058
+ * returns a valid highlight result, without actually doing any actual work,
2059
+ * auto highlight starts with this and it's possible for small snippets that
2060
+ * auto-detection may not find a better match
2061
+ * @param {string} code
2062
+ * @returns {HighlightResult}
2063
+ */
2064
+ function justTextHighlightResult(code) {
2065
+ const result = {
2066
+ relevance: 0,
2067
+ emitter: new options.__emitter(options),
2068
+ value: escape$1(code),
2069
+ illegal: false,
2070
+ top: PLAINTEXT_LANGUAGE
2071
+ };
2072
+ result.emitter.addText(code);
2073
+ return result;
2074
+ }
2075
+
2076
+ /**
2077
+ Highlighting with language detection. Accepts a string with the code to
2078
+ highlight. Returns an object with the following properties:
2079
+
2080
+ - language (detected language)
2081
+ - relevance (int)
2082
+ - value (an HTML string with highlighting markup)
2083
+ - second_best (object with the same structure for second-best heuristically
2084
+ detected language, may be absent)
2085
+
2086
+ @param {string} code
2087
+ @param {Array<string>} [languageSubset]
2088
+ @returns {AutoHighlightResult}
2089
+ */
2090
+ function highlightAuto(code, languageSubset) {
2091
+ languageSubset = languageSubset || options.languages || Object.keys(languages);
2092
+ const plaintext = justTextHighlightResult(code);
2093
+
2094
+ const results = languageSubset.filter(getLanguage).filter(autoDetection).map(name =>
2095
+ _highlight(name, code, false)
2096
+ );
2097
+ results.unshift(plaintext); // plaintext is always an option
2098
+
2099
+ const sorted = results.sort((a, b) => {
2100
+ // sort base on relevance
2101
+ if (a.relevance !== b.relevance) return b.relevance - a.relevance;
2102
+
2103
+ // always award the tie to the base language
2104
+ // ie if C++ and Arduino are tied, it's more likely to be C++
2105
+ if (a.language && b.language) {
2106
+ if (getLanguage(a.language).supersetOf === b.language) {
2107
+ return 1;
2108
+ } else if (getLanguage(b.language).supersetOf === a.language) {
2109
+ return -1;
2110
+ }
2111
+ }
2112
+
2113
+ // otherwise say they are equal, which has the effect of sorting on
2114
+ // relevance while preserving the original ordering - which is how ties
2115
+ // have historically been settled, ie the language that comes first always
2116
+ // wins in the case of a tie
2117
+ return 0;
2118
+ });
2119
+
2120
+ const [best, secondBest] = sorted;
2121
+
2122
+ /** @type {AutoHighlightResult} */
2123
+ const result = best;
2124
+ result.second_best = secondBest;
2125
+
2126
+ return result;
2127
+ }
2128
+
2129
+ /**
2130
+ Post-processing of the highlighted markup:
2131
+
2132
+ - replace TABs with something more useful
2133
+ - replace real line-breaks with '<br>' for non-pre containers
2134
+
2135
+ @param {string} html
2136
+ @returns {string}
2137
+ */
2138
+ function fixMarkup(html) {
2139
+ if (!(options.tabReplace || options.useBR)) {
2140
+ return html;
2141
+ }
2142
+
2143
+ return html.replace(fixMarkupRe, match => {
2144
+ if (match === '\n') {
2145
+ return options.useBR ? '<br>' : match;
2146
+ } else if (options.tabReplace) {
2147
+ return match.replace(/\t/g, options.tabReplace);
2148
+ }
2149
+ return match;
2150
+ });
2151
+ }
2152
+
2153
+ /**
2154
+ * Builds new class name for block given the language name
2155
+ *
2156
+ * @param {HTMLElement} element
2157
+ * @param {string} [currentLang]
2158
+ * @param {string} [resultLang]
2159
+ */
2160
+ function updateClassName(element, currentLang, resultLang) {
2161
+ const language = currentLang ? aliases[currentLang] : resultLang;
2162
+
2163
+ element.classList.add("hljs");
2164
+ if (language) element.classList.add(language);
2165
+ }
2166
+
2167
+ /** @type {HLJSPlugin} */
2168
+ const brPlugin = {
2169
+ "before:highlightElement": ({ el }) => {
2170
+ if (options.useBR) {
2171
+ el.innerHTML = el.innerHTML.replace(/\n/g, '').replace(/<br[ /]*>/g, '\n');
2172
+ }
2173
+ },
2174
+ "after:highlightElement": ({ result }) => {
2175
+ if (options.useBR) {
2176
+ result.value = result.value.replace(/\n/g, "<br>");
2177
+ }
2178
+ }
2179
+ };
2180
+
2181
+ const TAB_REPLACE_RE = /^(<[^>]+>|\t)+/gm;
2182
+ /** @type {HLJSPlugin} */
2183
+ const tabReplacePlugin = {
2184
+ "after:highlightElement": ({ result }) => {
2185
+ if (options.tabReplace) {
2186
+ result.value = result.value.replace(TAB_REPLACE_RE, (m) =>
2187
+ m.replace(/\t/g, options.tabReplace)
2188
+ );
2189
+ }
2190
+ }
2191
+ };
2192
+
2193
+ /**
2194
+ * Applies highlighting to a DOM node containing code. Accepts a DOM node and
2195
+ * two optional parameters for fixMarkup.
2196
+ *
2197
+ * @param {HighlightedHTMLElement} element - the HTML element to highlight
2198
+ */
2199
+ function highlightElement(element) {
2200
+ /** @type HTMLElement */
2201
+ let node = null;
2202
+ const language = blockLanguage(element);
2203
+
2204
+ if (shouldNotHighlight(language)) return;
2205
+
2206
+ // support for v10 API
2207
+ fire("before:highlightElement",
2208
+ { el: element, language: language });
2209
+
2210
+ node = element;
2211
+ const text = node.textContent;
2212
+ const result = language ? highlight(text, { language, ignoreIllegals: true }) : highlightAuto(text);
2213
+
2214
+ // support for v10 API
2215
+ fire("after:highlightElement", { el: element, result, text });
2216
+
2217
+ element.innerHTML = result.value;
2218
+ updateClassName(element, language, result.language);
2219
+ element.result = {
2220
+ language: result.language,
2221
+ // TODO: remove with version 11.0
2222
+ re: result.relevance,
2223
+ relavance: result.relevance
2224
+ };
2225
+ if (result.second_best) {
2226
+ element.second_best = {
2227
+ language: result.second_best.language,
2228
+ // TODO: remove with version 11.0
2229
+ re: result.second_best.relevance,
2230
+ relavance: result.second_best.relevance
2231
+ };
2232
+ }
2233
+ }
2234
+
2235
+ /**
2236
+ * Updates highlight.js global options with the passed options
2237
+ *
2238
+ * @param {Partial<HLJSOptions>} userOptions
2239
+ */
2240
+ function configure(userOptions) {
2241
+ if (userOptions.useBR) {
2242
+ deprecated("10.3.0", "'useBR' will be removed entirely in v11.0");
2243
+ deprecated("10.3.0", "Please see https://github.com/highlightjs/highlight.js/issues/2559");
2244
+ }
2245
+ options = inherit$1(options, userOptions);
2246
+ }
2247
+
2248
+ /**
2249
+ * Highlights to all <pre><code> blocks on a page
2250
+ *
2251
+ * @type {Function & {called?: boolean}}
2252
+ */
2253
+ // TODO: remove v12, deprecated
2254
+ const initHighlighting = () => {
2255
+ if (initHighlighting.called) return;
2256
+ initHighlighting.called = true;
2257
+
2258
+ deprecated("10.6.0", "initHighlighting() is deprecated. Use highlightAll() instead.");
2259
+
2260
+ const blocks = document.querySelectorAll('pre code');
2261
+ blocks.forEach(highlightElement);
2262
+ };
2263
+
2264
+ // Higlights all when DOMContentLoaded fires
2265
+ // TODO: remove v12, deprecated
2266
+ function initHighlightingOnLoad() {
2267
+ deprecated("10.6.0", "initHighlightingOnLoad() is deprecated. Use highlightAll() instead.");
2268
+ wantsHighlight = true;
2269
+ }
2270
+
2271
+ let wantsHighlight = false;
2272
+
2273
+ /**
2274
+ * auto-highlights all pre>code elements on the page
2275
+ */
2276
+ function highlightAll() {
2277
+ // if we are called too early in the loading process
2278
+ if (document.readyState === "loading") {
2279
+ wantsHighlight = true;
2280
+ return;
2281
+ }
2282
+
2283
+ const blocks = document.querySelectorAll('pre code');
2284
+ blocks.forEach(highlightElement);
2285
+ }
2286
+
2287
+ function boot() {
2288
+ // if a highlight was requested before DOM was loaded, do now
2289
+ if (wantsHighlight) highlightAll();
2290
+ }
2291
+
2292
+ // make sure we are in the browser environment
2293
+ if (typeof window !== 'undefined' && window.addEventListener) {
2294
+ window.addEventListener('DOMContentLoaded', boot, false);
2295
+ }
2296
+
2297
+ /**
2298
+ * Register a language grammar module
2299
+ *
2300
+ * @param {string} languageName
2301
+ * @param {LanguageFn} languageDefinition
2302
+ */
2303
+ function registerLanguage(languageName, languageDefinition) {
2304
+ let lang = null;
2305
+ try {
2306
+ lang = languageDefinition(hljs);
2307
+ } catch (error$1) {
2308
+ error("Language definition for '{}' could not be registered.".replace("{}", languageName));
2309
+ // hard or soft error
2310
+ if (!SAFE_MODE) { throw error$1; } else { error(error$1); }
2311
+ // languages that have serious errors are replaced with essentially a
2312
+ // "plaintext" stand-in so that the code blocks will still get normal
2313
+ // css classes applied to them - and one bad language won't break the
2314
+ // entire highlighter
2315
+ lang = PLAINTEXT_LANGUAGE;
2316
+ }
2317
+ // give it a temporary name if it doesn't have one in the meta-data
2318
+ if (!lang.name) lang.name = languageName;
2319
+ languages[languageName] = lang;
2320
+ lang.rawDefinition = languageDefinition.bind(null, hljs);
2321
+
2322
+ if (lang.aliases) {
2323
+ registerAliases(lang.aliases, { languageName });
2324
+ }
2325
+ }
2326
+
2327
+ /**
2328
+ * Remove a language grammar module
2329
+ *
2330
+ * @param {string} languageName
2331
+ */
2332
+ function unregisterLanguage(languageName) {
2333
+ delete languages[languageName];
2334
+ for (const alias of Object.keys(aliases)) {
2335
+ if (aliases[alias] === languageName) {
2336
+ delete aliases[alias];
2337
+ }
2338
+ }
2339
+ }
2340
+
2341
+ /**
2342
+ * @returns {string[]} List of language internal names
2343
+ */
2344
+ function listLanguages() {
2345
+ return Object.keys(languages);
2346
+ }
2347
+
2348
+ /**
2349
+ intended usage: When one language truly requires another
2350
+
2351
+ Unlike `getLanguage`, this will throw when the requested language
2352
+ is not available.
2353
+
2354
+ @param {string} name - name of the language to fetch/require
2355
+ @returns {Language | never}
2356
+ */
2357
+ function requireLanguage(name) {
2358
+ deprecated("10.4.0", "requireLanguage will be removed entirely in v11.");
2359
+ deprecated("10.4.0", "Please see https://github.com/highlightjs/highlight.js/pull/2844");
2360
+
2361
+ const lang = getLanguage(name);
2362
+ if (lang) { return lang; }
2363
+
2364
+ const err = new Error('The \'{}\' language is required, but not loaded.'.replace('{}', name));
2365
+ throw err;
2366
+ }
2367
+
2368
+ /**
2369
+ * @param {string} name - name of the language to retrieve
2370
+ * @returns {Language | undefined}
2371
+ */
2372
+ function getLanguage(name) {
2373
+ name = (name || '').toLowerCase();
2374
+ return languages[name] || languages[aliases[name]];
2375
+ }
2376
+
2377
+ /**
2378
+ *
2379
+ * @param {string|string[]} aliasList - single alias or list of aliases
2380
+ * @param {{languageName: string}} opts
2381
+ */
2382
+ function registerAliases(aliasList, { languageName }) {
2383
+ if (typeof aliasList === 'string') {
2384
+ aliasList = [aliasList];
2385
+ }
2386
+ aliasList.forEach(alias => { aliases[alias.toLowerCase()] = languageName; });
2387
+ }
2388
+
2389
+ /**
2390
+ * Determines if a given language has auto-detection enabled
2391
+ * @param {string} name - name of the language
2392
+ */
2393
+ function autoDetection(name) {
2394
+ const lang = getLanguage(name);
2395
+ return lang && !lang.disableAutodetect;
2396
+ }
2397
+
2398
+ /**
2399
+ * Upgrades the old highlightBlock plugins to the new
2400
+ * highlightElement API
2401
+ * @param {HLJSPlugin} plugin
2402
+ */
2403
+ function upgradePluginAPI(plugin) {
2404
+ // TODO: remove with v12
2405
+ if (plugin["before:highlightBlock"] && !plugin["before:highlightElement"]) {
2406
+ plugin["before:highlightElement"] = (data) => {
2407
+ plugin["before:highlightBlock"](
2408
+ Object.assign({ block: data.el }, data)
2409
+ );
2410
+ };
2411
+ }
2412
+ if (plugin["after:highlightBlock"] && !plugin["after:highlightElement"]) {
2413
+ plugin["after:highlightElement"] = (data) => {
2414
+ plugin["after:highlightBlock"](
2415
+ Object.assign({ block: data.el }, data)
2416
+ );
2417
+ };
2418
+ }
2419
+ }
2420
+
2421
+ /**
2422
+ * @param {HLJSPlugin} plugin
2423
+ */
2424
+ function addPlugin(plugin) {
2425
+ upgradePluginAPI(plugin);
2426
+ plugins.push(plugin);
2427
+ }
2428
+
2429
+ /**
2430
+ *
2431
+ * @param {PluginEvent} event
2432
+ * @param {any} args
2433
+ */
2434
+ function fire(event, args) {
2435
+ const cb = event;
2436
+ plugins.forEach(function(plugin) {
2437
+ if (plugin[cb]) {
2438
+ plugin[cb](args);
2439
+ }
2440
+ });
2441
+ }
2442
+
2443
+ /**
2444
+ Note: fixMarkup is deprecated and will be removed entirely in v11
2445
+
2446
+ @param {string} arg
2447
+ @returns {string}
2448
+ */
2449
+ function deprecateFixMarkup(arg) {
2450
+ deprecated("10.2.0", "fixMarkup will be removed entirely in v11.0");
2451
+ deprecated("10.2.0", "Please see https://github.com/highlightjs/highlight.js/issues/2534");
2452
+
2453
+ return fixMarkup(arg);
2454
+ }
2455
+
2456
+ /**
2457
+ *
2458
+ * @param {HighlightedHTMLElement} el
2459
+ */
2460
+ function deprecateHighlightBlock(el) {
2461
+ deprecated("10.7.0", "highlightBlock will be removed entirely in v12.0");
2462
+ deprecated("10.7.0", "Please use highlightElement now.");
2463
+
2464
+ return highlightElement(el);
2465
+ }
2466
+
2467
+ /* Interface definition */
2468
+ Object.assign(hljs, {
2469
+ highlight,
2470
+ highlightAuto,
2471
+ highlightAll,
2472
+ fixMarkup: deprecateFixMarkup,
2473
+ highlightElement,
2474
+ // TODO: Remove with v12 API
2475
+ highlightBlock: deprecateHighlightBlock,
2476
+ configure,
2477
+ initHighlighting,
2478
+ initHighlightingOnLoad,
2479
+ registerLanguage,
2480
+ unregisterLanguage,
2481
+ listLanguages,
2482
+ getLanguage,
2483
+ registerAliases,
2484
+ requireLanguage,
2485
+ autoDetection,
2486
+ inherit: inherit$1,
2487
+ addPlugin,
2488
+ // plugins for frameworks
2489
+ vuePlugin: BuildVuePlugin(hljs).VuePlugin
2490
+ });
2491
+
2492
+ hljs.debugMode = function() { SAFE_MODE = false; };
2493
+ hljs.safeMode = function() { SAFE_MODE = true; };
2494
+ hljs.versionString = version;
2495
+
2496
+ for (const key in MODES) {
2497
+ // @ts-ignore
2498
+ if (typeof MODES[key] === "object") {
2499
+ // @ts-ignore
2500
+ deepFreezeEs6(MODES[key]);
2501
+ }
2502
+ }
2503
+
2504
+ // merge all the modes/regexs into our main object
2505
+ Object.assign(hljs, MODES);
2506
+
2507
+ // built-in plugins, likely to be moved out of core in the future
2508
+ hljs.addPlugin(brPlugin); // slated to be removed in v11
2509
+ hljs.addPlugin(mergeHTMLPlugin);
2510
+ hljs.addPlugin(tabReplacePlugin);
2511
+ return hljs;
2512
+ };
2513
+
2514
+ // export an "instance" of the highlighter
2515
+ var highlight = HLJS({});
2516
+
2517
+ module.exports = highlight;