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,3068 @@
1
+ # Prism Changelog
2
+
3
+ ## 1.29.0 (2022-08-23)
4
+
5
+ ### New components
6
+
7
+ * __BBj__ ([#3511](https://github.com/PrismJS/prism/issues/3511)) [`1134bdfc`](https://github.com/PrismJS/prism/commit/1134bdfc)
8
+ * __BQN__ ([#3515](https://github.com/PrismJS/prism/issues/3515)) [`859f99a0`](https://github.com/PrismJS/prism/commit/859f99a0)
9
+ * __Cilk/C__ & __Cilk/C++__ ([#3522](https://github.com/PrismJS/prism/issues/3522)) [`c8462a29`](https://github.com/PrismJS/prism/commit/c8462a29)
10
+ * __Gradle__ ([#3443](https://github.com/PrismJS/prism/issues/3443)) [`32119823`](https://github.com/PrismJS/prism/commit/32119823)
11
+ * __METAFONT__ ([#3465](https://github.com/PrismJS/prism/issues/3465)) [`2815f699`](https://github.com/PrismJS/prism/commit/2815f699)
12
+ * __WGSL__ ([#3455](https://github.com/PrismJS/prism/issues/3455)) [`4c87d418`](https://github.com/PrismJS/prism/commit/4c87d418)
13
+
14
+ ### Updated components
15
+
16
+ * __AsciiDoc__
17
+ * Some regexes are too greedy ([#3481](https://github.com/PrismJS/prism/issues/3481)) [`c4cbeeaa`](https://github.com/PrismJS/prism/commit/c4cbeeaa)
18
+ * __Bash__
19
+ * Added "sh" alias ([#3509](https://github.com/PrismJS/prism/issues/3509)) [`6b824d47`](https://github.com/PrismJS/prism/commit/6b824d47)
20
+ * Added support for parameters and the `java` and `sysctl` commands. ([#3505](https://github.com/PrismJS/prism/issues/3505)) [`b9512b22`](https://github.com/PrismJS/prism/commit/b9512b22)
21
+ * Added `cargo` command ([#3488](https://github.com/PrismJS/prism/issues/3488)) [`3e937137`](https://github.com/PrismJS/prism/commit/3e937137)
22
+ * __BBj__
23
+ * Improve regexes ([#3512](https://github.com/PrismJS/prism/issues/3512)) [`0cad9ae5`](https://github.com/PrismJS/prism/commit/0cad9ae5)
24
+ * __CSS__
25
+ * Fixed @-rules not accounting for strings ([#3438](https://github.com/PrismJS/prism/issues/3438)) [`0d4b6cb6`](https://github.com/PrismJS/prism/commit/0d4b6cb6)
26
+ * __CSS Extras__
27
+ * Added support for `RebeccaPurple` color ([#3448](https://github.com/PrismJS/prism/issues/3448)) [`646b2e0a`](https://github.com/PrismJS/prism/commit/646b2e0a)
28
+ * __Hoon__
29
+ * Fixed escaped strings ([#3473](https://github.com/PrismJS/prism/issues/3473)) [`64642716`](https://github.com/PrismJS/prism/commit/64642716)
30
+ * __Java__
31
+ * Added support for constants ([#3507](https://github.com/PrismJS/prism/issues/3507)) [`342a0039`](https://github.com/PrismJS/prism/commit/342a0039)
32
+ * __Markup__
33
+ * Fixed quotes in HTML attribute values ([#3442](https://github.com/PrismJS/prism/issues/3442)) [`ca8eaeee`](https://github.com/PrismJS/prism/commit/ca8eaeee)
34
+ * __NSIS__
35
+ * Added missing commands ([#3504](https://github.com/PrismJS/prism/issues/3504)) [`b0c2a9b4`](https://github.com/PrismJS/prism/commit/b0c2a9b4)
36
+ * __Scala__
37
+ * Updated keywords to support Scala 3 ([#3506](https://github.com/PrismJS/prism/issues/3506)) [`a090d063`](https://github.com/PrismJS/prism/commit/a090d063)
38
+ * __SCSS__
39
+ * Fix casing in title of the `scss` lang ([#3501](https://github.com/PrismJS/prism/issues/3501)) [`2aed9ce7`](https://github.com/PrismJS/prism/commit/2aed9ce7)
40
+
41
+ ### Updated plugins
42
+
43
+ * __Line Highlight__
44
+ * Account for offset when clamping ranges ([#3518](https://github.com/PrismJS/prism/issues/3518)) [`098e3000`](https://github.com/PrismJS/prism/commit/098e3000)
45
+ * Ignore ranges outside of actual lines ([#3475](https://github.com/PrismJS/prism/issues/3475)) [`9a4e725b`](https://github.com/PrismJS/prism/commit/9a4e725b)
46
+ * __Normalize Whitespace__
47
+ * Add configuration via attributes ([#3467](https://github.com/PrismJS/prism/issues/3467)) [`91dea0c8`](https://github.com/PrismJS/prism/commit/91dea0c8)
48
+
49
+ ### Other
50
+
51
+ * Added security policy ([#3070](https://github.com/PrismJS/prism/issues/3070)) [`05ee042a`](https://github.com/PrismJS/prism/commit/05ee042a)
52
+ * Added list of maintainers ([#3410](https://github.com/PrismJS/prism/issues/3410)) [`866b302e`](https://github.com/PrismJS/prism/commit/866b302e)
53
+ * Included githubactions in the dependabot config ([#3470](https://github.com/PrismJS/prism/issues/3470)) [`9561a9ab`](https://github.com/PrismJS/prism/commit/9561a9ab)
54
+ * Set permissions for GitHub actions ([#3468](https://github.com/PrismJS/prism/issues/3468)) [`b85e1ada`](https://github.com/PrismJS/prism/commit/b85e1ada)
55
+ * __Website__
56
+ * Website: Added third-party tutorial for Pug template ([#3459](https://github.com/PrismJS/prism/issues/3459)) [`15272f76`](https://github.com/PrismJS/prism/commit/15272f76)
57
+ * Docs: Add missing word ([#3489](https://github.com/PrismJS/prism/issues/3489)) [`9d603ef4`](https://github.com/PrismJS/prism/commit/9d603ef4)
58
+
59
+ ## 1.28.0 (2022-04-17)
60
+
61
+ ### New components
62
+
63
+ * __Ado__ & __Mata__ (Stata) ([#3383](https://github.com/PrismJS/prism/issues/3383)) [`63806d57`](https://github.com/PrismJS/prism/commit/63806d57)
64
+ * __ARM Assembly__ ([#3376](https://github.com/PrismJS/prism/issues/3376)) [`554ff324`](https://github.com/PrismJS/prism/commit/554ff324)
65
+ * __Arturo__ ([#3403](https://github.com/PrismJS/prism/issues/3403)) [`e2fe1f79`](https://github.com/PrismJS/prism/commit/e2fe1f79)
66
+ * __AWK__ & __GAWK__ ([#3374](https://github.com/PrismJS/prism/issues/3374)) [`ea8a0f40`](https://github.com/PrismJS/prism/commit/ea8a0f40)
67
+ * __Cooklang__ ([#3337](https://github.com/PrismJS/prism/issues/3337)) [`4eb928c3`](https://github.com/PrismJS/prism/commit/4eb928c3)
68
+ * __CUE__ ([#3375](https://github.com/PrismJS/prism/issues/3375)) [`a1340666`](https://github.com/PrismJS/prism/commit/a1340666)
69
+ * __gettext__ ([#3369](https://github.com/PrismJS/prism/issues/3369)) [`dfef9b61`](https://github.com/PrismJS/prism/commit/dfef9b61)
70
+ * __GNU Linker Script__ ([#3373](https://github.com/PrismJS/prism/issues/3373)) [`33f2cf95`](https://github.com/PrismJS/prism/commit/33f2cf95)
71
+ * __Odin__ ([#3424](https://github.com/PrismJS/prism/issues/3424)) [`8a3fef6d`](https://github.com/PrismJS/prism/commit/8a3fef6d)
72
+ * __PlantUML__ ([#3372](https://github.com/PrismJS/prism/issues/3372)) [`0d49553c`](https://github.com/PrismJS/prism/commit/0d49553c)
73
+ * __ReScript__ ([#3435](https://github.com/PrismJS/prism/issues/3435)) [`cbef9af7`](https://github.com/PrismJS/prism/commit/cbef9af7)
74
+ * __SuperCollider__ ([#3371](https://github.com/PrismJS/prism/issues/3371)) [`1b1d6731`](https://github.com/PrismJS/prism/commit/1b1d6731)
75
+
76
+ ### Updated components
77
+
78
+ * __.properties__
79
+ * Use `key`, `value` for token names; `attr-name`, `attr-value` as aliases ([#3377](https://github.com/PrismJS/prism/issues/3377)) [`b94a664d`](https://github.com/PrismJS/prism/commit/b94a664d)
80
+ * __ABAP__
81
+ * Sorted keyword list ([#3368](https://github.com/PrismJS/prism/issues/3368)) [`7bda2bf1`](https://github.com/PrismJS/prism/commit/7bda2bf1)
82
+ * __Ada__
83
+ * Changed `attr-name` to `attribute`; Use `attr-name` as alias ([#3381](https://github.com/PrismJS/prism/issues/3381)) [`cde0b5b2`](https://github.com/PrismJS/prism/commit/cde0b5b2)
84
+ * Added `or` keyword ([#3380](https://github.com/PrismJS/prism/issues/3380)) [`c30b736f`](https://github.com/PrismJS/prism/commit/c30b736f)
85
+ * __Atmel AVR Assembly__
86
+ * Fixed `&=` and `|=` operators ([#3395](https://github.com/PrismJS/prism/issues/3395)) [`8c4ae5a5`](https://github.com/PrismJS/prism/commit/8c4ae5a5)
87
+ * __AutoHotkey__
88
+ * Use standard tokens ([#3385](https://github.com/PrismJS/prism/issues/3385)) [`61c460e8`](https://github.com/PrismJS/prism/commit/61c460e8)
89
+ * Use general pattern instead of name list for directives ([#3384](https://github.com/PrismJS/prism/issues/3384)) [`7ac84dda`](https://github.com/PrismJS/prism/commit/7ac84dda)
90
+ * __CFScript__
91
+ * Simplified operator regex ([#3396](https://github.com/PrismJS/prism/issues/3396)) [`6a215fe0`](https://github.com/PrismJS/prism/commit/6a215fe0)
92
+ * __CMake__
93
+ * Simplified `variable` and `operator` regexes ([#3398](https://github.com/PrismJS/prism/issues/3398)) [`8e59744b`](https://github.com/PrismJS/prism/commit/8e59744b)
94
+ * __Erlang__
95
+ * Added `begin` keyword ([#3387](https://github.com/PrismJS/prism/issues/3387)) [`cf38d059`](https://github.com/PrismJS/prism/commit/cf38d059)
96
+ * __Excel Formula__
97
+ * Use more fitting aliases for `function-name`, `range`, and `cell` ([#3391](https://github.com/PrismJS/prism/issues/3391)) [`ef0ec02a`](https://github.com/PrismJS/prism/commit/ef0ec02a)
98
+ * __Flow__
99
+ * Changed alias of `type` to `class-name` ([#3390](https://github.com/PrismJS/prism/issues/3390)) [`ce41434d`](https://github.com/PrismJS/prism/commit/ce41434d)
100
+ * Recognise `[Ss]ymbol` as a type ([#3388](https://github.com/PrismJS/prism/issues/3388)) [`3916883a`](https://github.com/PrismJS/prism/commit/3916883a)
101
+ * __GEDCOM__
102
+ * Update `tag` to `record` ([#3386](https://github.com/PrismJS/prism/issues/3386)) [`f8f95340`](https://github.com/PrismJS/prism/commit/f8f95340)
103
+ * __Groovy__
104
+ * Added string interpolation without hook ([#3366](https://github.com/PrismJS/prism/issues/3366)) [`5617765f`](https://github.com/PrismJS/prism/commit/5617765f)
105
+ * __Handlebars__
106
+ * Added Mustache alias ([#3422](https://github.com/PrismJS/prism/issues/3422)) [`cb5229af`](https://github.com/PrismJS/prism/commit/cb5229af)
107
+ * __Java__
108
+ * Improved class name detection ([#3351](https://github.com/PrismJS/prism/issues/3351)) [`4cb3d038`](https://github.com/PrismJS/prism/commit/4cb3d038)
109
+ * Fixed `record` false positives ([#3348](https://github.com/PrismJS/prism/issues/3348)) [`3bd8fdb1`](https://github.com/PrismJS/prism/commit/3bd8fdb1)
110
+ * __JavaScript__
111
+ * Added support for new regex syntax ([#3399](https://github.com/PrismJS/prism/issues/3399)) [`ca78cde6`](https://github.com/PrismJS/prism/commit/ca78cde6)
112
+ * __Keyman__
113
+ * Added new keywords ([#3401](https://github.com/PrismJS/prism/issues/3401)) [`bac36827`](https://github.com/PrismJS/prism/commit/bac36827)
114
+ * __MEL__
115
+ * Improved functions, code, and comments ([#3393](https://github.com/PrismJS/prism/issues/3393)) [`8e648dab`](https://github.com/PrismJS/prism/commit/8e648dab)
116
+ * __NEON__
117
+ * Change alias of `key` to `property` ([#3394](https://github.com/PrismJS/prism/issues/3394)) [`1c533f4a`](https://github.com/PrismJS/prism/commit/1c533f4a)
118
+ * __PHP__
119
+ * Added `never` return type + minor fix of named arguments ([#3421](https://github.com/PrismJS/prism/issues/3421)) [`4ffab525`](https://github.com/PrismJS/prism/commit/4ffab525)
120
+ * Added `readonly` keyword ([#3349](https://github.com/PrismJS/prism/issues/3349)) [`4c3f1969`](https://github.com/PrismJS/prism/commit/4c3f1969)
121
+ * __PureBasic__
122
+ * Added support for pointer to string operator ([#3362](https://github.com/PrismJS/prism/issues/3362)) [`499b1fa0`](https://github.com/PrismJS/prism/commit/499b1fa0)
123
+ * __Razor C#__
124
+ * Added support for `@helper` and inline C# inside attribute values ([#3355](https://github.com/PrismJS/prism/issues/3355)) [`31a38d0c`](https://github.com/PrismJS/prism/commit/31a38d0c)
125
+ * __VHDL__
126
+ * Add `private`, `view` keywords; Distinguish `attribute` from `keyword` ([#3389](https://github.com/PrismJS/prism/issues/3389)) [`d1a5ce30`](https://github.com/PrismJS/prism/commit/d1a5ce30)
127
+ * __Wolfram language__
128
+ * Simplified `operator` regex ([#3397](https://github.com/PrismJS/prism/issues/3397)) [`10ae6da3`](https://github.com/PrismJS/prism/commit/10ae6da3)
129
+
130
+ ### Updated plugins
131
+
132
+ * __Autolinker__
133
+ * Fixed URL regex to match more valid URLs ([#3358](https://github.com/PrismJS/prism/issues/3358)) [`17ed9160`](https://github.com/PrismJS/prism/commit/17ed9160)
134
+ * __Command Line__
135
+ * Add support for command continuation prefix ([#3344](https://github.com/PrismJS/prism/issues/3344)) [`b53832cd`](https://github.com/PrismJS/prism/commit/b53832cd)
136
+ * Increased prompt opacity ([#3352](https://github.com/PrismJS/prism/issues/3352)) [`f95dd190`](https://github.com/PrismJS/prism/commit/f95dd190)
137
+ * __Keep Markup__
138
+ * Use original nodes instead of clones ([#3365](https://github.com/PrismJS/prism/issues/3365)) [`8a843a17`](https://github.com/PrismJS/prism/commit/8a843a17)
139
+
140
+ ### Other
141
+
142
+ * __Infrastructure__
143
+ * Use terser ([#3407](https://github.com/PrismJS/prism/issues/3407)) [`11c54624`](https://github.com/PrismJS/prism/commit/11c54624)
144
+ * Tests: Cache results for exp backtracking check ([#3356](https://github.com/PrismJS/prism/issues/3356)) [`ead22e1e`](https://github.com/PrismJS/prism/commit/ead22e1e)
145
+ * __Website__
146
+ * More documentation for language definitons ([#3427](https://github.com/PrismJS/prism/issues/3427)) [`333bd590`](https://github.com/PrismJS/prism/commit/333bd590)
147
+
148
+ ## 1.27.0 (2022-02-17)
149
+
150
+ ### New components
151
+
152
+ * __UO Razor Script__ ([#3309](https://github.com/PrismJS/prism/issues/3309)) [`3f8cc5a0`](https://github.com/PrismJS/prism/commit/3f8cc5a0)
153
+
154
+ ### Updated components
155
+
156
+ * __AutoIt__
157
+ * Allow hyphen in directive ([#3308](https://github.com/PrismJS/prism/issues/3308)) [`bcb2e2c8`](https://github.com/PrismJS/prism/commit/bcb2e2c8)
158
+ * __EditorConfig__
159
+ * Change alias of `section` from `keyword` to `selector` ([#3305](https://github.com/PrismJS/prism/issues/3305)) [`e46501b9`](https://github.com/PrismJS/prism/commit/e46501b9)
160
+ * __Ini__
161
+ * Swap out `header` for `section` ([#3304](https://github.com/PrismJS/prism/issues/3304)) [`deb3a97f`](https://github.com/PrismJS/prism/commit/deb3a97f)
162
+ * __MongoDB__
163
+ * Added v5 support ([#3297](https://github.com/PrismJS/prism/issues/3297)) [`8458c41f`](https://github.com/PrismJS/prism/commit/8458c41f)
164
+ * __PureBasic__
165
+ * Added missing keyword and fixed constants ending with `$` ([#3320](https://github.com/PrismJS/prism/issues/3320)) [`d6c53726`](https://github.com/PrismJS/prism/commit/d6c53726)
166
+ * __Scala__
167
+ * Added support for interpolated strings ([#3293](https://github.com/PrismJS/prism/issues/3293)) [`441a1422`](https://github.com/PrismJS/prism/commit/441a1422)
168
+ * __Systemd configuration file__
169
+ * Swap out `operator` for `punctuation` ([#3306](https://github.com/PrismJS/prism/issues/3306)) [`2eb89e15`](https://github.com/PrismJS/prism/commit/2eb89e15)
170
+
171
+ ### Updated plugins
172
+
173
+ * __Command Line__
174
+ * Escape markup in command line output ([#3341](https://github.com/PrismJS/prism/issues/3341)) [`e002e78c`](https://github.com/PrismJS/prism/commit/e002e78c)
175
+ * Add support for line continuation and improved colors ([#3326](https://github.com/PrismJS/prism/issues/3326)) [`1784b175`](https://github.com/PrismJS/prism/commit/1784b175)
176
+ * Added span around command and output ([#3312](https://github.com/PrismJS/prism/issues/3312)) [`82d0ca15`](https://github.com/PrismJS/prism/commit/82d0ca15)
177
+
178
+ ### Other
179
+
180
+ * __Core__
181
+ * Added better error message for missing grammars ([#3311](https://github.com/PrismJS/prism/issues/3311)) [`2cc4660b`](https://github.com/PrismJS/prism/commit/2cc4660b)
182
+
183
+ ## 1.26.0 (2022-01-06)
184
+
185
+ ### New components
186
+
187
+ * __Atmel AVR Assembly__ ([#2078](https://github.com/PrismJS/prism/issues/2078)) [`b5a70e4c`](https://github.com/PrismJS/prism/commit/b5a70e4c)
188
+ * __Go module__ ([#3209](https://github.com/PrismJS/prism/issues/3209)) [`8476a9ab`](https://github.com/PrismJS/prism/commit/8476a9ab)
189
+ * __Keepalived Configure__ ([#2417](https://github.com/PrismJS/prism/issues/2417)) [`d908e457`](https://github.com/PrismJS/prism/commit/d908e457)
190
+ * __Tremor__ & __Trickle__ & __Troy__ ([#3087](https://github.com/PrismJS/prism/issues/3087)) [`ec25ba65`](https://github.com/PrismJS/prism/commit/ec25ba65)
191
+ * __Web IDL__ ([#3107](https://github.com/PrismJS/prism/issues/3107)) [`ef53f021`](https://github.com/PrismJS/prism/commit/ef53f021)
192
+
193
+ ### Updated components
194
+
195
+ * Use `\d` for `[0-9]` ([#3097](https://github.com/PrismJS/prism/issues/3097)) [`9fe2f93e`](https://github.com/PrismJS/prism/commit/9fe2f93e)
196
+ * __6502 Assembly__
197
+ * Use standard tokens and minor improvements ([#3184](https://github.com/PrismJS/prism/issues/3184)) [`929c33e0`](https://github.com/PrismJS/prism/commit/929c33e0)
198
+ * __AppleScript__
199
+ * Use `class-name` standard token ([#3182](https://github.com/PrismJS/prism/issues/3182)) [`9f5e511d`](https://github.com/PrismJS/prism/commit/9f5e511d)
200
+ * __AQL__
201
+ * Differentiate between strings and identifiers ([#3183](https://github.com/PrismJS/prism/issues/3183)) [`fa540ab7`](https://github.com/PrismJS/prism/commit/fa540ab7)
202
+ * __Arduino__
203
+ * Added `ino` alias ([#2990](https://github.com/PrismJS/prism/issues/2990)) [`5b7ce5e4`](https://github.com/PrismJS/prism/commit/5b7ce5e4)
204
+ * __Avro IDL__
205
+ * Removed char syntax ([#3185](https://github.com/PrismJS/prism/issues/3185)) [`c7809285`](https://github.com/PrismJS/prism/commit/c7809285)
206
+ * __Bash__
207
+ * Added `node` to known commands ([#3291](https://github.com/PrismJS/prism/issues/3291)) [`4b19b502`](https://github.com/PrismJS/prism/commit/4b19b502)
208
+ * Added `vcpkg` command ([#3282](https://github.com/PrismJS/prism/issues/3282)) [`b351bc69`](https://github.com/PrismJS/prism/commit/b351bc69)
209
+ * Added `docker` and `podman` commands ([#3237](https://github.com/PrismJS/prism/issues/3237)) [`8c5ed251`](https://github.com/PrismJS/prism/commit/8c5ed251)
210
+ * __Birb__
211
+ * Fixed class name false positives ([#3111](https://github.com/PrismJS/prism/issues/3111)) [`d7017beb`](https://github.com/PrismJS/prism/commit/d7017beb)
212
+ * __Bro__
213
+ * Removed `variable` and minor improvements ([#3186](https://github.com/PrismJS/prism/issues/3186)) [`4cebf34c`](https://github.com/PrismJS/prism/commit/4cebf34c)
214
+ * __BSL (1C:Enterprise)__
215
+ * Made `directive` greedy ([#3112](https://github.com/PrismJS/prism/issues/3112)) [`5c412cbb`](https://github.com/PrismJS/prism/commit/5c412cbb)
216
+ * __C__
217
+ * Added `char` token ([#3207](https://github.com/PrismJS/prism/issues/3207)) [`d85a64ae`](https://github.com/PrismJS/prism/commit/d85a64ae)
218
+ * __C#__
219
+ * Added `char` token ([#3270](https://github.com/PrismJS/prism/issues/3270)) [`220bc40f`](https://github.com/PrismJS/prism/commit/220bc40f)
220
+ * Move everything into the IIFE ([#3077](https://github.com/PrismJS/prism/issues/3077)) [`9ed4cf6e`](https://github.com/PrismJS/prism/commit/9ed4cf6e)
221
+ * __Clojure__
222
+ * Added `char` token ([#3188](https://github.com/PrismJS/prism/issues/3188)) [`1c88c7da`](https://github.com/PrismJS/prism/commit/1c88c7da)
223
+ * __Concurnas__
224
+ * Improved tokenization ([#3189](https://github.com/PrismJS/prism/issues/3189)) [`7b34e65d`](https://github.com/PrismJS/prism/commit/7b34e65d)
225
+ * __Content-Security-Policy__
226
+ * Improved tokenization ([#3276](https://github.com/PrismJS/prism/issues/3276)) [`a943f2bb`](https://github.com/PrismJS/prism/commit/a943f2bb)
227
+ * __Coq__
228
+ * Improved attribute pattern performance ([#3085](https://github.com/PrismJS/prism/issues/3085)) [`2f9672aa`](https://github.com/PrismJS/prism/commit/2f9672aa)
229
+ * __Crystal__
230
+ * Improved tokenization ([#3194](https://github.com/PrismJS/prism/issues/3194)) [`51e3ecc0`](https://github.com/PrismJS/prism/commit/51e3ecc0)
231
+ * __Cypher__
232
+ * Removed non-standard use of `symbol` token name ([#3195](https://github.com/PrismJS/prism/issues/3195)) [`6af8a644`](https://github.com/PrismJS/prism/commit/6af8a644)
233
+ * __D__
234
+ * Added standard char token ([#3196](https://github.com/PrismJS/prism/issues/3196)) [`dafdbdec`](https://github.com/PrismJS/prism/commit/dafdbdec)
235
+ * __Dart__
236
+ * Added string interpolation and improved metadata ([#3197](https://github.com/PrismJS/prism/issues/3197)) [`e1370357`](https://github.com/PrismJS/prism/commit/e1370357)
237
+ * __DataWeave__
238
+ * Fixed keywords being highlighted as functions ([#3113](https://github.com/PrismJS/prism/issues/3113)) [`532212b2`](https://github.com/PrismJS/prism/commit/532212b2)
239
+ * __EditorConfig__
240
+ * Swap out `property` for `key`; alias with `attr-name` ([#3272](https://github.com/PrismJS/prism/issues/3272)) [`bee6ad56`](https://github.com/PrismJS/prism/commit/bee6ad56)
241
+ * __Eiffel__
242
+ * Removed non-standard use of `builtin` name ([#3198](https://github.com/PrismJS/prism/issues/3198)) [`6add768b`](https://github.com/PrismJS/prism/commit/6add768b)
243
+ * __Elm__
244
+ * Recognize unicode escapes as valid Char ([#3105](https://github.com/PrismJS/prism/issues/3105)) [`736c581d`](https://github.com/PrismJS/prism/commit/736c581d)
245
+ * __ERB__
246
+ * Better embedding of Ruby ([#3192](https://github.com/PrismJS/prism/issues/3192)) [`336edeea`](https://github.com/PrismJS/prism/commit/336edeea)
247
+ * __F#__
248
+ * Added `char` token ([#3271](https://github.com/PrismJS/prism/issues/3271)) [`b58cd722`](https://github.com/PrismJS/prism/commit/b58cd722)
249
+ * __G-code__
250
+ * Use standard-conforming alias for checksum ([#3205](https://github.com/PrismJS/prism/issues/3205)) [`ee7ab563`](https://github.com/PrismJS/prism/commit/ee7ab563)
251
+ * __GameMaker Language__
252
+ * Fixed `operator` token and added tests ([#3114](https://github.com/PrismJS/prism/issues/3114)) [`d359eeae`](https://github.com/PrismJS/prism/commit/d359eeae)
253
+ * __Go__
254
+ * Added `char` token and improved `string` and `number` tokens ([#3208](https://github.com/PrismJS/prism/issues/3208)) [`f11b86e2`](https://github.com/PrismJS/prism/commit/f11b86e2)
255
+ * __GraphQL__
256
+ * Optimized regexes ([#3136](https://github.com/PrismJS/prism/issues/3136)) [`8494519e`](https://github.com/PrismJS/prism/commit/8494519e)
257
+ * __Haml__
258
+ * Use `symbol` alias for filter names ([#3210](https://github.com/PrismJS/prism/issues/3210)) [`3d410670`](https://github.com/PrismJS/prism/commit/3d410670)
259
+ * Improved filter and interpolation tokenization ([#3191](https://github.com/PrismJS/prism/issues/3191)) [`005ba469`](https://github.com/PrismJS/prism/commit/005ba469)
260
+ * __Haxe__
261
+ * Improved tokenization ([#3211](https://github.com/PrismJS/prism/issues/3211)) [`f41bcf23`](https://github.com/PrismJS/prism/commit/f41bcf23)
262
+ * __Hoon__
263
+ * Simplified the language definition a little ([#3212](https://github.com/PrismJS/prism/issues/3212)) [`81920b62`](https://github.com/PrismJS/prism/commit/81920b62)
264
+ * __HTTP__
265
+ * Added support for special header value tokenization ([#3275](https://github.com/PrismJS/prism/issues/3275)) [`3362fc79`](https://github.com/PrismJS/prism/commit/3362fc79)
266
+ * Relax pattern for body ([#3169](https://github.com/PrismJS/prism/issues/3169)) [`22d0c6ba`](https://github.com/PrismJS/prism/commit/22d0c6ba)
267
+ * __HTTP Public-Key-Pins__
268
+ * Improved tokenization ([#3278](https://github.com/PrismJS/prism/issues/3278)) [`0f1b5810`](https://github.com/PrismJS/prism/commit/0f1b5810)
269
+ * __HTTP Strict-Transport-Security__
270
+ * Improved tokenization ([#3277](https://github.com/PrismJS/prism/issues/3277)) [`3d708b97`](https://github.com/PrismJS/prism/commit/3d708b97)
271
+ * __Idris__
272
+ * Fixed import statements ([#3115](https://github.com/PrismJS/prism/issues/3115)) [`15cb3b78`](https://github.com/PrismJS/prism/commit/15cb3b78)
273
+ * __Io__
274
+ * Simplified comment token ([#3214](https://github.com/PrismJS/prism/issues/3214)) [`c2afa59b`](https://github.com/PrismJS/prism/commit/c2afa59b)
275
+ * __J__
276
+ * Made comments greedy ([#3215](https://github.com/PrismJS/prism/issues/3215)) [`5af16014`](https://github.com/PrismJS/prism/commit/5af16014)
277
+ * __Java__
278
+ * Added `char` token ([#3217](https://github.com/PrismJS/prism/issues/3217)) [`0a9f909c`](https://github.com/PrismJS/prism/commit/0a9f909c)
279
+ * __Java stack trace__
280
+ * Removed unreachable parts of regexes ([#3219](https://github.com/PrismJS/prism/issues/3219)) [`fa55492b`](https://github.com/PrismJS/prism/commit/fa55492b)
281
+ * Added missing lookbehinds ([#3116](https://github.com/PrismJS/prism/issues/3116)) [`cfb2e782`](https://github.com/PrismJS/prism/commit/cfb2e782)
282
+ * __JavaScript__
283
+ * Improved `number` pattern ([#3149](https://github.com/PrismJS/prism/issues/3149)) [`5a24cbff`](https://github.com/PrismJS/prism/commit/5a24cbff)
284
+ * Added properties ([#3099](https://github.com/PrismJS/prism/issues/3099)) [`3b2238fa`](https://github.com/PrismJS/prism/commit/3b2238fa)
285
+ * __Jolie__
286
+ * Improved tokenization ([#3221](https://github.com/PrismJS/prism/issues/3221)) [`dfbb2020`](https://github.com/PrismJS/prism/commit/dfbb2020)
287
+ * __JQ__
288
+ * Improved performance of strings ([#3084](https://github.com/PrismJS/prism/issues/3084)) [`233415b8`](https://github.com/PrismJS/prism/commit/233415b8)
289
+ * __JS stack trace__
290
+ * Added missing boundary assertion ([#3117](https://github.com/PrismJS/prism/issues/3117)) [`23d9aec1`](https://github.com/PrismJS/prism/commit/23d9aec1)
291
+ * __Julia__
292
+ * Added `char` token ([#3223](https://github.com/PrismJS/prism/issues/3223)) [`3a876df0`](https://github.com/PrismJS/prism/commit/3a876df0)
293
+ * __Keyman__
294
+ * Improved tokenization ([#3224](https://github.com/PrismJS/prism/issues/3224)) [`baa95cab`](https://github.com/PrismJS/prism/commit/baa95cab)
295
+ * __Kotlin__
296
+ * Added `char` token and improved string interpolation ([#3225](https://github.com/PrismJS/prism/issues/3225)) [`563cd73e`](https://github.com/PrismJS/prism/commit/563cd73e)
297
+ * __Latte__
298
+ * Use standard token names and combined delimiter tokens ([#3226](https://github.com/PrismJS/prism/issues/3226)) [`6b168a3b`](https://github.com/PrismJS/prism/commit/6b168a3b)
299
+ * __Liquid__
300
+ * Removed unmatchable object variants ([#3135](https://github.com/PrismJS/prism/issues/3135)) [`05e7ab04`](https://github.com/PrismJS/prism/commit/05e7ab04)
301
+ * __Lisp__
302
+ * Improved `defun` ([#3130](https://github.com/PrismJS/prism/issues/3130)) [`e8f84a6c`](https://github.com/PrismJS/prism/commit/e8f84a6c)
303
+ * __Makefile__
304
+ * Use standard token names correctly ([#3227](https://github.com/PrismJS/prism/issues/3227)) [`21a3c2d7`](https://github.com/PrismJS/prism/commit/21a3c2d7)
305
+ * __Markdown__
306
+ * Fixed typo in token name ([#3101](https://github.com/PrismJS/prism/issues/3101)) [`00f77a2c`](https://github.com/PrismJS/prism/commit/00f77a2c)
307
+ * __MAXScript__
308
+ * Various improvements ([#3181](https://github.com/PrismJS/prism/issues/3181)) [`e9b856c8`](https://github.com/PrismJS/prism/commit/e9b856c8)
309
+ * Fixed booleans not being highlighted ([#3134](https://github.com/PrismJS/prism/issues/3134)) [`c6574e6b`](https://github.com/PrismJS/prism/commit/c6574e6b)
310
+ * __Monkey__
311
+ * Use standard tokens correctly ([#3228](https://github.com/PrismJS/prism/issues/3228)) [`c1025aa6`](https://github.com/PrismJS/prism/commit/c1025aa6)
312
+ * __N1QL__
313
+ * Updated keywords + minor improvements ([#3229](https://github.com/PrismJS/prism/issues/3229)) [`642d93ec`](https://github.com/PrismJS/prism/commit/642d93ec)
314
+ * __nginx__
315
+ * Made some patterns greedy ([#3230](https://github.com/PrismJS/prism/issues/3230)) [`7b72e0ad`](https://github.com/PrismJS/prism/commit/7b72e0ad)
316
+ * __Nim__
317
+ * Added `char` token and made some tokens greedy ([#3231](https://github.com/PrismJS/prism/issues/3231)) [`2334b4b6`](https://github.com/PrismJS/prism/commit/2334b4b6)
318
+ * Fixed backtick identifier ([#3118](https://github.com/PrismJS/prism/issues/3118)) [`75331bea`](https://github.com/PrismJS/prism/commit/75331bea)
319
+ * __Nix__
320
+ * Use standard token name correctly ([#3232](https://github.com/PrismJS/prism/issues/3232)) [`5bf6e35f`](https://github.com/PrismJS/prism/commit/5bf6e35f)
321
+ * Removed unmatchable token ([#3119](https://github.com/PrismJS/prism/issues/3119)) [`dc1e808f`](https://github.com/PrismJS/prism/commit/dc1e808f)
322
+ * __NSIS__
323
+ * Made `comment` greedy ([#3234](https://github.com/PrismJS/prism/issues/3234)) [`969f152a`](https://github.com/PrismJS/prism/commit/969f152a)
324
+ * Update regex pattern for variables ([#3266](https://github.com/PrismJS/prism/issues/3266)) [`adcc8784`](https://github.com/PrismJS/prism/commit/adcc8784)
325
+ * Update regex for constants pattern ([#3267](https://github.com/PrismJS/prism/issues/3267)) [`55583fb2`](https://github.com/PrismJS/prism/commit/55583fb2)
326
+ * __Objective-C__
327
+ * Improved `string` token ([#3235](https://github.com/PrismJS/prism/issues/3235)) [`8e0e95f3`](https://github.com/PrismJS/prism/commit/8e0e95f3)
328
+ * __OCaml__
329
+ * Improved tokenization ([#3269](https://github.com/PrismJS/prism/issues/3269)) [`7bcc5da0`](https://github.com/PrismJS/prism/commit/7bcc5da0)
330
+ * Removed unmatchable punctuation variant ([#3120](https://github.com/PrismJS/prism/issues/3120)) [`314d6994`](https://github.com/PrismJS/prism/commit/314d6994)
331
+ * __Oz__
332
+ * Improved tokenization ([#3240](https://github.com/PrismJS/prism/issues/3240)) [`a3905c04`](https://github.com/PrismJS/prism/commit/a3905c04)
333
+ * __Pascal__
334
+ * Added support for asm and directives ([#2653](https://github.com/PrismJS/prism/issues/2653)) [`f053af13`](https://github.com/PrismJS/prism/commit/f053af13)
335
+ * __PATROL Scripting Language__
336
+ * Added `boolean` token ([#3248](https://github.com/PrismJS/prism/issues/3248)) [`a5b6c5eb`](https://github.com/PrismJS/prism/commit/a5b6c5eb)
337
+ * __Perl__
338
+ * Improved tokenization ([#3241](https://github.com/PrismJS/prism/issues/3241)) [`f22ea9f9`](https://github.com/PrismJS/prism/commit/f22ea9f9)
339
+ * __PHP__
340
+ * Removed useless keyword tokens ([#3121](https://github.com/PrismJS/prism/issues/3121)) [`ee62a080`](https://github.com/PrismJS/prism/commit/ee62a080)
341
+ * __PHP Extras__
342
+ * Improved `scope` and `this` ([#3243](https://github.com/PrismJS/prism/issues/3243)) [`59ef51db`](https://github.com/PrismJS/prism/commit/59ef51db)
343
+ * __PL/SQL__
344
+ * Updated keywords + other improvements ([#3109](https://github.com/PrismJS/prism/issues/3109)) [`e7ba877b`](https://github.com/PrismJS/prism/commit/e7ba877b)
345
+ * __PowerQuery__
346
+ * Improved tokenization and use standard tokens correctly ([#3244](https://github.com/PrismJS/prism/issues/3244)) [`5688f487`](https://github.com/PrismJS/prism/commit/5688f487)
347
+ * Removed useless `data-type` alternative ([#3122](https://github.com/PrismJS/prism/issues/3122)) [`eeb13996`](https://github.com/PrismJS/prism/commit/eeb13996)
348
+ * __PowerShell__
349
+ * Fixed lookbehind + refactoring ([#3245](https://github.com/PrismJS/prism/issues/3245)) [`d30a2da6`](https://github.com/PrismJS/prism/commit/d30a2da6)
350
+ * __Processing__
351
+ * Use standard tokens correctly ([#3246](https://github.com/PrismJS/prism/issues/3246)) [`5ee8c557`](https://github.com/PrismJS/prism/commit/5ee8c557)
352
+ * __Prolog__
353
+ * Removed variable token + minor improvements ([#3247](https://github.com/PrismJS/prism/issues/3247)) [`bacf9ae3`](https://github.com/PrismJS/prism/commit/bacf9ae3)
354
+ * __Pug__
355
+ * Improved filter tokenization ([#3258](https://github.com/PrismJS/prism/issues/3258)) [`0390e644`](https://github.com/PrismJS/prism/commit/0390e644)
356
+ * __PureBasic__
357
+ * Fixed token order inside `asm` token ([#3123](https://github.com/PrismJS/prism/issues/3123)) [`f3b25786`](https://github.com/PrismJS/prism/commit/f3b25786)
358
+ * __Python__
359
+ * Made `comment` greedy ([#3249](https://github.com/PrismJS/prism/issues/3249)) [`8ecef306`](https://github.com/PrismJS/prism/commit/8ecef306)
360
+ * Add `match` and `case` (soft) keywords ([#3142](https://github.com/PrismJS/prism/issues/3142)) [`3f24dc72`](https://github.com/PrismJS/prism/commit/3f24dc72)
361
+ * Recognize walrus operator ([#3126](https://github.com/PrismJS/prism/issues/3126)) [`18bd101c`](https://github.com/PrismJS/prism/commit/18bd101c)
362
+ * Fixed numbers ending with a dot ([#3106](https://github.com/PrismJS/prism/issues/3106)) [`2c63efa6`](https://github.com/PrismJS/prism/commit/2c63efa6)
363
+ * __QML__
364
+ * Made `string` greedy ([#3250](https://github.com/PrismJS/prism/issues/3250)) [`1e6dcb51`](https://github.com/PrismJS/prism/commit/1e6dcb51)
365
+ * __React JSX__
366
+ * Move alias property ([#3222](https://github.com/PrismJS/prism/issues/3222)) [`18c92048`](https://github.com/PrismJS/prism/commit/18c92048)
367
+ * __React TSX__
368
+ * Removed `parameter` token ([#3090](https://github.com/PrismJS/prism/issues/3090)) [`0a313f4f`](https://github.com/PrismJS/prism/commit/0a313f4f)
369
+ * __Reason__
370
+ * Use standard tokens correctly ([#3251](https://github.com/PrismJS/prism/issues/3251)) [`809af0d9`](https://github.com/PrismJS/prism/commit/809af0d9)
371
+ * __Regex__
372
+ * Fixed char-class/char-set confusion ([#3124](https://github.com/PrismJS/prism/issues/3124)) [`4dde2e20`](https://github.com/PrismJS/prism/commit/4dde2e20)
373
+ * __Ren'py__
374
+ * Improved language + added tests ([#3125](https://github.com/PrismJS/prism/issues/3125)) [`ede55b2c`](https://github.com/PrismJS/prism/commit/ede55b2c)
375
+ * __Rip__
376
+ * Use standard `char` token ([#3252](https://github.com/PrismJS/prism/issues/3252)) [`2069ab0c`](https://github.com/PrismJS/prism/commit/2069ab0c)
377
+ * __Ruby__
378
+ * Improved tokenization ([#3193](https://github.com/PrismJS/prism/issues/3193)) [`86028adb`](https://github.com/PrismJS/prism/commit/86028adb)
379
+ * __Rust__
380
+ * Improved `type-definition` and use standard tokens correctly ([#3253](https://github.com/PrismJS/prism/issues/3253)) [`4049e5c6`](https://github.com/PrismJS/prism/commit/4049e5c6)
381
+ * __Scheme__
382
+ * Use standard `char` token ([#3254](https://github.com/PrismJS/prism/issues/3254)) [`7d740c45`](https://github.com/PrismJS/prism/commit/7d740c45)
383
+ * Updates syntax for reals ([#3159](https://github.com/PrismJS/prism/issues/3159)) [`4eb81fa1`](https://github.com/PrismJS/prism/commit/4eb81fa1)
384
+ * __Smalltalk__
385
+ * Use standard `char` token ([#3255](https://github.com/PrismJS/prism/issues/3255)) [`a7bb3001`](https://github.com/PrismJS/prism/commit/a7bb3001)
386
+ * Added `boolean` token ([#3100](https://github.com/PrismJS/prism/issues/3100)) [`51382524`](https://github.com/PrismJS/prism/commit/51382524)
387
+ * __Smarty__
388
+ * Improved tokenization ([#3268](https://github.com/PrismJS/prism/issues/3268)) [`acc0bc09`](https://github.com/PrismJS/prism/commit/acc0bc09)
389
+ * __SQL__
390
+ * Added identifier token ([#3141](https://github.com/PrismJS/prism/issues/3141)) [`4e00cddd`](https://github.com/PrismJS/prism/commit/4e00cddd)
391
+ * __Squirrel__
392
+ * Use standard `char` token ([#3256](https://github.com/PrismJS/prism/issues/3256)) [`58a65bfd`](https://github.com/PrismJS/prism/commit/58a65bfd)
393
+ * __Stan__
394
+ * Added missing keywords and HOFs ([#3238](https://github.com/PrismJS/prism/issues/3238)) [`afd77ed1`](https://github.com/PrismJS/prism/commit/afd77ed1)
395
+ * __Structured Text (IEC 61131-3)__
396
+ * Structured text: Improved tokenization ([#3213](https://github.com/PrismJS/prism/issues/3213)) [`d04d166d`](https://github.com/PrismJS/prism/commit/d04d166d)
397
+ * __Swift__
398
+ * Added support for `isolated` keyword ([#3174](https://github.com/PrismJS/prism/issues/3174)) [`18c828a6`](https://github.com/PrismJS/prism/commit/18c828a6)
399
+ * __TAP__
400
+ * Conform to quoted-properties style ([#3127](https://github.com/PrismJS/prism/issues/3127)) [`3ef71533`](https://github.com/PrismJS/prism/commit/3ef71533)
401
+ * __Tremor__
402
+ * Use standard `regex` token ([#3257](https://github.com/PrismJS/prism/issues/3257)) [`c56e4bf5`](https://github.com/PrismJS/prism/commit/c56e4bf5)
403
+ * __Twig__
404
+ * Improved tokenization ([#3259](https://github.com/PrismJS/prism/issues/3259)) [`e03a7c24`](https://github.com/PrismJS/prism/commit/e03a7c24)
405
+ * __TypeScript__
406
+ * Removed duplicate keywords ([#3132](https://github.com/PrismJS/prism/issues/3132)) [`91060fd6`](https://github.com/PrismJS/prism/commit/91060fd6)
407
+ * __URI__
408
+ * Fixed IPv4 regex ([#3128](https://github.com/PrismJS/prism/issues/3128)) [`599e30ee`](https://github.com/PrismJS/prism/commit/599e30ee)
409
+ * __V__
410
+ * Use standard `char` token ([#3260](https://github.com/PrismJS/prism/issues/3260)) [`e4373256`](https://github.com/PrismJS/prism/commit/e4373256)
411
+ * __Verilog__
412
+ * Use standard tokens correctly ([#3261](https://github.com/PrismJS/prism/issues/3261)) [`43124129`](https://github.com/PrismJS/prism/commit/43124129)
413
+ * __Visual Basic__
414
+ * Simplify regexes and use more common aliases ([#3262](https://github.com/PrismJS/prism/issues/3262)) [`aa73d448`](https://github.com/PrismJS/prism/commit/aa73d448)
415
+ * __Wolfram language__
416
+ * Removed unmatchable punctuation variant ([#3133](https://github.com/PrismJS/prism/issues/3133)) [`a28a86ad`](https://github.com/PrismJS/prism/commit/a28a86ad)
417
+ * __Xojo (REALbasic)__
418
+ * Proper token name for directives ([#3263](https://github.com/PrismJS/prism/issues/3263)) [`ffd8343f`](https://github.com/PrismJS/prism/commit/ffd8343f)
419
+ * __Zig__
420
+ * Added missing keywords ([#3279](https://github.com/PrismJS/prism/issues/3279)) [`deed35e3`](https://github.com/PrismJS/prism/commit/deed35e3)
421
+ * Use standard `char` token ([#3264](https://github.com/PrismJS/prism/issues/3264)) [`c3f9fb70`](https://github.com/PrismJS/prism/commit/c3f9fb70)
422
+ * Fixed module comments and astral chars ([#3129](https://github.com/PrismJS/prism/issues/3129)) [`09a0e2ba`](https://github.com/PrismJS/prism/commit/09a0e2ba)
423
+
424
+ ### Updated plugins
425
+
426
+ * __File Highlight__
427
+ * File highlight+data range ([#1813](https://github.com/PrismJS/prism/issues/1813)) [`d38592c5`](https://github.com/PrismJS/prism/commit/d38592c5)
428
+ * __Keep Markup__
429
+ * Added `drop-tokens` option class ([#3166](https://github.com/PrismJS/prism/issues/3166)) [`b679cfe6`](https://github.com/PrismJS/prism/commit/b679cfe6)
430
+ * __Line Highlight__
431
+ * Expose `highlightLines` function as `Prism.plugins.highlightLines` ([#3086](https://github.com/PrismJS/prism/issues/3086)) [`9f4c0e74`](https://github.com/PrismJS/prism/commit/9f4c0e74)
432
+ * __Toolbar__
433
+ * Set `z-index` of `.toolbar` to 10 ([#3163](https://github.com/PrismJS/prism/issues/3163)) [`1cac3559`](https://github.com/PrismJS/prism/commit/1cac3559)
434
+
435
+ ### Updated themes
436
+
437
+ * Coy: Set `z-index` to make shadows visible in colored table cells ([#3161](https://github.com/PrismJS/prism/issues/3161)) [`79f250f3`](https://github.com/PrismJS/prism/commit/79f250f3)
438
+ * Coy: Added padding to account for box shadow ([#3143](https://github.com/PrismJS/prism/issues/3143)) [`a6a4ce7e`](https://github.com/PrismJS/prism/commit/a6a4ce7e)
439
+
440
+ ### Other
441
+
442
+ * __Core__
443
+ * Added `setLanguage` util function ([#3167](https://github.com/PrismJS/prism/issues/3167)) [`b631949a`](https://github.com/PrismJS/prism/commit/b631949a)
444
+ * Fixed type error on null ([#3057](https://github.com/PrismJS/prism/issues/3057)) [`a80a68ba`](https://github.com/PrismJS/prism/commit/a80a68ba)
445
+ * Document `disableWorkerMessageHandler` ([#3088](https://github.com/PrismJS/prism/issues/3088)) [`213cf7be`](https://github.com/PrismJS/prism/commit/213cf7be)
446
+ * __Infrastructure__
447
+ * Tests: Added `.html.test` files for replace `.js` language tests ([#3148](https://github.com/PrismJS/prism/issues/3148)) [`2e834c8c`](https://github.com/PrismJS/prism/commit/2e834c8c)
448
+ * Added regex coverage ([#3138](https://github.com/PrismJS/prism/issues/3138)) [`5333e281`](https://github.com/PrismJS/prism/commit/5333e281)
449
+ * Tests: Added `TestCaseFile` class and generalized `runTestCase` ([#3147](https://github.com/PrismJS/prism/issues/3147)) [`ae8888a0`](https://github.com/PrismJS/prism/commit/ae8888a0)
450
+ * Added even more language tests ([#3137](https://github.com/PrismJS/prism/issues/3137)) [`344d0b27`](https://github.com/PrismJS/prism/commit/344d0b27)
451
+ * Added more plugin tests ([#1969](https://github.com/PrismJS/prism/issues/1969)) [`a394a14d`](https://github.com/PrismJS/prism/commit/a394a14d)
452
+ * Added more language tests ([#3131](https://github.com/PrismJS/prism/issues/3131)) [`2f7f7364`](https://github.com/PrismJS/prism/commit/2f7f7364)
453
+ * `package.json`: Added `engines.node` field ([#3108](https://github.com/PrismJS/prism/issues/3108)) [`798ee4f6`](https://github.com/PrismJS/prism/commit/798ee4f6)
454
+ * Use tabs in `package(-lock).json` ([#3098](https://github.com/PrismJS/prism/issues/3098)) [`8daebb4a`](https://github.com/PrismJS/prism/commit/8daebb4a)
455
+ * Update `eslint-plugin-regexp@1.2.0` ([#3091](https://github.com/PrismJS/prism/issues/3091)) [`e6e1d5ae`](https://github.com/PrismJS/prism/commit/e6e1d5ae)
456
+ * Added minified CSS ([#3073](https://github.com/PrismJS/prism/issues/3073)) [`d63d6c0e`](https://github.com/PrismJS/prism/commit/d63d6c0e)
457
+ * __Website__
458
+ * Readme: Clarify usage of our build system ([#3239](https://github.com/PrismJS/prism/issues/3239)) [`6f1d904a`](https://github.com/PrismJS/prism/commit/6f1d904a)
459
+ * Improved CDN usage URLs ([#3285](https://github.com/PrismJS/prism/issues/3285)) [`6c21b2f7`](https://github.com/PrismJS/prism/commit/6c21b2f7)
460
+ * Update download.html [`9d5424b6`](https://github.com/PrismJS/prism/commit/9d5424b6)
461
+ * Autoloader: Mention how to load grammars from URLs ([#3218](https://github.com/PrismJS/prism/issues/3218)) [`cefccdd1`](https://github.com/PrismJS/prism/commit/cefccdd1)
462
+ * Added PrismJS React and HTML tutorial link ([#3190](https://github.com/PrismJS/prism/issues/3190)) [`0ecdbdce`](https://github.com/PrismJS/prism/commit/0ecdbdce)
463
+ * Improved readability ([#3177](https://github.com/PrismJS/prism/issues/3177)) [`4433d7fe`](https://github.com/PrismJS/prism/commit/4433d7fe)
464
+ * Fixed red highlighting in Firefox ([#3178](https://github.com/PrismJS/prism/issues/3178)) [`746da79b`](https://github.com/PrismJS/prism/commit/746da79b)
465
+ * Use Keep markup to highlight code section ([#3164](https://github.com/PrismJS/prism/issues/3164)) [`ebd59e32`](https://github.com/PrismJS/prism/commit/ebd59e32)
466
+ * Document standard tokens and provide examples ([#3104](https://github.com/PrismJS/prism/issues/3104)) [`37551200`](https://github.com/PrismJS/prism/commit/37551200)
467
+ * Fixed dead link to third-party tutorial [#3155](https://github.com/PrismJS/prism/issues/3155) ([#3156](https://github.com/PrismJS/prism/issues/3156)) [`31b4c1b8`](https://github.com/PrismJS/prism/commit/31b4c1b8)
468
+ * Repositioned theme selector ([#3146](https://github.com/PrismJS/prism/issues/3146)) [`ea361e5a`](https://github.com/PrismJS/prism/commit/ea361e5a)
469
+ * Adjusted TOC's line height for better readability ([#3145](https://github.com/PrismJS/prism/issues/3145)) [`c5629706`](https://github.com/PrismJS/prism/commit/c5629706)
470
+ * Updated plugin header template ([#3144](https://github.com/PrismJS/prism/issues/3144)) [`faedfe85`](https://github.com/PrismJS/prism/commit/faedfe85)
471
+ * Update test and example pages to use Autoloader ([#1936](https://github.com/PrismJS/prism/issues/1936)) [`3d96eedc`](https://github.com/PrismJS/prism/commit/3d96eedc)
472
+
473
+ ## 1.25.0 (2021-09-16)
474
+
475
+ ### New components
476
+
477
+ * __AviSynth__ ([#3071](https://github.com/PrismJS/prism/issues/3071)) [`746a4b1a`](https://github.com/PrismJS/prism/commit/746a4b1a)
478
+ * __Avro IDL__ ([#3051](https://github.com/PrismJS/prism/issues/3051)) [`87e5a376`](https://github.com/PrismJS/prism/commit/87e5a376)
479
+ * __Bicep__ ([#3027](https://github.com/PrismJS/prism/issues/3027)) [`c1dce998`](https://github.com/PrismJS/prism/commit/c1dce998)
480
+ * __GAP (CAS)__ ([#3054](https://github.com/PrismJS/prism/issues/3054)) [`23cd9b65`](https://github.com/PrismJS/prism/commit/23cd9b65)
481
+ * __GN__ ([#3062](https://github.com/PrismJS/prism/issues/3062)) [`4f97b82b`](https://github.com/PrismJS/prism/commit/4f97b82b)
482
+ * __Hoon__ ([#2978](https://github.com/PrismJS/prism/issues/2978)) [`ea776756`](https://github.com/PrismJS/prism/commit/ea776756)
483
+ * __Kusto__ ([#3068](https://github.com/PrismJS/prism/issues/3068)) [`e008ea05`](https://github.com/PrismJS/prism/commit/e008ea05)
484
+ * __Magma (CAS)__ ([#3055](https://github.com/PrismJS/prism/issues/3055)) [`a1b67ce3`](https://github.com/PrismJS/prism/commit/a1b67ce3)
485
+ * __MAXScript__ ([#3060](https://github.com/PrismJS/prism/issues/3060)) [`4fbdd2f8`](https://github.com/PrismJS/prism/commit/4fbdd2f8)
486
+ * __Mermaid__ ([#3050](https://github.com/PrismJS/prism/issues/3050)) [`148c1eca`](https://github.com/PrismJS/prism/commit/148c1eca)
487
+ * __Razor C#__ ([#3064](https://github.com/PrismJS/prism/issues/3064)) [`4433ccfc`](https://github.com/PrismJS/prism/commit/4433ccfc)
488
+ * __Systemd configuration file__ ([#3053](https://github.com/PrismJS/prism/issues/3053)) [`8df825e0`](https://github.com/PrismJS/prism/commit/8df825e0)
489
+ * __Wren__ ([#3063](https://github.com/PrismJS/prism/issues/3063)) [`6a356d25`](https://github.com/PrismJS/prism/commit/6a356d25)
490
+
491
+ ### Updated components
492
+
493
+ * __Bicep__
494
+ * Added support for multiline and interpolated strings and other improvements ([#3028](https://github.com/PrismJS/prism/issues/3028)) [`748bb9ac`](https://github.com/PrismJS/prism/commit/748bb9ac)
495
+ * __C#__
496
+ * Added `with` keyword & improved record support ([#2993](https://github.com/PrismJS/prism/issues/2993)) [`fdd291c0`](https://github.com/PrismJS/prism/commit/fdd291c0)
497
+ * Added `record`, `init`, and `nullable` keyword ([#2991](https://github.com/PrismJS/prism/issues/2991)) [`9b561565`](https://github.com/PrismJS/prism/commit/9b561565)
498
+ * Added context check for `from` keyword ([#2970](https://github.com/PrismJS/prism/issues/2970)) [`158f25d4`](https://github.com/PrismJS/prism/commit/158f25d4)
499
+ * __C++__
500
+ * Fixed generic function false positive ([#3043](https://github.com/PrismJS/prism/issues/3043)) [`5de8947f`](https://github.com/PrismJS/prism/commit/5de8947f)
501
+ * __Clojure__
502
+ * Improved tokenization ([#3056](https://github.com/PrismJS/prism/issues/3056)) [`8d0b74b5`](https://github.com/PrismJS/prism/commit/8d0b74b5)
503
+ * __Hoon__
504
+ * Fixed mixed-case aura tokenization ([#3002](https://github.com/PrismJS/prism/issues/3002)) [`9c8911bd`](https://github.com/PrismJS/prism/commit/9c8911bd)
505
+ * __Liquid__
506
+ * Added all objects from Shopify reference ([#2998](https://github.com/PrismJS/prism/issues/2998)) [`693b7433`](https://github.com/PrismJS/prism/commit/693b7433)
507
+ * Added `empty` keyword ([#2997](https://github.com/PrismJS/prism/issues/2997)) [`fe3bc526`](https://github.com/PrismJS/prism/commit/fe3bc526)
508
+ * __Log file__
509
+ * Added support for Java stack traces ([#3003](https://github.com/PrismJS/prism/issues/3003)) [`b0365e70`](https://github.com/PrismJS/prism/commit/b0365e70)
510
+ * __Markup__
511
+ * Made most patterns greedy ([#3065](https://github.com/PrismJS/prism/issues/3065)) [`52e8cee9`](https://github.com/PrismJS/prism/commit/52e8cee9)
512
+ * Fixed ReDoS ([#3078](https://github.com/PrismJS/prism/issues/3078)) [`0ff371bb`](https://github.com/PrismJS/prism/commit/0ff371bb)
513
+ * __PureScript__
514
+ * Made `∀` a keyword (alias for `forall`) ([#3005](https://github.com/PrismJS/prism/issues/3005)) [`b38fc89a`](https://github.com/PrismJS/prism/commit/b38fc89a)
515
+ * Improved Haskell and PureScript ([#3020](https://github.com/PrismJS/prism/issues/3020)) [`679539ec`](https://github.com/PrismJS/prism/commit/679539ec)
516
+ * __Python__
517
+ * Support for underscores in numbers ([#3039](https://github.com/PrismJS/prism/issues/3039)) [`6f5d68f7`](https://github.com/PrismJS/prism/commit/6f5d68f7)
518
+ * __Sass__
519
+ * Fixed issues with CSS Extras ([#2994](https://github.com/PrismJS/prism/issues/2994)) [`14fdfe32`](https://github.com/PrismJS/prism/commit/14fdfe32)
520
+ * __Shell session__
521
+ * Fixed command false positives ([#3048](https://github.com/PrismJS/prism/issues/3048)) [`35b88fcf`](https://github.com/PrismJS/prism/commit/35b88fcf)
522
+ * Added support for the percent sign as shell symbol ([#3010](https://github.com/PrismJS/prism/issues/3010)) [`4492b62b`](https://github.com/PrismJS/prism/commit/4492b62b)
523
+ * __Swift__
524
+ * Major improvements ([#3022](https://github.com/PrismJS/prism/issues/3022)) [`8541db2e`](https://github.com/PrismJS/prism/commit/8541db2e)
525
+ * Added support for `@propertyWrapper`, `@MainActor`, and `@globalActor` ([#3009](https://github.com/PrismJS/prism/issues/3009)) [`ce5e0f01`](https://github.com/PrismJS/prism/commit/ce5e0f01)
526
+ * Added support for new Swift 5.5 keywords ([#2988](https://github.com/PrismJS/prism/issues/2988)) [`bb93fac0`](https://github.com/PrismJS/prism/commit/bb93fac0)
527
+ * __TypeScript__
528
+ * Fixed keyword false positives ([#3001](https://github.com/PrismJS/prism/issues/3001)) [`212e0ef2`](https://github.com/PrismJS/prism/commit/212e0ef2)
529
+
530
+ ### Updated plugins
531
+
532
+ * __JSONP Highlight__
533
+ * Refactored JSONP logic ([#3018](https://github.com/PrismJS/prism/issues/3018)) [`5126d1e1`](https://github.com/PrismJS/prism/commit/5126d1e1)
534
+ * __Line Highlight__
535
+ * Extend highlight to full line width inside scroll container ([#3011](https://github.com/PrismJS/prism/issues/3011)) [`e289ec60`](https://github.com/PrismJS/prism/commit/e289ec60)
536
+ * __Normalize Whitespace__
537
+ * Removed unnecessary checks ([#3017](https://github.com/PrismJS/prism/issues/3017)) [`63edf14c`](https://github.com/PrismJS/prism/commit/63edf14c)
538
+ * __Previewers__
539
+ * Ensure popup is visible across themes ([#3080](https://github.com/PrismJS/prism/issues/3080)) [`c7b6a7f6`](https://github.com/PrismJS/prism/commit/c7b6a7f6)
540
+
541
+ ### Updated themes
542
+
543
+ * __Twilight__
544
+ * Increase selector specificities of plugin overrides ([#3081](https://github.com/PrismJS/prism/issues/3081)) [`ffb20439`](https://github.com/PrismJS/prism/commit/ffb20439)
545
+
546
+ ### Other
547
+
548
+ * __Infrastructure__
549
+ * Added benchmark suite ([#2153](https://github.com/PrismJS/prism/issues/2153)) [`44456b21`](https://github.com/PrismJS/prism/commit/44456b21)
550
+ * Tests: Insert expected JSON by Default ([#2960](https://github.com/PrismJS/prism/issues/2960)) [`e997dd35`](https://github.com/PrismJS/prism/commit/e997dd35)
551
+ * Tests: Improved dection of empty patterns ([#3058](https://github.com/PrismJS/prism/issues/3058)) [`d216e602`](https://github.com/PrismJS/prism/commit/d216e602)
552
+ * __Website__
553
+ * Highlight Keywords: More documentation ([#3049](https://github.com/PrismJS/prism/issues/3049)) [`247fd9a3`](https://github.com/PrismJS/prism/commit/247fd9a3)
554
+
555
+
556
+ ## 1.24.1 (2021-07-03)
557
+
558
+ ### Updated components
559
+
560
+ * __Markdown__
561
+ * Fixed Markdown not working in NodeJS ([#2977](https://github.com/PrismJS/prism/issues/2977)) [`151121cd`](https://github.com/PrismJS/prism/commit/151121cd)
562
+
563
+ ### Updated plugins
564
+
565
+ * __Toolbar__
566
+ * Fixed styles being applies to nested elements ([#2980](https://github.com/PrismJS/prism/issues/2980)) [`748ecddc`](https://github.com/PrismJS/prism/commit/748ecddc)
567
+
568
+
569
+ ## 1.24.0 (2021-06-27)
570
+
571
+ ### New components
572
+
573
+ * __CFScript__ ([#2771](https://github.com/PrismJS/prism/issues/2771)) [`b0a6ec85`](https://github.com/PrismJS/prism/commit/b0a6ec85)
574
+ * __ChaiScript__ ([#2706](https://github.com/PrismJS/prism/issues/2706)) [`3f7d7453`](https://github.com/PrismJS/prism/commit/3f7d7453)
575
+ * __COBOL__ ([#2800](https://github.com/PrismJS/prism/issues/2800)) [`7e5f78ff`](https://github.com/PrismJS/prism/commit/7e5f78ff)
576
+ * __Coq__ ([#2803](https://github.com/PrismJS/prism/issues/2803)) [`41e25d3c`](https://github.com/PrismJS/prism/commit/41e25d3c)
577
+ * __CSV__ ([#2794](https://github.com/PrismJS/prism/issues/2794)) [`f9b69528`](https://github.com/PrismJS/prism/commit/f9b69528)
578
+ * __DOT (Graphviz)__ ([#2690](https://github.com/PrismJS/prism/issues/2690)) [`1f91868e`](https://github.com/PrismJS/prism/commit/1f91868e)
579
+ * __False__ ([#2802](https://github.com/PrismJS/prism/issues/2802)) [`99a21dc5`](https://github.com/PrismJS/prism/commit/99a21dc5)
580
+ * __ICU Message Format__ ([#2745](https://github.com/PrismJS/prism/issues/2745)) [`bf4e7ba9`](https://github.com/PrismJS/prism/commit/bf4e7ba9)
581
+ * __Idris__ ([#2755](https://github.com/PrismJS/prism/issues/2755)) [`e9314415`](https://github.com/PrismJS/prism/commit/e9314415)
582
+ * __Jexl__ ([#2764](https://github.com/PrismJS/prism/issues/2764)) [`7e51b99c`](https://github.com/PrismJS/prism/commit/7e51b99c)
583
+ * __KuMir (КуМир)__ ([#2760](https://github.com/PrismJS/prism/issues/2760)) [`3419fb77`](https://github.com/PrismJS/prism/commit/3419fb77)
584
+ * __Log file__ ([#2796](https://github.com/PrismJS/prism/issues/2796)) [`2bc6475b`](https://github.com/PrismJS/prism/commit/2bc6475b)
585
+ * __Nevod__ ([#2798](https://github.com/PrismJS/prism/issues/2798)) [`f84c49c5`](https://github.com/PrismJS/prism/commit/f84c49c5)
586
+ * __OpenQasm__ ([#2797](https://github.com/PrismJS/prism/issues/2797)) [`1a2347a3`](https://github.com/PrismJS/prism/commit/1a2347a3)
587
+ * __PATROL Scripting Language__ ([#2739](https://github.com/PrismJS/prism/issues/2739)) [`18c67b49`](https://github.com/PrismJS/prism/commit/18c67b49)
588
+ * __Q#__ ([#2804](https://github.com/PrismJS/prism/issues/2804)) [`1b63cd01`](https://github.com/PrismJS/prism/commit/1b63cd01)
589
+ * __Rego__ ([#2624](https://github.com/PrismJS/prism/issues/2624)) [`e38986f9`](https://github.com/PrismJS/prism/commit/e38986f9)
590
+ * __Squirrel__ ([#2721](https://github.com/PrismJS/prism/issues/2721)) [`fd1081d2`](https://github.com/PrismJS/prism/commit/fd1081d2)
591
+ * __URI__ ([#2708](https://github.com/PrismJS/prism/issues/2708)) [`bbc77d19`](https://github.com/PrismJS/prism/commit/bbc77d19)
592
+ * __V__ ([#2687](https://github.com/PrismJS/prism/issues/2687)) [`72962701`](https://github.com/PrismJS/prism/commit/72962701)
593
+ * __Wolfram language__ & __Mathematica__ & __Mathematica Notebook__ ([#2921](https://github.com/PrismJS/prism/issues/2921)) [`c4f6b2cc`](https://github.com/PrismJS/prism/commit/c4f6b2cc)
594
+
595
+ ### Updated components
596
+
597
+ * Fixed problems reported by `regexp/no-dupe-disjunctions` ([#2952](https://github.com/PrismJS/prism/issues/2952)) [`f471d2d7`](https://github.com/PrismJS/prism/commit/f471d2d7)
598
+ * Fixed some cases of quadratic worst-case runtime ([#2922](https://github.com/PrismJS/prism/issues/2922)) [`79d22182`](https://github.com/PrismJS/prism/commit/79d22182)
599
+ * Fixed 2 cases of exponential backtracking ([#2774](https://github.com/PrismJS/prism/issues/2774)) [`d85e30da`](https://github.com/PrismJS/prism/commit/d85e30da)
600
+ * __AQL__
601
+ * Update for ArangoDB 3.8 ([#2842](https://github.com/PrismJS/prism/issues/2842)) [`ea82478d`](https://github.com/PrismJS/prism/commit/ea82478d)
602
+ * __AutoHotkey__
603
+ * Improved tag pattern ([#2920](https://github.com/PrismJS/prism/issues/2920)) [`fc2a3334`](https://github.com/PrismJS/prism/commit/fc2a3334)
604
+ * __Bash__
605
+ * Accept hyphens in function names ([#2832](https://github.com/PrismJS/prism/issues/2832)) [`e4ad22ad`](https://github.com/PrismJS/prism/commit/e4ad22ad)
606
+ * Fixed single-quoted strings ([#2792](https://github.com/PrismJS/prism/issues/2792)) [`e5cfdb4a`](https://github.com/PrismJS/prism/commit/e5cfdb4a)
607
+ * __C++__
608
+ * Added support for generic functions and made `::` punctuation ([#2814](https://github.com/PrismJS/prism/issues/2814)) [`3df62fd0`](https://github.com/PrismJS/prism/commit/3df62fd0)
609
+ * Added missing keywords and modules ([#2763](https://github.com/PrismJS/prism/issues/2763)) [`88fa72cf`](https://github.com/PrismJS/prism/commit/88fa72cf)
610
+ * __Dart__
611
+ * Improved support for classes & generics ([#2810](https://github.com/PrismJS/prism/issues/2810)) [`d0bcd074`](https://github.com/PrismJS/prism/commit/d0bcd074)
612
+ * __Docker__
613
+ * Improvements ([#2720](https://github.com/PrismJS/prism/issues/2720)) [`93dd83c2`](https://github.com/PrismJS/prism/commit/93dd83c2)
614
+ * __Elixir__
615
+ * Added missing keywords ([#2958](https://github.com/PrismJS/prism/issues/2958)) [`114e4626`](https://github.com/PrismJS/prism/commit/114e4626)
616
+ * Added missing keyword and other improvements ([#2773](https://github.com/PrismJS/prism/issues/2773)) [`e6c0d298`](https://github.com/PrismJS/prism/commit/e6c0d298)
617
+ * Added `defdelagate` keyword and highlighting for function/module names ([#2709](https://github.com/PrismJS/prism/issues/2709)) [`59f725d7`](https://github.com/PrismJS/prism/commit/59f725d7)
618
+ * __F#__
619
+ * Fixed comment false positive ([#2703](https://github.com/PrismJS/prism/issues/2703)) [`a5d7178c`](https://github.com/PrismJS/prism/commit/a5d7178c)
620
+ * __GraphQL__
621
+ * Fixed `definition-query` and `definition-mutation` tokens ([#2964](https://github.com/PrismJS/prism/issues/2964)) [`bfd7fded`](https://github.com/PrismJS/prism/commit/bfd7fded)
622
+ * Added more detailed tokens ([#2939](https://github.com/PrismJS/prism/issues/2939)) [`34f24ac9`](https://github.com/PrismJS/prism/commit/34f24ac9)
623
+ * __Handlebars__
624
+ * Added `hbs` alias ([#2874](https://github.com/PrismJS/prism/issues/2874)) [`43976351`](https://github.com/PrismJS/prism/commit/43976351)
625
+ * __HTTP__
626
+ * Fixed body not being highlighted ([#2734](https://github.com/PrismJS/prism/issues/2734)) [`1dfc8271`](https://github.com/PrismJS/prism/commit/1dfc8271)
627
+ * More granular tokenization ([#2722](https://github.com/PrismJS/prism/issues/2722)) [`6183fd9b`](https://github.com/PrismJS/prism/commit/6183fd9b)
628
+ * Allow root path in request line ([#2711](https://github.com/PrismJS/prism/issues/2711)) [`4e7b2a82`](https://github.com/PrismJS/prism/commit/4e7b2a82)
629
+ * __Ini__
630
+ * Consistently mimic Win32 INI parsing ([#2779](https://github.com/PrismJS/prism/issues/2779)) [`42d24fa2`](https://github.com/PrismJS/prism/commit/42d24fa2)
631
+ * __Java__
632
+ * Improved generics ([#2812](https://github.com/PrismJS/prism/issues/2812)) [`4ec7535c`](https://github.com/PrismJS/prism/commit/4ec7535c)
633
+ * __JavaScript__
634
+ * Added support for import assertions ([#2953](https://github.com/PrismJS/prism/issues/2953)) [`ab7c9953`](https://github.com/PrismJS/prism/commit/ab7c9953)
635
+ * Added support for RegExp Match Indices ([#2900](https://github.com/PrismJS/prism/issues/2900)) [`415651a0`](https://github.com/PrismJS/prism/commit/415651a0)
636
+ * Added hashbang and private getters/setters ([#2815](https://github.com/PrismJS/prism/issues/2815)) [`9c610ae6`](https://github.com/PrismJS/prism/commit/9c610ae6)
637
+ * Improved contextual keywords ([#2713](https://github.com/PrismJS/prism/issues/2713)) [`022f90a0`](https://github.com/PrismJS/prism/commit/022f90a0)
638
+ * __JS Templates__
639
+ * Added SQL templates ([#2945](https://github.com/PrismJS/prism/issues/2945)) [`abab9104`](https://github.com/PrismJS/prism/commit/abab9104)
640
+ * __JSON__
641
+ * Fixed backtracking issue in Safari ([#2691](https://github.com/PrismJS/prism/issues/2691)) [`cf28d1b2`](https://github.com/PrismJS/prism/commit/cf28d1b2)
642
+ * __Liquid__
643
+ * Added Markup support, missing tokens, and other improvements ([#2950](https://github.com/PrismJS/prism/issues/2950)) [`ac1d12f9`](https://github.com/PrismJS/prism/commit/ac1d12f9)
644
+ * __Log file__
645
+ * Minor improvements ([#2851](https://github.com/PrismJS/prism/issues/2851)) [`45ec4a88`](https://github.com/PrismJS/prism/commit/45ec4a88)
646
+ * __Markdown__
647
+ * Improved code snippets ([#2967](https://github.com/PrismJS/prism/issues/2967)) [`e9477d83`](https://github.com/PrismJS/prism/commit/e9477d83)
648
+ * Workaround for incorrect highlighting due to double `wrap` hook ([#2719](https://github.com/PrismJS/prism/issues/2719)) [`2b355c98`](https://github.com/PrismJS/prism/commit/2b355c98)
649
+ * __Markup__
650
+ * Added support for DOM event attributes ([#2702](https://github.com/PrismJS/prism/issues/2702)) [`8dbbbb35`](https://github.com/PrismJS/prism/commit/8dbbbb35)
651
+ * __nginx__
652
+ * Complete rewrite ([#2793](https://github.com/PrismJS/prism/issues/2793)) [`5943f4cb`](https://github.com/PrismJS/prism/commit/5943f4cb)
653
+ * __PHP__
654
+ * Fixed functions with namespaces ([#2889](https://github.com/PrismJS/prism/issues/2889)) [`87d79390`](https://github.com/PrismJS/prism/commit/87d79390)
655
+ * Fixed string interpolation ([#2864](https://github.com/PrismJS/prism/issues/2864)) [`cf3755cb`](https://github.com/PrismJS/prism/commit/cf3755cb)
656
+ * Added missing PHP 7.4 `fn` keyword ([#2858](https://github.com/PrismJS/prism/issues/2858)) [`e0ee93f1`](https://github.com/PrismJS/prism/commit/e0ee93f1)
657
+ * Fixed methods with keyword names + minor improvements ([#2818](https://github.com/PrismJS/prism/issues/2818)) [`7e8cd40d`](https://github.com/PrismJS/prism/commit/7e8cd40d)
658
+ * Improved constant support for PHP 8.1 enums ([#2770](https://github.com/PrismJS/prism/issues/2770)) [`8019e2f6`](https://github.com/PrismJS/prism/commit/8019e2f6)
659
+ * Added support for PHP 8.1 enums ([#2752](https://github.com/PrismJS/prism/issues/2752)) [`f79b0eef`](https://github.com/PrismJS/prism/commit/f79b0eef)
660
+ * Class names at the start of a string are now highlighted correctly ([#2731](https://github.com/PrismJS/prism/issues/2731)) [`04ef309c`](https://github.com/PrismJS/prism/commit/04ef309c)
661
+ * Numeral syntax improvements ([#2701](https://github.com/PrismJS/prism/issues/2701)) [`01af04ed`](https://github.com/PrismJS/prism/commit/01af04ed)
662
+ * __React JSX__
663
+ * Added support for general spread expressions ([#2754](https://github.com/PrismJS/prism/issues/2754)) [`9f59f52d`](https://github.com/PrismJS/prism/commit/9f59f52d)
664
+ * Added support for comments inside tags ([#2728](https://github.com/PrismJS/prism/issues/2728)) [`30b0444f`](https://github.com/PrismJS/prism/commit/30b0444f)
665
+ * __reST (reStructuredText)__
666
+ * Fixed `inline` pattern ([#2946](https://github.com/PrismJS/prism/issues/2946)) [`a7656de6`](https://github.com/PrismJS/prism/commit/a7656de6)
667
+ * __Ruby__
668
+ * Added heredoc literals ([#2885](https://github.com/PrismJS/prism/issues/2885)) [`20b77bff`](https://github.com/PrismJS/prism/commit/20b77bff)
669
+ * Added missing regex flags ([#2845](https://github.com/PrismJS/prism/issues/2845)) [`3786f396`](https://github.com/PrismJS/prism/commit/3786f396)
670
+ * Added missing regex interpolation ([#2841](https://github.com/PrismJS/prism/issues/2841)) [`f08c2f7f`](https://github.com/PrismJS/prism/commit/f08c2f7f)
671
+ * __Scheme__
672
+ * Added support for high Unicode characters ([#2693](https://github.com/PrismJS/prism/issues/2693)) [`0e61a7e1`](https://github.com/PrismJS/prism/commit/0e61a7e1)
673
+ * Added bracket support ([#2813](https://github.com/PrismJS/prism/issues/2813)) [`1c6c0bf3`](https://github.com/PrismJS/prism/commit/1c6c0bf3)
674
+ * __Shell session__
675
+ * Fixed multi-line commands ([#2872](https://github.com/PrismJS/prism/issues/2872)) [`cda976b1`](https://github.com/PrismJS/prism/commit/cda976b1)
676
+ * Commands prefixed with a path are now detected ([#2686](https://github.com/PrismJS/prism/issues/2686)) [`c83fd0b8`](https://github.com/PrismJS/prism/commit/c83fd0b8)
677
+ * __SQL__
678
+ * Added `ILIKE` operator ([#2704](https://github.com/PrismJS/prism/issues/2704)) [`6e34771f`](https://github.com/PrismJS/prism/commit/6e34771f)
679
+ * __Swift__
680
+ * Added `some` keyword ([#2756](https://github.com/PrismJS/prism/issues/2756)) [`cf354ef5`](https://github.com/PrismJS/prism/commit/cf354ef5)
681
+ * __TypeScript__
682
+ * Updated keywords ([#2861](https://github.com/PrismJS/prism/issues/2861)) [`fe98d536`](https://github.com/PrismJS/prism/commit/fe98d536)
683
+ * Added support for decorators ([#2820](https://github.com/PrismJS/prism/issues/2820)) [`31cc2142`](https://github.com/PrismJS/prism/commit/31cc2142)
684
+ * __VB.Net__
685
+ * Improved strings, comments, and punctuation ([#2782](https://github.com/PrismJS/prism/issues/2782)) [`a68f1fb6`](https://github.com/PrismJS/prism/commit/a68f1fb6)
686
+ * __Xojo (REALbasic)__
687
+ * `REM` is no longer highlighted as a keyword in comments ([#2823](https://github.com/PrismJS/prism/issues/2823)) [`ebbbfd47`](https://github.com/PrismJS/prism/commit/ebbbfd47)
688
+ * Added last missing Keyword "Selector" ([#2807](https://github.com/PrismJS/prism/issues/2807)) [`e32e043b`](https://github.com/PrismJS/prism/commit/e32e043b)
689
+ * Added missing keywords ([#2805](https://github.com/PrismJS/prism/issues/2805)) [`459365ec`](https://github.com/PrismJS/prism/commit/459365ec)
690
+
691
+ ### Updated plugins
692
+
693
+ * Made Match Braces and Custom Class compatible ([#2947](https://github.com/PrismJS/prism/issues/2947)) [`4b55bd6a`](https://github.com/PrismJS/prism/commit/4b55bd6a)
694
+ * Consistent Prism check ([#2788](https://github.com/PrismJS/prism/issues/2788)) [`96335642`](https://github.com/PrismJS/prism/commit/96335642)
695
+ * __Command Line__
696
+ * Don't modify empty code blocks ([#2896](https://github.com/PrismJS/prism/issues/2896)) [`c81c3319`](https://github.com/PrismJS/prism/commit/c81c3319)
697
+ * __Copy to Clipboard__
698
+ * Removed ClipboardJS dependency ([#2784](https://github.com/PrismJS/prism/issues/2784)) [`d5e14e1a`](https://github.com/PrismJS/prism/commit/d5e14e1a)
699
+ * Fixed `clipboard.writeText` not working inside iFrames ([#2826](https://github.com/PrismJS/prism/issues/2826)) [`01b7b6f7`](https://github.com/PrismJS/prism/commit/01b7b6f7)
700
+ * Added support for custom styles ([#2789](https://github.com/PrismJS/prism/issues/2789)) [`4d7f75b0`](https://github.com/PrismJS/prism/commit/4d7f75b0)
701
+ * Make copy-to-clipboard configurable with multiple attributes ([#2723](https://github.com/PrismJS/prism/issues/2723)) [`2cb909e1`](https://github.com/PrismJS/prism/commit/2cb909e1)
702
+ * __File Highlight__
703
+ * Fixed Prism check ([#2827](https://github.com/PrismJS/prism/issues/2827)) [`53d34b22`](https://github.com/PrismJS/prism/commit/53d34b22)
704
+ * __Line Highlight__
705
+ * Fixed linkable line numbers not being initialized ([#2732](https://github.com/PrismJS/prism/issues/2732)) [`ccc73ab7`](https://github.com/PrismJS/prism/commit/ccc73ab7)
706
+ * __Previewers__
707
+ * Use `classList` instead of `className` ([#2787](https://github.com/PrismJS/prism/issues/2787)) [`d298d46e`](https://github.com/PrismJS/prism/commit/d298d46e)
708
+
709
+ ### Other
710
+
711
+ * __Core__
712
+ * Add `tabindex` to code blocks to enable keyboard navigation ([#2799](https://github.com/PrismJS/prism/issues/2799)) [`dbf70515`](https://github.com/PrismJS/prism/commit/dbf70515)
713
+ * Fixed greedy rematching reach bug ([#2705](https://github.com/PrismJS/prism/issues/2705)) [`b37987d3`](https://github.com/PrismJS/prism/commit/b37987d3)
714
+ * Added support for plaintext ([#2738](https://github.com/PrismJS/prism/issues/2738)) [`970674cf`](https://github.com/PrismJS/prism/commit/970674cf)
715
+ * __Infrastructure__
716
+ * Added ESLint
717
+ * Added `npm-run-all` to clean up test command ([#2938](https://github.com/PrismJS/prism/issues/2938)) [`5d3d8088`](https://github.com/PrismJS/prism/commit/5d3d8088)
718
+ * Added link to Q&A to issue templates ([#2834](https://github.com/PrismJS/prism/issues/2834)) [`7cd9e794`](https://github.com/PrismJS/prism/commit/7cd9e794)
719
+ * CI: Run tests with NodeJS 16.x ([#2888](https://github.com/PrismJS/prism/issues/2888)) [`b77317c5`](https://github.com/PrismJS/prism/commit/b77317c5)
720
+ * Dangerfile: Trim merge base ([#2761](https://github.com/PrismJS/prism/issues/2761)) [`45b0e82a`](https://github.com/PrismJS/prism/commit/45b0e82a)
721
+ * Dangerfile: Fixed how changed files are determined ([#2757](https://github.com/PrismJS/prism/issues/2757)) [`0feb266f`](https://github.com/PrismJS/prism/commit/0feb266f)
722
+ * Deps: Updated regex tooling ([#2923](https://github.com/PrismJS/prism/issues/2923)) [`ad9878ad`](https://github.com/PrismJS/prism/commit/ad9878ad)
723
+ * Tests: Added `--language` for patterns tests ([#2929](https://github.com/PrismJS/prism/issues/2929)) [`a62ef796`](https://github.com/PrismJS/prism/commit/a62ef796)
724
+ * Tests: Fixed polynomial backtracking test ([#2891](https://github.com/PrismJS/prism/issues/2891)) [`8dbf1217`](https://github.com/PrismJS/prism/commit/8dbf1217)
725
+ * Tests: Fixed languages test discovery [`a9a199b6`](https://github.com/PrismJS/prism/commit/a9a199b6)
726
+ * Tests: Test discovery should ignore unsupported file extensions ([#2886](https://github.com/PrismJS/prism/issues/2886)) [`4492c5ce`](https://github.com/PrismJS/prism/commit/4492c5ce)
727
+ * Tests: Exhaustive pattern tests ([#2688](https://github.com/PrismJS/prism/issues/2688)) [`53151404`](https://github.com/PrismJS/prism/commit/53151404)
728
+ * Tests: Fixed pretty print incorrectly calculating print width ([#2821](https://github.com/PrismJS/prism/issues/2821)) [`5bc405e7`](https://github.com/PrismJS/prism/commit/5bc405e7)
729
+ * Tests: Automatically normalize line ends ([#2934](https://github.com/PrismJS/prism/issues/2934)) [`99f3ddcd`](https://github.com/PrismJS/prism/commit/99f3ddcd)
730
+ * Tests: Added `--insert` and `--update` parameters to language test ([#2809](https://github.com/PrismJS/prism/issues/2809)) [`4c8b855d`](https://github.com/PrismJS/prism/commit/4c8b855d)
731
+ * Tests: Stricter `components.json` tests ([#2758](https://github.com/PrismJS/prism/issues/2758)) [`933af805`](https://github.com/PrismJS/prism/commit/933af805)
732
+ * __Website__
733
+ * Copy to clipboard: Fixed highlighting ([#2725](https://github.com/PrismJS/prism/issues/2725)) [`7a790bf9`](https://github.com/PrismJS/prism/commit/7a790bf9)
734
+ * Readme: Mention `npm ci` ([#2899](https://github.com/PrismJS/prism/issues/2899)) [`91f3aaed`](https://github.com/PrismJS/prism/commit/91f3aaed)
735
+ * Readme: Added Node and npm version requirements ([#2790](https://github.com/PrismJS/prism/issues/2790)) [`cb220168`](https://github.com/PrismJS/prism/commit/cb220168)
736
+ * Readme: Update link to Chinese translation ([#2749](https://github.com/PrismJS/prism/issues/2749)) [`266cc700`](https://github.com/PrismJS/prism/commit/266cc700)
737
+ * Replace `my.cdn` in code sample with Handlebars-like placeholder ([#2906](https://github.com/PrismJS/prism/issues/2906)) [`80471181`](https://github.com/PrismJS/prism/commit/80471181)
738
+ * Set dummy domain for CDN ([#2905](https://github.com/PrismJS/prism/issues/2905)) [`38f1d289`](https://github.com/PrismJS/prism/commit/38f1d289)
739
+ * Added MySQL to "Used by" section ([#2785](https://github.com/PrismJS/prism/issues/2785)) [`9b784ebf`](https://github.com/PrismJS/prism/commit/9b784ebf)
740
+ * Improved basic usage section ([#2777](https://github.com/PrismJS/prism/issues/2777)) [`a1209930`](https://github.com/PrismJS/prism/commit/a1209930)
741
+ * Updated URL in Autolinker example ([#2751](https://github.com/PrismJS/prism/issues/2751)) [`ec9767d6`](https://github.com/PrismJS/prism/commit/ec9767d6)
742
+ * Added React native tutorial ([#2683](https://github.com/PrismJS/prism/issues/2683)) [`1506f345`](https://github.com/PrismJS/prism/commit/1506f345)
743
+
744
+
745
+ ## 1.23.0 (2020-12-31)
746
+
747
+ ### New components
748
+
749
+ * __Apex__ ([#2622](https://github.com/PrismJS/prism/issues/2622)) [`f0e2b70e`](https://github.com/PrismJS/prism/commit/f0e2b70e)
750
+ * __DataWeave__ ([#2659](https://github.com/PrismJS/prism/issues/2659)) [`0803525b`](https://github.com/PrismJS/prism/commit/0803525b)
751
+ * __PromQL__ ([#2628](https://github.com/PrismJS/prism/issues/2628)) [`8831c706`](https://github.com/PrismJS/prism/commit/8831c706)
752
+
753
+ ### Updated components
754
+
755
+ * Fixed multiple vulnerable regexes ([#2584](https://github.com/PrismJS/prism/issues/2584)) [`c2f6a644`](https://github.com/PrismJS/prism/commit/c2f6a644)
756
+ * __Apache Configuration__
757
+ * Update directive-flag to match `=` ([#2612](https://github.com/PrismJS/prism/issues/2612)) [`00bf00e3`](https://github.com/PrismJS/prism/commit/00bf00e3)
758
+ * __C-like__
759
+ * Made all comments greedy ([#2680](https://github.com/PrismJS/prism/issues/2680)) [`0a3932fe`](https://github.com/PrismJS/prism/commit/0a3932fe)
760
+ * __C__
761
+ * Better class name and macro name detection ([#2585](https://github.com/PrismJS/prism/issues/2585)) [`129faf5c`](https://github.com/PrismJS/prism/commit/129faf5c)
762
+ * __Content-Security-Policy__
763
+ * Added missing directives and keywords ([#2664](https://github.com/PrismJS/prism/issues/2664)) [`f1541342`](https://github.com/PrismJS/prism/commit/f1541342)
764
+ * Do not highlight directive names with adjacent hyphens ([#2662](https://github.com/PrismJS/prism/issues/2662)) [`a7ccc16d`](https://github.com/PrismJS/prism/commit/a7ccc16d)
765
+ * __CSS__
766
+ * Better HTML `style` attribute tokenization ([#2569](https://github.com/PrismJS/prism/issues/2569)) [`b04cbafe`](https://github.com/PrismJS/prism/commit/b04cbafe)
767
+ * __Java__
768
+ * Improved package and class name detection ([#2599](https://github.com/PrismJS/prism/issues/2599)) [`0889bc7c`](https://github.com/PrismJS/prism/commit/0889bc7c)
769
+ * Added Java 15 keywords ([#2567](https://github.com/PrismJS/prism/issues/2567)) [`73f81c89`](https://github.com/PrismJS/prism/commit/73f81c89)
770
+ * __Java stack trace__
771
+ * Added support stack frame element class loaders and modules ([#2658](https://github.com/PrismJS/prism/issues/2658)) [`0bb4f096`](https://github.com/PrismJS/prism/commit/0bb4f096)
772
+ * __Julia__
773
+ * Removed constants that are not exported by default ([#2601](https://github.com/PrismJS/prism/issues/2601)) [`093c8175`](https://github.com/PrismJS/prism/commit/093c8175)
774
+ * __Kotlin__
775
+ * Added support for backticks in function names ([#2489](https://github.com/PrismJS/prism/issues/2489)) [`a5107d5c`](https://github.com/PrismJS/prism/commit/a5107d5c)
776
+ * __Latte__
777
+ * Fixed exponential backtracking ([#2682](https://github.com/PrismJS/prism/issues/2682)) [`89f1e182`](https://github.com/PrismJS/prism/commit/89f1e182)
778
+ * __Markdown__
779
+ * Improved URL tokenization ([#2678](https://github.com/PrismJS/prism/issues/2678)) [`2af3e2c2`](https://github.com/PrismJS/prism/commit/2af3e2c2)
780
+ * Added support for YAML front matter ([#2634](https://github.com/PrismJS/prism/issues/2634)) [`5cf9cfbc`](https://github.com/PrismJS/prism/commit/5cf9cfbc)
781
+ * __PHP__
782
+ * Added support for PHP 7.4 + other major improvements ([#2566](https://github.com/PrismJS/prism/issues/2566)) [`38808e64`](https://github.com/PrismJS/prism/commit/38808e64)
783
+ * Added support for PHP 8.0 features ([#2591](https://github.com/PrismJS/prism/issues/2591)) [`df922d90`](https://github.com/PrismJS/prism/commit/df922d90)
784
+ * Removed C-like dependency ([#2619](https://github.com/PrismJS/prism/issues/2619)) [`89ebb0b7`](https://github.com/PrismJS/prism/commit/89ebb0b7)
785
+ * Fixed exponential backtracking ([#2684](https://github.com/PrismJS/prism/issues/2684)) [`37b9c9a1`](https://github.com/PrismJS/prism/commit/37b9c9a1)
786
+ * __Sass (Scss)__
787
+ * Added support for Sass modules ([#2643](https://github.com/PrismJS/prism/issues/2643)) [`deb238a6`](https://github.com/PrismJS/prism/commit/deb238a6)
788
+ * __Scheme__
789
+ * Fixed number pattern ([#2648](https://github.com/PrismJS/prism/issues/2648)) [`e01ecd00`](https://github.com/PrismJS/prism/commit/e01ecd00)
790
+ * Fixed function and function-like false positives ([#2611](https://github.com/PrismJS/prism/issues/2611)) [`7951ca24`](https://github.com/PrismJS/prism/commit/7951ca24)
791
+ * __Shell session__
792
+ * Fixed false positives because of links in command output ([#2649](https://github.com/PrismJS/prism/issues/2649)) [`8e76a978`](https://github.com/PrismJS/prism/commit/8e76a978)
793
+ * __TSX__
794
+ * Temporary fix for the collisions of JSX tags and TS generics ([#2596](https://github.com/PrismJS/prism/issues/2596)) [`25bdb494`](https://github.com/PrismJS/prism/commit/25bdb494)
795
+
796
+ ### Updated plugins
797
+
798
+ * Made Autoloader and Diff Highlight compatible ([#2580](https://github.com/PrismJS/prism/issues/2580)) [`7a74497a`](https://github.com/PrismJS/prism/commit/7a74497a)
799
+ * __Copy to Clipboard Button__
800
+ * Set `type="button"` attribute for copy to clipboard plugin ([#2593](https://github.com/PrismJS/prism/issues/2593)) [`f59a85f1`](https://github.com/PrismJS/prism/commit/f59a85f1)
801
+ * __File Highlight__
802
+ * Fixed IE compatibility problem ([#2656](https://github.com/PrismJS/prism/issues/2656)) [`3f4ae00d`](https://github.com/PrismJS/prism/commit/3f4ae00d)
803
+ * __Line Highlight__
804
+ * Fixed top offset in combination with Line numbers ([#2237](https://github.com/PrismJS/prism/issues/2237)) [`b40f8f4b`](https://github.com/PrismJS/prism/commit/b40f8f4b)
805
+ * Fixed print background color ([#2668](https://github.com/PrismJS/prism/issues/2668)) [`cdb24abe`](https://github.com/PrismJS/prism/commit/cdb24abe)
806
+ * __Line Numbers__
807
+ * Fixed null reference ([#2605](https://github.com/PrismJS/prism/issues/2605)) [`7cdfe556`](https://github.com/PrismJS/prism/commit/7cdfe556)
808
+ * __Treeview__
809
+ * Fixed icons on dark themes ([#2631](https://github.com/PrismJS/prism/issues/2631)) [`7266e32f`](https://github.com/PrismJS/prism/commit/7266e32f)
810
+ * __Unescaped Markup__
811
+ * Refactoring ([#2445](https://github.com/PrismJS/prism/issues/2445)) [`fc602822`](https://github.com/PrismJS/prism/commit/fc602822)
812
+
813
+ ### Other
814
+
815
+ * Readme: Added alternative link for Chinese translation [`071232b4`](https://github.com/PrismJS/prism/commit/071232b4)
816
+ * Readme: Removed broken icon for Chinese translation ([#2670](https://github.com/PrismJS/prism/issues/2670)) [`2ea202b9`](https://github.com/PrismJS/prism/commit/2ea202b9)
817
+ * Readme: Grammar adjustments ([#2629](https://github.com/PrismJS/prism/issues/2629)) [`f217ab75`](https://github.com/PrismJS/prism/commit/f217ab75)
818
+ * __Core__
819
+ * Moved pattern matching + lookbehind logic into function ([#2633](https://github.com/PrismJS/prism/issues/2633)) [`24574406`](https://github.com/PrismJS/prism/commit/24574406)
820
+ * Fixed bug with greedy matching ([#2632](https://github.com/PrismJS/prism/issues/2632)) [`8fa8dd24`](https://github.com/PrismJS/prism/commit/8fa8dd24)
821
+ * __Infrastructure__
822
+ * Migrate from TravisCI -> GitHub Actions ([#2606](https://github.com/PrismJS/prism/issues/2606)) [`69132045`](https://github.com/PrismJS/prism/commit/69132045)
823
+ * Added Dangerfile and provide bundle size info ([#2608](https://github.com/PrismJS/prism/issues/2608)) [`9df20c5e`](https://github.com/PrismJS/prism/commit/9df20c5e)
824
+ * New `start` script to start local server ([#2491](https://github.com/PrismJS/prism/issues/2491)) [`0604793c`](https://github.com/PrismJS/prism/commit/0604793c)
825
+ * Added test for exponential backtracking ([#2590](https://github.com/PrismJS/prism/issues/2590)) [`05afbb10`](https://github.com/PrismJS/prism/commit/05afbb10)
826
+ * Added test for polynomial backtracking ([#2597](https://github.com/PrismJS/prism/issues/2597)) [`e644178b`](https://github.com/PrismJS/prism/commit/e644178b)
827
+ * Tests: Better pretty print ([#2600](https://github.com/PrismJS/prism/issues/2600)) [`8bfcc819`](https://github.com/PrismJS/prism/commit/8bfcc819)
828
+ * Tests: Fixed sorted language list test ([#2623](https://github.com/PrismJS/prism/issues/2623)) [`2d3a1267`](https://github.com/PrismJS/prism/commit/2d3a1267)
829
+ * Tests: Stricter pattern for nice-token-names test ([#2588](https://github.com/PrismJS/prism/issues/2588)) [`0df60be1`](https://github.com/PrismJS/prism/commit/0df60be1)
830
+ * Tests: Added strict checks for `Prism.languages.extend` ([#2572](https://github.com/PrismJS/prism/issues/2572)) [`8828500e`](https://github.com/PrismJS/prism/commit/8828500e)
831
+ * __Website__
832
+ * Test page: Added "Share" option ([#2575](https://github.com/PrismJS/prism/issues/2575)) [`b5f4f10e`](https://github.com/PrismJS/prism/commit/b5f4f10e)
833
+ * Test page: Don't trigger ad-blockers with class ([#2677](https://github.com/PrismJS/prism/issues/2677)) [`df0738e9`](https://github.com/PrismJS/prism/commit/df0738e9)
834
+ * Thousands -> millions [`9f82de50`](https://github.com/PrismJS/prism/commit/9f82de50)
835
+ * Unescaped Markup: More doc regarding comments ([#2652](https://github.com/PrismJS/prism/issues/2652)) [`add3736a`](https://github.com/PrismJS/prism/commit/add3736a)
836
+ * Website: Added and updated documentation ([#2654](https://github.com/PrismJS/prism/issues/2654)) [`8e660495`](https://github.com/PrismJS/prism/commit/8e660495)
837
+ * Website: Updated and improved guide on "Extending Prism" page ([#2586](https://github.com/PrismJS/prism/issues/2586)) [`8e1f38ff`](https://github.com/PrismJS/prism/commit/8e1f38ff)
838
+
839
+ ## 1.22.0 (2020-10-10)
840
+
841
+ ### New components
842
+
843
+ * __Birb__ ([#2542](https://github.com/PrismJS/prism/issues/2542)) [`4d31e22a`](https://github.com/PrismJS/prism/commit/4d31e22a)
844
+ * __BSL (1C:Enterprise)__ & __OneScript__ ([#2520](https://github.com/PrismJS/prism/issues/2520)) [`5c33f0bb`](https://github.com/PrismJS/prism/commit/5c33f0bb)
845
+ * __MongoDB__ ([#2518](https://github.com/PrismJS/prism/issues/2518)) [`004eaa74`](https://github.com/PrismJS/prism/commit/004eaa74)
846
+ * __Naninovel Script__ ([#2494](https://github.com/PrismJS/prism/issues/2494)) [`388ad996`](https://github.com/PrismJS/prism/commit/388ad996)
847
+ * __PureScript__ ([#2526](https://github.com/PrismJS/prism/issues/2526)) [`ad748a00`](https://github.com/PrismJS/prism/commit/ad748a00)
848
+ * __SML__ & __SML/NJ__ ([#2537](https://github.com/PrismJS/prism/issues/2537)) [`cb75d9e2`](https://github.com/PrismJS/prism/commit/cb75d9e2)
849
+ * __Stan__ ([#2490](https://github.com/PrismJS/prism/issues/2490)) [`2da2beba`](https://github.com/PrismJS/prism/commit/2da2beba)
850
+ * __TypoScript__ & __TSConfig__ ([#2505](https://github.com/PrismJS/prism/issues/2505)) [`bf115f47`](https://github.com/PrismJS/prism/commit/bf115f47)
851
+
852
+ ### Updated components
853
+
854
+ * Removed duplicate alternatives in various languages ([#2524](https://github.com/PrismJS/prism/issues/2524)) [`fa2225ff`](https://github.com/PrismJS/prism/commit/fa2225ff)
855
+ * __Haskell__
856
+ * Improvements ([#2535](https://github.com/PrismJS/prism/issues/2535)) [`e023044c`](https://github.com/PrismJS/prism/commit/e023044c)
857
+ * __JS Extras__
858
+ * Highlight import and export bindings ([#2533](https://github.com/PrismJS/prism/issues/2533)) [`c51ababb`](https://github.com/PrismJS/prism/commit/c51ababb)
859
+ * Added control-flow keywords ([#2529](https://github.com/PrismJS/prism/issues/2529)) [`bcef22af`](https://github.com/PrismJS/prism/commit/bcef22af)
860
+ * __PHP__
861
+ * Added `match` keyword (PHP 8.0) ([#2574](https://github.com/PrismJS/prism/issues/2574)) [`1761513e`](https://github.com/PrismJS/prism/commit/1761513e)
862
+ * __Processing__
863
+ * Fixed function pattern ([#2564](https://github.com/PrismJS/prism/issues/2564)) [`35cbc02f`](https://github.com/PrismJS/prism/commit/35cbc02f)
864
+ * __Regex__
865
+ * Changed how languages embed regexes ([#2532](https://github.com/PrismJS/prism/issues/2532)) [`f62ca787`](https://github.com/PrismJS/prism/commit/f62ca787)
866
+ * __Rust__
867
+ * Fixed Unicode char literals ([#2550](https://github.com/PrismJS/prism/issues/2550)) [`3b4f14ca`](https://github.com/PrismJS/prism/commit/3b4f14ca)
868
+ * __Scheme__
869
+ * Added support for R7RS syntax ([#2525](https://github.com/PrismJS/prism/issues/2525)) [`e4f6ccac`](https://github.com/PrismJS/prism/commit/e4f6ccac)
870
+ * __Shell session__
871
+ * Added aliases ([#2548](https://github.com/PrismJS/prism/issues/2548)) [`bfb36748`](https://github.com/PrismJS/prism/commit/bfb36748)
872
+ * Highlight all commands after the start of any Heredoc string ([#2509](https://github.com/PrismJS/prism/issues/2509)) [`6c921801`](https://github.com/PrismJS/prism/commit/6c921801)
873
+ * __YAML__
874
+ * Improved key pattern ([#2561](https://github.com/PrismJS/prism/issues/2561)) [`59853a52`](https://github.com/PrismJS/prism/commit/59853a52)
875
+
876
+ ### Updated plugins
877
+
878
+ * __Autoloader__
879
+ * Fixed file detection regexes ([#2549](https://github.com/PrismJS/prism/issues/2549)) [`d36ea993`](https://github.com/PrismJS/prism/commit/d36ea993)
880
+ * __Match braces__
881
+ * Fixed JS interpolation punctuation ([#2541](https://github.com/PrismJS/prism/issues/2541)) [`6b47133d`](https://github.com/PrismJS/prism/commit/6b47133d)
882
+ * __Show Language__
883
+ * Added title for plain text ([#2555](https://github.com/PrismJS/prism/issues/2555)) [`a409245e`](https://github.com/PrismJS/prism/commit/a409245e)
884
+
885
+ ### Other
886
+
887
+ * Tests: Added an option to accept the actual token stream ([#2515](https://github.com/PrismJS/prism/issues/2515)) [`bafab634`](https://github.com/PrismJS/prism/commit/bafab634)
888
+ * __Core__
889
+ * Docs: Minor improvement ([#2513](https://github.com/PrismJS/prism/issues/2513)) [`206dc80f`](https://github.com/PrismJS/prism/commit/206dc80f)
890
+ * __Infrastructure__
891
+ * JSDoc: Fixed line ends ([#2523](https://github.com/PrismJS/prism/issues/2523)) [`bf169e5f`](https://github.com/PrismJS/prism/commit/bf169e5f)
892
+ * __Website__
893
+ * Website: Added new SB101 tutorial replacing the Crambler one ([#2576](https://github.com/PrismJS/prism/issues/2576)) [`655f985c`](https://github.com/PrismJS/prism/commit/655f985c)
894
+ * Website: Fix typo on homepage by adding missing word add ([#2570](https://github.com/PrismJS/prism/issues/2570)) [`8ae6a4ba`](https://github.com/PrismJS/prism/commit/8ae6a4ba)
895
+ * Custom class: Improved doc ([#2512](https://github.com/PrismJS/prism/issues/2512)) [`5ad6cb23`](https://github.com/PrismJS/prism/commit/5ad6cb23)
896
+
897
+ ## 1.21.0 (2020-08-06)
898
+
899
+ ### New components
900
+
901
+ * __.ignore__ & __.gitignore__ & __.hgignore__ & __.npmignore__ ([#2481](https://github.com/PrismJS/prism/issues/2481)) [`3fcce6fe`](https://github.com/PrismJS/prism/commit/3fcce6fe)
902
+ * __Agda__ ([#2430](https://github.com/PrismJS/prism/issues/2430)) [`3a127c7d`](https://github.com/PrismJS/prism/commit/3a127c7d)
903
+ * __AL__ ([#2300](https://github.com/PrismJS/prism/issues/2300)) [`de21eb64`](https://github.com/PrismJS/prism/commit/de21eb64)
904
+ * __Cypher__ ([#2459](https://github.com/PrismJS/prism/issues/2459)) [`398e2943`](https://github.com/PrismJS/prism/commit/398e2943)
905
+ * __Dhall__ ([#2473](https://github.com/PrismJS/prism/issues/2473)) [`649e51e5`](https://github.com/PrismJS/prism/commit/649e51e5)
906
+ * __EditorConfig__ ([#2471](https://github.com/PrismJS/prism/issues/2471)) [`ed8fff91`](https://github.com/PrismJS/prism/commit/ed8fff91)
907
+ * __HLSL__ ([#2318](https://github.com/PrismJS/prism/issues/2318)) [`87a5c7ae`](https://github.com/PrismJS/prism/commit/87a5c7ae)
908
+ * __JS stack trace__ ([#2418](https://github.com/PrismJS/prism/issues/2418)) [`ae0327b3`](https://github.com/PrismJS/prism/commit/ae0327b3)
909
+ * __PeopleCode__ ([#2302](https://github.com/PrismJS/prism/issues/2302)) [`bd4d8165`](https://github.com/PrismJS/prism/commit/bd4d8165)
910
+ * __PureBasic__ ([#2369](https://github.com/PrismJS/prism/issues/2369)) [`d0c1c70d`](https://github.com/PrismJS/prism/commit/d0c1c70d)
911
+ * __Racket__ ([#2315](https://github.com/PrismJS/prism/issues/2315)) [`053016ef`](https://github.com/PrismJS/prism/commit/053016ef)
912
+ * __Smali__ ([#2419](https://github.com/PrismJS/prism/issues/2419)) [`22eb5cad`](https://github.com/PrismJS/prism/commit/22eb5cad)
913
+ * __Structured Text (IEC 61131-3)__ ([#2311](https://github.com/PrismJS/prism/issues/2311)) [`8704cdfb`](https://github.com/PrismJS/prism/commit/8704cdfb)
914
+ * __UnrealScript__ ([#2305](https://github.com/PrismJS/prism/issues/2305)) [`1093ceb3`](https://github.com/PrismJS/prism/commit/1093ceb3)
915
+ * __WarpScript__ ([#2307](https://github.com/PrismJS/prism/issues/2307)) [`cde5b0fa`](https://github.com/PrismJS/prism/commit/cde5b0fa)
916
+ * __XML doc (.net)__ ([#2340](https://github.com/PrismJS/prism/issues/2340)) [`caec5e30`](https://github.com/PrismJS/prism/commit/caec5e30)
917
+ * __YANG__ ([#2467](https://github.com/PrismJS/prism/issues/2467)) [`ed1df1e1`](https://github.com/PrismJS/prism/commit/ed1df1e1)
918
+
919
+ ### Updated components
920
+
921
+ * Markup & JSON: Added new aliases ([#2390](https://github.com/PrismJS/prism/issues/2390)) [`9782cfe6`](https://github.com/PrismJS/prism/commit/9782cfe6)
922
+ * Fixed several cases of exponential backtracking ([#2268](https://github.com/PrismJS/prism/issues/2268)) [`7a554b5f`](https://github.com/PrismJS/prism/commit/7a554b5f)
923
+ * __APL__
924
+ * Added `⍥` ([#2409](https://github.com/PrismJS/prism/issues/2409)) [`0255cb6a`](https://github.com/PrismJS/prism/commit/0255cb6a)
925
+ * __AutoHotkey__
926
+ * Added missing `format` built-in ([#2450](https://github.com/PrismJS/prism/issues/2450)) [`7c66cfc4`](https://github.com/PrismJS/prism/commit/7c66cfc4)
927
+ * Improved comments and other improvements ([#2412](https://github.com/PrismJS/prism/issues/2412)) [`ddf3cc62`](https://github.com/PrismJS/prism/commit/ddf3cc62)
928
+ * Added missing definitions ([#2400](https://github.com/PrismJS/prism/issues/2400)) [`4fe03676`](https://github.com/PrismJS/prism/commit/4fe03676)
929
+ * __Bash__
930
+ * Added `composer` command ([#2298](https://github.com/PrismJS/prism/issues/2298)) [`044dd271`](https://github.com/PrismJS/prism/commit/044dd271)
931
+ * __Batch__
932
+ * Fix escaped double quote ([#2485](https://github.com/PrismJS/prism/issues/2485)) [`f0f8210c`](https://github.com/PrismJS/prism/commit/f0f8210c)
933
+ * __C__
934
+ * Improved macros and expressions ([#2440](https://github.com/PrismJS/prism/issues/2440)) [`8a72fa6f`](https://github.com/PrismJS/prism/commit/8a72fa6f)
935
+ * Improved macros ([#2320](https://github.com/PrismJS/prism/issues/2320)) [`fdcf7ed2`](https://github.com/PrismJS/prism/commit/fdcf7ed2)
936
+ * __C#__
937
+ * Improved pattern matching ([#2411](https://github.com/PrismJS/prism/issues/2411)) [`7f341fc1`](https://github.com/PrismJS/prism/commit/7f341fc1)
938
+ * Fixed adjacent string interpolations ([#2402](https://github.com/PrismJS/prism/issues/2402)) [`2a2e79ed`](https://github.com/PrismJS/prism/commit/2a2e79ed)
939
+ * __C++__
940
+ * Added support for default comparison operator ([#2426](https://github.com/PrismJS/prism/issues/2426)) [`8e9d161c`](https://github.com/PrismJS/prism/commit/8e9d161c)
941
+ * Improved class name detection ([#2348](https://github.com/PrismJS/prism/issues/2348)) [`e3fe9040`](https://github.com/PrismJS/prism/commit/e3fe9040)
942
+ * Fixed `enum class` class names ([#2342](https://github.com/PrismJS/prism/issues/2342)) [`30b4e254`](https://github.com/PrismJS/prism/commit/30b4e254)
943
+ * __Content-Security-Policy__
944
+ * Fixed directives ([#2461](https://github.com/PrismJS/prism/issues/2461)) [`537a9e80`](https://github.com/PrismJS/prism/commit/537a9e80)
945
+ * __CSS__
946
+ * Improved url and added keywords ([#2432](https://github.com/PrismJS/prism/issues/2432)) [`964de5a1`](https://github.com/PrismJS/prism/commit/964de5a1)
947
+ * __CSS Extras__
948
+ * Optimized `class` and `id` patterns ([#2359](https://github.com/PrismJS/prism/issues/2359)) [`fdbc4473`](https://github.com/PrismJS/prism/commit/fdbc4473)
949
+ * Renamed `attr-{name,value}` tokens and added tokens for combinators and selector lists ([#2373](https://github.com/PrismJS/prism/issues/2373)) [`e523f5d0`](https://github.com/PrismJS/prism/commit/e523f5d0)
950
+ * __Dart__
951
+ * Added missing keywords ([#2355](https://github.com/PrismJS/prism/issues/2355)) [`4172ab6f`](https://github.com/PrismJS/prism/commit/4172ab6f)
952
+ * __Diff__
953
+ * Added `prefix` token ([#2281](https://github.com/PrismJS/prism/issues/2281)) [`fd432a5b`](https://github.com/PrismJS/prism/commit/fd432a5b)
954
+ * __Docker__
955
+ * Fixed strings inside comments ([#2428](https://github.com/PrismJS/prism/issues/2428)) [`37273a6f`](https://github.com/PrismJS/prism/commit/37273a6f)
956
+ * __EditorConfig__
957
+ * Trim spaces before key and section title ([#2482](https://github.com/PrismJS/prism/issues/2482)) [`0c30c582`](https://github.com/PrismJS/prism/commit/0c30c582)
958
+ * __EJS__
959
+ * Added `eta` alias ([#2282](https://github.com/PrismJS/prism/issues/2282)) [`0cfb6c5f`](https://github.com/PrismJS/prism/commit/0cfb6c5f)
960
+ * __GLSL__
961
+ * Improvements ([#2321](https://github.com/PrismJS/prism/issues/2321)) [`33e49956`](https://github.com/PrismJS/prism/commit/33e49956)
962
+ * __GraphQL__
963
+ * Added missing keywords ([#2407](https://github.com/PrismJS/prism/issues/2407)) [`de8ed16d`](https://github.com/PrismJS/prism/commit/de8ed16d)
964
+ * Added support for multi-line strings and descriptions ([#2406](https://github.com/PrismJS/prism/issues/2406)) [`9e64c62e`](https://github.com/PrismJS/prism/commit/9e64c62e)
965
+ * __Io__
966
+ * Fixed operator pattern ([#2365](https://github.com/PrismJS/prism/issues/2365)) [`d6055771`](https://github.com/PrismJS/prism/commit/d6055771)
967
+ * __Java__
968
+ * Fixed `namespace` token ([#2295](https://github.com/PrismJS/prism/issues/2295)) [`62e184bb`](https://github.com/PrismJS/prism/commit/62e184bb)
969
+ * __JavaDoc__
970
+ * Improvements ([#2324](https://github.com/PrismJS/prism/issues/2324)) [`032910ba`](https://github.com/PrismJS/prism/commit/032910ba)
971
+ * __JavaScript__
972
+ * Improved regex detection ([#2465](https://github.com/PrismJS/prism/issues/2465)) [`4f55052f`](https://github.com/PrismJS/prism/commit/4f55052f)
973
+ * Improved `get`/`set` and parameter detection ([#2387](https://github.com/PrismJS/prism/issues/2387)) [`ed715158`](https://github.com/PrismJS/prism/commit/ed715158)
974
+ * Added support for logical assignment operators ([#2378](https://github.com/PrismJS/prism/issues/2378)) [`b28f21b7`](https://github.com/PrismJS/prism/commit/b28f21b7)
975
+ * __JSDoc__
976
+ * Improvements ([#2466](https://github.com/PrismJS/prism/issues/2466)) [`2805ae35`](https://github.com/PrismJS/prism/commit/2805ae35)
977
+ * __JSON__
978
+ * Greedy comments ([#2479](https://github.com/PrismJS/prism/issues/2479)) [`158caf52`](https://github.com/PrismJS/prism/commit/158caf52)
979
+ * __Julia__
980
+ * Improved strings, comments, and other patterns ([#2363](https://github.com/PrismJS/prism/issues/2363)) [`81cf2344`](https://github.com/PrismJS/prism/commit/81cf2344)
981
+ * __Kotlin__
982
+ * Added `kt` and `kts` aliases ([#2474](https://github.com/PrismJS/prism/issues/2474)) [`67f97e2e`](https://github.com/PrismJS/prism/commit/67f97e2e)
983
+ * __Markup__
984
+ * Added tokens inside DOCTYPE ([#2349](https://github.com/PrismJS/prism/issues/2349)) [`9c7bc820`](https://github.com/PrismJS/prism/commit/9c7bc820)
985
+ * Added `attr-equals` alias for the attribute `=` sign ([#2350](https://github.com/PrismJS/prism/issues/2350)) [`96a0116e`](https://github.com/PrismJS/prism/commit/96a0116e)
986
+ * Added alias for named entities ([#2351](https://github.com/PrismJS/prism/issues/2351)) [`ab1e34ae`](https://github.com/PrismJS/prism/commit/ab1e34ae)
987
+ * Added support for SSML ([#2306](https://github.com/PrismJS/prism/issues/2306)) [`eb70070d`](https://github.com/PrismJS/prism/commit/eb70070d)
988
+ * __Objective-C__
989
+ * Added `objc` alias ([#2331](https://github.com/PrismJS/prism/issues/2331)) [`67c6b7af`](https://github.com/PrismJS/prism/commit/67c6b7af)
990
+ * __PowerShell__
991
+ * New functions pattern bases on naming conventions ([#2301](https://github.com/PrismJS/prism/issues/2301)) [`fec39bcf`](https://github.com/PrismJS/prism/commit/fec39bcf)
992
+ * __Protocol Buffers__
993
+ * Added support for RPC syntax ([#2414](https://github.com/PrismJS/prism/issues/2414)) [`939a17c4`](https://github.com/PrismJS/prism/commit/939a17c4)
994
+ * __Pug__
995
+ * Improved class and id detection in tags ([#2358](https://github.com/PrismJS/prism/issues/2358)) [`7f948ecb`](https://github.com/PrismJS/prism/commit/7f948ecb)
996
+ * __Python__
997
+ * Fixed empty multiline strings ([#2344](https://github.com/PrismJS/prism/issues/2344)) [`c9324476`](https://github.com/PrismJS/prism/commit/c9324476)
998
+ * __Regex__
999
+ * Added aliases and minor improvements ([#2325](https://github.com/PrismJS/prism/issues/2325)) [`8a72830a`](https://github.com/PrismJS/prism/commit/8a72830a)
1000
+ * __Ren'py__
1001
+ * Added `rpy` alias ([#2385](https://github.com/PrismJS/prism/issues/2385)) [`4935b5ca`](https://github.com/PrismJS/prism/commit/4935b5ca)
1002
+ * __Ruby__
1003
+ * Optimized `regex` and `string` patterns ([#2354](https://github.com/PrismJS/prism/issues/2354)) [`b526e8c0`](https://github.com/PrismJS/prism/commit/b526e8c0)
1004
+ * __Rust__
1005
+ * Improvements ([#2464](https://github.com/PrismJS/prism/issues/2464)) [`2ff40fe0`](https://github.com/PrismJS/prism/commit/2ff40fe0)
1006
+ * Improvements ([#2332](https://github.com/PrismJS/prism/issues/2332)) [`194c5429`](https://github.com/PrismJS/prism/commit/194c5429)
1007
+ * __SAS__
1008
+ * Improved macro string functions ([#2463](https://github.com/PrismJS/prism/issues/2463)) [`278316ca`](https://github.com/PrismJS/prism/commit/278316ca)
1009
+ * Handle edge case of string macro functions ([#2451](https://github.com/PrismJS/prism/issues/2451)) [`a0a9f1ef`](https://github.com/PrismJS/prism/commit/a0a9f1ef)
1010
+ * Improved comments in `proc groovy` and `proc lua` ([#2392](https://github.com/PrismJS/prism/issues/2392)) [`475a5903`](https://github.com/PrismJS/prism/commit/475a5903)
1011
+ * __Scheme__
1012
+ * Adjusted lookbehind for literals ([#2396](https://github.com/PrismJS/prism/issues/2396)) [`1e3f542b`](https://github.com/PrismJS/prism/commit/1e3f542b)
1013
+ * Improved lambda parameter ([#2346](https://github.com/PrismJS/prism/issues/2346)) [`1946918a`](https://github.com/PrismJS/prism/commit/1946918a)
1014
+ * Consistent lookaheads ([#2322](https://github.com/PrismJS/prism/issues/2322)) [`d2541d54`](https://github.com/PrismJS/prism/commit/d2541d54)
1015
+ * Improved boolean ([#2316](https://github.com/PrismJS/prism/issues/2316)) [`e27e65af`](https://github.com/PrismJS/prism/commit/e27e65af)
1016
+ * Added missing special keywords ([#2304](https://github.com/PrismJS/prism/issues/2304)) [`ac297ba5`](https://github.com/PrismJS/prism/commit/ac297ba5)
1017
+ * Improvements ([#2263](https://github.com/PrismJS/prism/issues/2263)) [`9a49f78f`](https://github.com/PrismJS/prism/commit/9a49f78f)
1018
+ * __Solidity (Ethereum)__
1019
+ * Added `sol` alias ([#2382](https://github.com/PrismJS/prism/issues/2382)) [`6352213a`](https://github.com/PrismJS/prism/commit/6352213a)
1020
+ * __SQL__
1021
+ * Added PostgreSQL `RETURNING` keyword ([#2476](https://github.com/PrismJS/prism/issues/2476)) [`bea7a585`](https://github.com/PrismJS/prism/commit/bea7a585)
1022
+ * __Stylus__
1023
+ * Fixed comments breaking declarations + minor improvements ([#2372](https://github.com/PrismJS/prism/issues/2372)) [`6d663b6e`](https://github.com/PrismJS/prism/commit/6d663b6e)
1024
+ * New tokens and other improvements ([#2368](https://github.com/PrismJS/prism/issues/2368)) [`2c10ef8a`](https://github.com/PrismJS/prism/commit/2c10ef8a)
1025
+ * Fixed comments breaking strings and URLs ([#2361](https://github.com/PrismJS/prism/issues/2361)) [`0d65d6c9`](https://github.com/PrismJS/prism/commit/0d65d6c9)
1026
+ * __T4 Text Templates (VB)__
1027
+ * Use the correct VB variant ([#2341](https://github.com/PrismJS/prism/issues/2341)) [`b6093339`](https://github.com/PrismJS/prism/commit/b6093339)
1028
+ * __TypeScript__
1029
+ * Added `asserts` keyword and other improvements ([#2280](https://github.com/PrismJS/prism/issues/2280)) [`a197cfcd`](https://github.com/PrismJS/prism/commit/a197cfcd)
1030
+ * __Visual Basic__
1031
+ * Added VBA alias ([#2469](https://github.com/PrismJS/prism/issues/2469)) [`78161d60`](https://github.com/PrismJS/prism/commit/78161d60)
1032
+ * Added `until` keyword ([#2423](https://github.com/PrismJS/prism/issues/2423)) [`a13ee8d9`](https://github.com/PrismJS/prism/commit/a13ee8d9)
1033
+ * Added missing keywords ([#2376](https://github.com/PrismJS/prism/issues/2376)) [`ba5ac1da`](https://github.com/PrismJS/prism/commit/ba5ac1da)
1034
+
1035
+ ### Updated plugins
1036
+
1037
+ * File Highlight & JSONP Highlight update ([#1974](https://github.com/PrismJS/prism/issues/1974)) [`afea17d9`](https://github.com/PrismJS/prism/commit/afea17d9)
1038
+ * Added general de/activation mechanism for plugins ([#2434](https://github.com/PrismJS/prism/issues/2434)) [`a36e96ab`](https://github.com/PrismJS/prism/commit/a36e96ab)
1039
+ * __Autoloader__
1040
+ * Fixed bug breaking Autoloader ([#2449](https://github.com/PrismJS/prism/issues/2449)) [`a3416bf3`](https://github.com/PrismJS/prism/commit/a3416bf3)
1041
+ * Fixed `data-dependencies` and extensions ([#2326](https://github.com/PrismJS/prism/issues/2326)) [`1654b25f`](https://github.com/PrismJS/prism/commit/1654b25f)
1042
+ * Improved path detection and other minor improvements ([#2245](https://github.com/PrismJS/prism/issues/2245)) [`5cdc3251`](https://github.com/PrismJS/prism/commit/5cdc3251)
1043
+ * __Command Line__
1044
+ * Some refactoring ([#2290](https://github.com/PrismJS/prism/issues/2290)) [`8c9c2896`](https://github.com/PrismJS/prism/commit/8c9c2896)
1045
+ * Correctly rehighlight elements ([#2291](https://github.com/PrismJS/prism/issues/2291)) [`e6b2c6fc`](https://github.com/PrismJS/prism/commit/e6b2c6fc)
1046
+ * __Line Highlight__
1047
+ * Added linkable line numbers ([#2328](https://github.com/PrismJS/prism/issues/2328)) [`eb82e804`](https://github.com/PrismJS/prism/commit/eb82e804)
1048
+ * __Line Numbers__
1049
+ * Improved resize performance ([#2125](https://github.com/PrismJS/prism/issues/2125)) [`b96ed225`](https://github.com/PrismJS/prism/commit/b96ed225)
1050
+ * Fixed TypeError when `lineNumberWrapper` is null ([#2337](https://github.com/PrismJS/prism/issues/2337)) [`4b61661d`](https://github.com/PrismJS/prism/commit/4b61661d)
1051
+ * Exposed `_resizeElement` function ([#2288](https://github.com/PrismJS/prism/issues/2288)) [`893f2a79`](https://github.com/PrismJS/prism/commit/893f2a79)
1052
+ * __Previewers__
1053
+ * Fixed XSS ([#2506](https://github.com/PrismJS/prism/issues/2506)) [`8bba4880`](https://github.com/PrismJS/prism/commit/8bba4880)
1054
+ * __Unescaped Markup__
1055
+ * No longer requires `Prism.languages.markup` ([#2444](https://github.com/PrismJS/prism/issues/2444)) [`af132dd3`](https://github.com/PrismJS/prism/commit/af132dd3)
1056
+
1057
+ ### Updated themes
1058
+
1059
+ * __Coy__
1060
+ * Minor improvements ([#2176](https://github.com/PrismJS/prism/issues/2176)) [`7109c18c`](https://github.com/PrismJS/prism/commit/7109c18c)
1061
+ * __Default__
1062
+ * Added a comment that declares the background color of `operator` tokens as intentional ([#2309](https://github.com/PrismJS/prism/issues/2309)) [`937e2691`](https://github.com/PrismJS/prism/commit/937e2691)
1063
+ * __Okaidia__
1064
+ * Update comment text color to meet WCAG contrast recommendations to AA level ([#2292](https://github.com/PrismJS/prism/issues/2292)) [`06495f90`](https://github.com/PrismJS/prism/commit/06495f90)
1065
+
1066
+ ### Other
1067
+
1068
+ * Changelog: Fixed v1.20.0 release date [`cb6349e2`](https://github.com/PrismJS/prism/commit/cb6349e2)
1069
+ * __Core__
1070
+ * Fixed greedy matching bug ([#2032](https://github.com/PrismJS/prism/issues/2032)) [`40285203`](https://github.com/PrismJS/prism/commit/40285203)
1071
+ * Added JSDoc ([#1782](https://github.com/PrismJS/prism/issues/1782)) [`4ff555be`](https://github.com/PrismJS/prism/commit/4ff555be)
1072
+ * __Infrastructure__
1073
+ * Update Git repo URL in package.json ([#2334](https://github.com/PrismJS/prism/issues/2334)) [`10f43275`](https://github.com/PrismJS/prism/commit/10f43275)
1074
+ * Added docs to ignore files ([#2437](https://github.com/PrismJS/prism/issues/2437)) [`05c9f20b`](https://github.com/PrismJS/prism/commit/05c9f20b)
1075
+ * Added `npm run build` command ([#2356](https://github.com/PrismJS/prism/issues/2356)) [`ff74a610`](https://github.com/PrismJS/prism/commit/ff74a610)
1076
+ * gulp: Improved `inlineRegexSource` ([#2296](https://github.com/PrismJS/prism/issues/2296)) [`abb800dd`](https://github.com/PrismJS/prism/commit/abb800dd)
1077
+ * gulp: Fixed language map ([#2283](https://github.com/PrismJS/prism/issues/2283)) [`11053193`](https://github.com/PrismJS/prism/commit/11053193)
1078
+ * gulp: Removed `premerge` task ([#2357](https://github.com/PrismJS/prism/issues/2357)) [`5ff7932b`](https://github.com/PrismJS/prism/commit/5ff7932b)
1079
+ * Tests are now faster ([#2165](https://github.com/PrismJS/prism/issues/2165)) [`e756be3f`](https://github.com/PrismJS/prism/commit/e756be3f)
1080
+ * Tests: Added extra newlines in pretty token streams ([#2070](https://github.com/PrismJS/prism/issues/2070)) [`681adeef`](https://github.com/PrismJS/prism/commit/681adeef)
1081
+ * Tests: Added test for identifier support across all languages ([#2371](https://github.com/PrismJS/prism/issues/2371)) [`48fac3b2`](https://github.com/PrismJS/prism/commit/48fac3b2)
1082
+ * Tests: Added test to sort the language list ([#2222](https://github.com/PrismJS/prism/issues/2222)) [`a3758728`](https://github.com/PrismJS/prism/commit/a3758728)
1083
+ * Tests: Always pretty-print token streams ([#2421](https://github.com/PrismJS/prism/issues/2421)) [`583e7eb5`](https://github.com/PrismJS/prism/commit/583e7eb5)
1084
+ * Tests: Always use `components.json` ([#2370](https://github.com/PrismJS/prism/issues/2370)) [`e416341f`](https://github.com/PrismJS/prism/commit/e416341f)
1085
+ * Tests: Better error messages for pattern tests ([#2364](https://github.com/PrismJS/prism/issues/2364)) [`10ca6433`](https://github.com/PrismJS/prism/commit/10ca6433)
1086
+ * Tests: Included `console` in VM context ([#2353](https://github.com/PrismJS/prism/issues/2353)) [`b4ed5ded`](https://github.com/PrismJS/prism/commit/b4ed5ded)
1087
+ * __Website__
1088
+ * Fixed typos "Prims" ([#2455](https://github.com/PrismJS/prism/issues/2455)) [`dfa5498a`](https://github.com/PrismJS/prism/commit/dfa5498a)
1089
+ * New assets directory for all web-only files ([#2180](https://github.com/PrismJS/prism/issues/2180)) [`91fdd0b1`](https://github.com/PrismJS/prism/commit/91fdd0b1)
1090
+ * Improvements ([#2053](https://github.com/PrismJS/prism/issues/2053)) [`ce0fa227`](https://github.com/PrismJS/prism/commit/ce0fa227)
1091
+ * Fixed Treeview page ([#2484](https://github.com/PrismJS/prism/issues/2484)) [`a0efa40b`](https://github.com/PrismJS/prism/commit/a0efa40b)
1092
+ * Line Numbers: Fixed class name on website [`453079bf`](https://github.com/PrismJS/prism/commit/453079bf)
1093
+ * Line Numbers: Improved documentation ([#2456](https://github.com/PrismJS/prism/issues/2456)) [`447429f0`](https://github.com/PrismJS/prism/commit/447429f0)
1094
+ * Line Numbers: Style inline code on website ([#2435](https://github.com/PrismJS/prism/issues/2435)) [`ad9c13e2`](https://github.com/PrismJS/prism/commit/ad9c13e2)
1095
+ * Filter highlightAll: Fixed typo ([#2391](https://github.com/PrismJS/prism/issues/2391)) [`55bf7ec1`](https://github.com/PrismJS/prism/commit/55bf7ec1)
1096
+
1097
+ ## 1.20.0 (2020-04-04)
1098
+
1099
+ ### New components
1100
+
1101
+ * __Concurnas__ ([#2206](https://github.com/PrismJS/prism/issues/2206)) [`b24f7348`](https://github.com/PrismJS/prism/commit/b24f7348)
1102
+ * __DAX__ ([#2248](https://github.com/PrismJS/prism/issues/2248)) [`9227853f`](https://github.com/PrismJS/prism/commit/9227853f)
1103
+ * __Excel Formula__ ([#2219](https://github.com/PrismJS/prism/issues/2219)) [`bf4f7bfa`](https://github.com/PrismJS/prism/commit/bf4f7bfa)
1104
+ * __Factor__ ([#2203](https://github.com/PrismJS/prism/issues/2203)) [`f941102e`](https://github.com/PrismJS/prism/commit/f941102e)
1105
+ * __LLVM IR__ ([#2221](https://github.com/PrismJS/prism/issues/2221)) [`43efde2e`](https://github.com/PrismJS/prism/commit/43efde2e)
1106
+ * __PowerQuery__ ([#2250](https://github.com/PrismJS/prism/issues/2250)) [`8119e57b`](https://github.com/PrismJS/prism/commit/8119e57b)
1107
+ * __Solution file__ ([#2213](https://github.com/PrismJS/prism/issues/2213)) [`15983d52`](https://github.com/PrismJS/prism/commit/15983d52)
1108
+
1109
+ ### Updated components
1110
+
1111
+ * __Bash__
1112
+ * Added support for escaped quotes ([#2256](https://github.com/PrismJS/prism/issues/2256)) [`328d0e0e`](https://github.com/PrismJS/prism/commit/328d0e0e)
1113
+ * __BBcode__
1114
+ * Added "shortcode" alias ([#2273](https://github.com/PrismJS/prism/issues/2273)) [`57eebced`](https://github.com/PrismJS/prism/commit/57eebced)
1115
+ * __C/C++/OpenCL C__
1116
+ * Improvements ([#2196](https://github.com/PrismJS/prism/issues/2196)) [`674f4b35`](https://github.com/PrismJS/prism/commit/674f4b35)
1117
+ * __C__
1118
+ * Improvemed `comment` pattern ([#2229](https://github.com/PrismJS/prism/issues/2229)) [`fa630726`](https://github.com/PrismJS/prism/commit/fa630726)
1119
+ * __C#__
1120
+ * Fixed keywords in type lists blocking type names ([#2277](https://github.com/PrismJS/prism/issues/2277)) [`947a55bd`](https://github.com/PrismJS/prism/commit/947a55bd)
1121
+ * C# improvements ([#1444](https://github.com/PrismJS/prism/issues/1444)) [`42b15463`](https://github.com/PrismJS/prism/commit/42b15463)
1122
+ * __C++__
1123
+ * Added C++20 keywords ([#2236](https://github.com/PrismJS/prism/issues/2236)) [`462ad57e`](https://github.com/PrismJS/prism/commit/462ad57e)
1124
+ * __CSS__
1125
+ * Fixed `url()` containing "@" ([#2272](https://github.com/PrismJS/prism/issues/2272)) [`504a63ba`](https://github.com/PrismJS/prism/commit/504a63ba)
1126
+ * __CSS Extras__
1127
+ * Added support for the selector function ([#2201](https://github.com/PrismJS/prism/issues/2201)) [`2e0eff76`](https://github.com/PrismJS/prism/commit/2e0eff76)
1128
+ * __Elixir__
1129
+ * Added support for attributes names ending with `?` ([#2182](https://github.com/PrismJS/prism/issues/2182)) [`5450e24c`](https://github.com/PrismJS/prism/commit/5450e24c)
1130
+ * __Java__
1131
+ * Added `record` keyword ([#2185](https://github.com/PrismJS/prism/issues/2185)) [`47910b5c`](https://github.com/PrismJS/prism/commit/47910b5c)
1132
+ * __Markdown__
1133
+ * Added support for nested lists ([#2228](https://github.com/PrismJS/prism/issues/2228)) [`73c8a376`](https://github.com/PrismJS/prism/commit/73c8a376)
1134
+ * __OpenCL__
1135
+ * Require C ([#2231](https://github.com/PrismJS/prism/issues/2231)) [`26626ded`](https://github.com/PrismJS/prism/commit/26626ded)
1136
+ * __PHPDoc__
1137
+ * Fixed exponential backtracking ([#2198](https://github.com/PrismJS/prism/issues/2198)) [`3b42536e`](https://github.com/PrismJS/prism/commit/3b42536e)
1138
+ * __Ruby__
1139
+ * Fixed exponential backtracking ([#2225](https://github.com/PrismJS/prism/issues/2225)) [`c5de5aa8`](https://github.com/PrismJS/prism/commit/c5de5aa8)
1140
+ * __SAS__
1141
+ * Fixed SAS' "peerDependencies" ([#2230](https://github.com/PrismJS/prism/issues/2230)) [`7d8ff7ea`](https://github.com/PrismJS/prism/commit/7d8ff7ea)
1142
+ * __Shell session__
1143
+ * Improvements ([#2208](https://github.com/PrismJS/prism/issues/2208)) [`bd16bd57`](https://github.com/PrismJS/prism/commit/bd16bd57)
1144
+ * __Visual Basic__
1145
+ * Added support for comments with line continuations ([#2195](https://github.com/PrismJS/prism/issues/2195)) [`a7d67ca3`](https://github.com/PrismJS/prism/commit/a7d67ca3)
1146
+ * __YAML__
1147
+ * Improvements ([#2226](https://github.com/PrismJS/prism/issues/2226)) [`5362ba16`](https://github.com/PrismJS/prism/commit/5362ba16)
1148
+ * Fixed highlighting of anchors and aliases ([#2217](https://github.com/PrismJS/prism/issues/2217)) [`6124c974`](https://github.com/PrismJS/prism/commit/6124c974)
1149
+
1150
+ ### New plugins
1151
+
1152
+ * __Treeview__ ([#2265](https://github.com/PrismJS/prism/issues/2265)) [`be909b18`](https://github.com/PrismJS/prism/commit/be909b18)
1153
+
1154
+ ### Updated plugins
1155
+
1156
+ * __Inline Color__
1157
+ * Support for (semi-)transparent colors and minor improvements ([#2223](https://github.com/PrismJS/prism/issues/2223)) [`8d2c5a3e`](https://github.com/PrismJS/prism/commit/8d2c5a3e)
1158
+ * __Keep Markup__
1159
+ * Remove self & document from IIFE arguments ([#2258](https://github.com/PrismJS/prism/issues/2258)) [`3c043338`](https://github.com/PrismJS/prism/commit/3c043338)
1160
+ * __Toolbar__
1161
+ * `data-toolbar-order` is now inherited ([#2205](https://github.com/PrismJS/prism/issues/2205)) [`238f1163`](https://github.com/PrismJS/prism/commit/238f1163)
1162
+
1163
+ ### Other
1164
+
1165
+ * Updated all `String.propotype.replace` calls for literal strings [`5d7aab56`](https://github.com/PrismJS/prism/commit/5d7aab56)
1166
+ * __Core__
1167
+ * Linked list implementation for `matchGrammar` ([#1909](https://github.com/PrismJS/prism/issues/1909)) [`2d4c94cd`](https://github.com/PrismJS/prism/commit/2d4c94cd)
1168
+ * Faster `Token.stringify` ([#2171](https://github.com/PrismJS/prism/issues/2171)) [`f683972e`](https://github.com/PrismJS/prism/commit/f683972e)
1169
+ * Fixed scope problem in script mode ([#2184](https://github.com/PrismJS/prism/issues/2184)) [`984e5d2e`](https://github.com/PrismJS/prism/commit/984e5d2e)
1170
+ * __Infrastructure__
1171
+ * Travis: Updated NodeJS versions ([#2246](https://github.com/PrismJS/prism/issues/2246)) [`e635260b`](https://github.com/PrismJS/prism/commit/e635260b)
1172
+ * gulp: Inline regex source improvement ([#2227](https://github.com/PrismJS/prism/issues/2227)) [`67afc5ad`](https://github.com/PrismJS/prism/commit/67afc5ad)
1173
+ * Tests: Added new pattern check for octal escapes ([#2189](https://github.com/PrismJS/prism/issues/2189)) [`81e1c3dd`](https://github.com/PrismJS/prism/commit/81e1c3dd)
1174
+ * Tests: Fixed optional dependencies in pattern tests ([#2242](https://github.com/PrismJS/prism/issues/2242)) [`1e3070a2`](https://github.com/PrismJS/prism/commit/1e3070a2)
1175
+ * Tests: Added test for zero-width lookbehinds ([#2220](https://github.com/PrismJS/prism/issues/2220)) [`7d03ece4`](https://github.com/PrismJS/prism/commit/7d03ece4)
1176
+ * Added tests for examples ([#2216](https://github.com/PrismJS/prism/issues/2216)) [`1f7a245c`](https://github.com/PrismJS/prism/commit/1f7a245c)
1177
+ * __Website__
1178
+ * Removed invalid strings from C# example ([#2266](https://github.com/PrismJS/prism/issues/2266)) [`c917a8ca`](https://github.com/PrismJS/prism/commit/c917a8ca)
1179
+ * Fixed Diff highlight plugin page title ([#2233](https://github.com/PrismJS/prism/issues/2233)) [`a82770f8`](https://github.com/PrismJS/prism/commit/a82770f8)
1180
+ * Added link to `prism-liquibase` Bash language extension. ([#2191](https://github.com/PrismJS/prism/issues/2191)) [`0bf73dc7`](https://github.com/PrismJS/prism/commit/0bf73dc7)
1181
+ * Examples: Updated content header ([#2232](https://github.com/PrismJS/prism/issues/2232)) [`6232878b`](https://github.com/PrismJS/prism/commit/6232878b)
1182
+ * Website: Added Coy bug to the known failures page. ([#2170](https://github.com/PrismJS/prism/issues/2170)) [`e9dab85e`](https://github.com/PrismJS/prism/commit/e9dab85e)
1183
+
1184
+ ## 1.19.0 (2020-01-13)
1185
+
1186
+ ### New components
1187
+
1188
+ * __Latte__ ([#2140](https://github.com/PrismJS/prism/issues/2140)) [`694a81b8`](https://github.com/PrismJS/prism/commit/694a81b8)
1189
+ * __Neon__ ([#2140](https://github.com/PrismJS/prism/issues/2140)) [`694a81b8`](https://github.com/PrismJS/prism/commit/694a81b8)
1190
+ * __QML__ ([#2139](https://github.com/PrismJS/prism/issues/2139)) [`c40d96c6`](https://github.com/PrismJS/prism/commit/c40d96c6)
1191
+
1192
+ ### Updated components
1193
+
1194
+ * __Handlebars__
1195
+ * Added support for `:` and improved the `variable` pattern ([#2172](https://github.com/PrismJS/prism/issues/2172)) [`ef4d29d9`](https://github.com/PrismJS/prism/commit/ef4d29d9)
1196
+ * __JavaScript__
1197
+ * Added support for keywords after a spread operator ([#2148](https://github.com/PrismJS/prism/issues/2148)) [`1f3f8929`](https://github.com/PrismJS/prism/commit/1f3f8929)
1198
+ * Better regex detection ([#2158](https://github.com/PrismJS/prism/issues/2158)) [`a23d8f84`](https://github.com/PrismJS/prism/commit/a23d8f84)
1199
+ * __Markdown__
1200
+ * Better language detection for code blocks ([#2114](https://github.com/PrismJS/prism/issues/2114)) [`d7ad48f9`](https://github.com/PrismJS/prism/commit/d7ad48f9)
1201
+ * __OCaml__
1202
+ * Improvements ([#2179](https://github.com/PrismJS/prism/issues/2179)) [`2a570fd4`](https://github.com/PrismJS/prism/commit/2a570fd4)
1203
+ * __PHP__
1204
+ * Fixed exponential runtime of a pattern ([#2157](https://github.com/PrismJS/prism/issues/2157)) [`24c8f833`](https://github.com/PrismJS/prism/commit/24c8f833)
1205
+ * __React JSX__
1206
+ * Improved spread operator in tag attributes ([#2159](https://github.com/PrismJS/prism/issues/2159)) [`fd857e7b`](https://github.com/PrismJS/prism/commit/fd857e7b)
1207
+ * Made `$` a valid character for attribute names ([#2144](https://github.com/PrismJS/prism/issues/2144)) [`f018cf04`](https://github.com/PrismJS/prism/commit/f018cf04)
1208
+ * __Reason__
1209
+ * Added support for single line comments ([#2150](https://github.com/PrismJS/prism/issues/2150)) [`7f1c55b7`](https://github.com/PrismJS/prism/commit/7f1c55b7)
1210
+ * __Ruby__
1211
+ * Override 'class-name' definition ([#2135](https://github.com/PrismJS/prism/issues/2135)) [`401d4b02`](https://github.com/PrismJS/prism/commit/401d4b02)
1212
+ * __SAS__
1213
+ * Added CASL support ([#2112](https://github.com/PrismJS/prism/issues/2112)) [`99d979a0`](https://github.com/PrismJS/prism/commit/99d979a0)
1214
+
1215
+ ### Updated plugins
1216
+
1217
+ * __Custom Class__
1218
+ * Fixed TypeError when mapper is undefined ([#2167](https://github.com/PrismJS/prism/issues/2167)) [`543f04d7`](https://github.com/PrismJS/prism/commit/543f04d7)
1219
+
1220
+ ### Updated themes
1221
+
1222
+ * Added missing `.token` selector ([#2161](https://github.com/PrismJS/prism/issues/2161)) [`86780457`](https://github.com/PrismJS/prism/commit/86780457)
1223
+
1224
+ ### Other
1225
+
1226
+ * Added a check for redundant dependency declarations ([#2142](https://github.com/PrismJS/prism/issues/2142)) [`a06aca06`](https://github.com/PrismJS/prism/commit/a06aca06)
1227
+ * Added a check for examples ([#2128](https://github.com/PrismJS/prism/issues/2128)) [`0b539136`](https://github.com/PrismJS/prism/commit/0b539136)
1228
+ * Added silent option to `loadLanguages` ([#2147](https://github.com/PrismJS/prism/issues/2147)) [`191b4116`](https://github.com/PrismJS/prism/commit/191b4116)
1229
+ * __Infrastructure__
1230
+ * Dependencies: Improved `getLoader` ([#2151](https://github.com/PrismJS/prism/issues/2151)) [`199bdcae`](https://github.com/PrismJS/prism/commit/199bdcae)
1231
+ * Updated gulp to v4.0.2 ([#2178](https://github.com/PrismJS/prism/issues/2178)) [`e5678a00`](https://github.com/PrismJS/prism/commit/e5678a00)
1232
+ * __Website__
1233
+ * Custom Class: Fixed examples ([#2160](https://github.com/PrismJS/prism/issues/2160)) [`0c2fe405`](https://github.com/PrismJS/prism/commit/0c2fe405)
1234
+ * Added documentation for new dependency API ([#2141](https://github.com/PrismJS/prism/issues/2141)) [`59068d67`](https://github.com/PrismJS/prism/commit/59068d67)
1235
+
1236
+ ## 1.18.0 (2020-01-04)
1237
+
1238
+ ### New components
1239
+
1240
+ * __ANTLR4__ ([#2063](https://github.com/PrismJS/prism/issues/2063)) [`aaaa29a8`](https://github.com/PrismJS/prism/commit/aaaa29a8)
1241
+ * __AQL__ ([#2025](https://github.com/PrismJS/prism/issues/2025)) [`3fdb7d55`](https://github.com/PrismJS/prism/commit/3fdb7d55)
1242
+ * __BBcode__ ([#2095](https://github.com/PrismJS/prism/issues/2095)) [`aaf13aa6`](https://github.com/PrismJS/prism/commit/aaf13aa6)
1243
+ * __BrightScript__ ([#2096](https://github.com/PrismJS/prism/issues/2096)) [`631f1e34`](https://github.com/PrismJS/prism/commit/631f1e34)
1244
+ * __Embedded Lua templating__ ([#2050](https://github.com/PrismJS/prism/issues/2050)) [`0b771c90`](https://github.com/PrismJS/prism/commit/0b771c90)
1245
+ * __Firestore security rules__ ([#2010](https://github.com/PrismJS/prism/issues/2010)) [`9f722586`](https://github.com/PrismJS/prism/commit/9f722586)
1246
+ * __FreeMarker Template Language__ ([#2080](https://github.com/PrismJS/prism/issues/2080)) [`2f3da7e8`](https://github.com/PrismJS/prism/commit/2f3da7e8)
1247
+ * __GDScript__ ([#2006](https://github.com/PrismJS/prism/issues/2006)) [`e2b99f40`](https://github.com/PrismJS/prism/commit/e2b99f40)
1248
+ * __MoonScript__ ([#2100](https://github.com/PrismJS/prism/issues/2100)) [`f31946b3`](https://github.com/PrismJS/prism/commit/f31946b3)
1249
+ * __Robot Framework__ (only the plain text format) ([#2034](https://github.com/PrismJS/prism/issues/2034)) [`f7eaa618`](https://github.com/PrismJS/prism/commit/f7eaa618)
1250
+ * __Solidity (Ethereum)__ ([#2031](https://github.com/PrismJS/prism/issues/2031)) [`cc2cf3f7`](https://github.com/PrismJS/prism/commit/cc2cf3f7)
1251
+ * __SPARQL__ ([#2033](https://github.com/PrismJS/prism/issues/2033)) [`c42f877d`](https://github.com/PrismJS/prism/commit/c42f877d)
1252
+ * __SQF: Status Quo Function (Arma 3)__ ([#2079](https://github.com/PrismJS/prism/issues/2079)) [`cfac94ec`](https://github.com/PrismJS/prism/commit/cfac94ec)
1253
+ * __Turtle__ & __TriG__ ([#2012](https://github.com/PrismJS/prism/issues/2012)) [`508d57ac`](https://github.com/PrismJS/prism/commit/508d57ac)
1254
+ * __Zig__ ([#2019](https://github.com/PrismJS/prism/issues/2019)) [`a7cf56b7`](https://github.com/PrismJS/prism/commit/a7cf56b7)
1255
+
1256
+ ### Updated components
1257
+
1258
+ * Minor improvements for C-like and Clojure ([#2064](https://github.com/PrismJS/prism/issues/2064)) [`7db0cab3`](https://github.com/PrismJS/prism/commit/7db0cab3)
1259
+ * Inlined some unnecessary rest properties ([#2082](https://github.com/PrismJS/prism/issues/2082)) [`ad3fa443`](https://github.com/PrismJS/prism/commit/ad3fa443)
1260
+ * __AQL__
1261
+ * Disallow unclosed multiline comments again ([#2089](https://github.com/PrismJS/prism/issues/2089)) [`717ace02`](https://github.com/PrismJS/prism/commit/717ace02)
1262
+ * Allow unclosed multi-line comments ([#2058](https://github.com/PrismJS/prism/issues/2058)) [`f3c6ba59`](https://github.com/PrismJS/prism/commit/f3c6ba59)
1263
+ * More pseudo keywords ([#2055](https://github.com/PrismJS/prism/issues/2055)) [`899574eb`](https://github.com/PrismJS/prism/commit/899574eb)
1264
+ * Added missing keyword + minor improvements ([#2047](https://github.com/PrismJS/prism/issues/2047)) [`32a4c422`](https://github.com/PrismJS/prism/commit/32a4c422)
1265
+ * __Clojure__
1266
+ * Added multiline strings (lisp style) ([#2061](https://github.com/PrismJS/prism/issues/2061)) [`8ea685b8`](https://github.com/PrismJS/prism/commit/8ea685b8)
1267
+ * __CSS Extras__
1268
+ * CSS Extras & PHP: Fixed too greedy number token ([#2009](https://github.com/PrismJS/prism/issues/2009)) [`ebe363f4`](https://github.com/PrismJS/prism/commit/ebe363f4)
1269
+ * __D__
1270
+ * Fixed strings ([#2029](https://github.com/PrismJS/prism/issues/2029)) [`010a0157`](https://github.com/PrismJS/prism/commit/010a0157)
1271
+ * __Groovy__
1272
+ * Minor improvements ([#2036](https://github.com/PrismJS/prism/issues/2036)) [`fb618331`](https://github.com/PrismJS/prism/commit/fb618331)
1273
+ * __Java__
1274
+ * Added missing `::` operator ([#2101](https://github.com/PrismJS/prism/issues/2101)) [`ee7fdbee`](https://github.com/PrismJS/prism/commit/ee7fdbee)
1275
+ * Added support for new Java 13 syntax ([#2060](https://github.com/PrismJS/prism/issues/2060)) [`a7b95dd3`](https://github.com/PrismJS/prism/commit/a7b95dd3)
1276
+ * __JavaScript__
1277
+ * Added Optional Chaining and Nullish Coalescing ([#2084](https://github.com/PrismJS/prism/issues/2084)) [`fdb7de0d`](https://github.com/PrismJS/prism/commit/fdb7de0d)
1278
+ * Tokenize `:` as an operator ([#2073](https://github.com/PrismJS/prism/issues/2073)) [`0e5c48d1`](https://github.com/PrismJS/prism/commit/0e5c48d1)
1279
+ * __Less__
1280
+ * Fixed exponential backtracking ([#2016](https://github.com/PrismJS/prism/issues/2016)) [`d03d19b4`](https://github.com/PrismJS/prism/commit/d03d19b4)
1281
+ * __Markup__
1282
+ * Improved doctype pattern ([#2094](https://github.com/PrismJS/prism/issues/2094)) [`99994c58`](https://github.com/PrismJS/prism/commit/99994c58)
1283
+ * __Python__
1284
+ * Fixed decorators ([#2018](https://github.com/PrismJS/prism/issues/2018)) [`5b8a16d9`](https://github.com/PrismJS/prism/commit/5b8a16d9)
1285
+ * __Robot Framework__
1286
+ * Rename "robot-framework" to "robotframework" ([#2113](https://github.com/PrismJS/prism/issues/2113)) [`baa78774`](https://github.com/PrismJS/prism/commit/baa78774)
1287
+ * __Ruby__
1288
+ * Made `true` and `false` booleans ([#2098](https://github.com/PrismJS/prism/issues/2098)) [`68d1c472`](https://github.com/PrismJS/prism/commit/68d1c472)
1289
+ * Added missing keywords ([#2097](https://github.com/PrismJS/prism/issues/2097)) [`f460eafc`](https://github.com/PrismJS/prism/commit/f460eafc)
1290
+ * __SAS__
1291
+ * Added support for embedded Groovy and Lua code ([#2091](https://github.com/PrismJS/prism/issues/2091)) [`3640b3f2`](https://github.com/PrismJS/prism/commit/3640b3f2)
1292
+ * Minor improvements ([#2085](https://github.com/PrismJS/prism/issues/2085)) [`07020c7a`](https://github.com/PrismJS/prism/commit/07020c7a)
1293
+ * Fixed `proc-args` token by removing backreferences from string pattern ([#2013](https://github.com/PrismJS/prism/issues/2013)) [`af5a36ae`](https://github.com/PrismJS/prism/commit/af5a36ae)
1294
+ * Major improvements ([#1981](https://github.com/PrismJS/prism/issues/1981)) [`076f6155`](https://github.com/PrismJS/prism/commit/076f6155)
1295
+ * __Smalltalk__
1296
+ * Fixed single quote character literal ([#2041](https://github.com/PrismJS/prism/issues/2041)) [`1aabcd17`](https://github.com/PrismJS/prism/commit/1aabcd17)
1297
+ * __Turtle__
1298
+ * Minor improvements ([#2038](https://github.com/PrismJS/prism/issues/2038)) [`8ccd258b`](https://github.com/PrismJS/prism/commit/8ccd258b)
1299
+ * __TypeScript__
1300
+ * Added missing keyword `undefined` ([#2088](https://github.com/PrismJS/prism/issues/2088)) [`c8b48b9f`](https://github.com/PrismJS/prism/commit/c8b48b9f)
1301
+
1302
+ ### Updated plugins
1303
+
1304
+ * New Match Braces plugin ([#1944](https://github.com/PrismJS/prism/issues/1944)) [`365faade`](https://github.com/PrismJS/prism/commit/365faade)
1305
+ * New Inline color plugin ([#2007](https://github.com/PrismJS/prism/issues/2007)) [`8403e453`](https://github.com/PrismJS/prism/commit/8403e453)
1306
+ * New Filter highlightAll plugin ([#2074](https://github.com/PrismJS/prism/issues/2074)) [`a7f70090`](https://github.com/PrismJS/prism/commit/a7f70090)
1307
+ * __Custom Class__
1308
+ * New class adder feature ([#2075](https://github.com/PrismJS/prism/issues/2075)) [`dab7998e`](https://github.com/PrismJS/prism/commit/dab7998e)
1309
+ * __File Highlight__
1310
+ * Made the download button its own plugin ([#1840](https://github.com/PrismJS/prism/issues/1840)) [`c6c62a69`](https://github.com/PrismJS/prism/commit/c6c62a69)
1311
+
1312
+ ### Other
1313
+
1314
+ * Issue template improvements ([#2069](https://github.com/PrismJS/prism/issues/2069)) [`53f07b1b`](https://github.com/PrismJS/prism/commit/53f07b1b)
1315
+ * Readme: Links now use HTTPS if available ([#2045](https://github.com/PrismJS/prism/issues/2045)) [`6cd0738a`](https://github.com/PrismJS/prism/commit/6cd0738a)
1316
+ * __Core__
1317
+ * Fixed null reference ([#2106](https://github.com/PrismJS/prism/issues/2106)) [`0fd062d5`](https://github.com/PrismJS/prism/commit/0fd062d5)
1318
+ * Fixed race condition caused by deferring the script ([#2103](https://github.com/PrismJS/prism/issues/2103)) [`a3785ec9`](https://github.com/PrismJS/prism/commit/a3785ec9)
1319
+ * Minor improvements ([#1973](https://github.com/PrismJS/prism/issues/1973)) [`2d858e0a`](https://github.com/PrismJS/prism/commit/2d858e0a)
1320
+ * Fixed greedy partial lookbehinds not working ([#2030](https://github.com/PrismJS/prism/issues/2030)) [`174ed103`](https://github.com/PrismJS/prism/commit/174ed103)
1321
+ * Fixed greedy targeting bug ([#1932](https://github.com/PrismJS/prism/issues/1932)) [`e864d518`](https://github.com/PrismJS/prism/commit/e864d518)
1322
+ * Doubly check the `manual` flag ([#1957](https://github.com/PrismJS/prism/issues/1957)) [`d49f0f26`](https://github.com/PrismJS/prism/commit/d49f0f26)
1323
+ * IE11 workaround for `currentScript` ([#2104](https://github.com/PrismJS/prism/issues/2104)) [`2108c60f`](https://github.com/PrismJS/prism/commit/2108c60f)
1324
+ * __Infrastructure__
1325
+ * gulp: Fixed changes task [`2f495905`](https://github.com/PrismJS/prism/commit/2f495905)
1326
+ * npm: Added `.github` folder to npm ignore ([#2052](https://github.com/PrismJS/prism/issues/2052)) [`1af89e06`](https://github.com/PrismJS/prism/commit/1af89e06)
1327
+ * npm: Updated dependencies to fix 122 vulnerabilities ([#1997](https://github.com/PrismJS/prism/issues/1997)) [`3af5d744`](https://github.com/PrismJS/prism/commit/3af5d744)
1328
+ * Tests: New test for unused capturing groups ([#1996](https://github.com/PrismJS/prism/issues/1996)) [`c187e229`](https://github.com/PrismJS/prism/commit/c187e229)
1329
+ * Tests: Simplified error message format ([#2056](https://github.com/PrismJS/prism/issues/2056)) [`007c9af4`](https://github.com/PrismJS/prism/commit/007c9af4)
1330
+ * Tests: New test for nice names ([#1911](https://github.com/PrismJS/prism/issues/1911)) [`3fda5c95`](https://github.com/PrismJS/prism/commit/3fda5c95)
1331
+ * Standardized dependency logic implementation ([#1998](https://github.com/PrismJS/prism/issues/1998)) [`7a4a0c7c`](https://github.com/PrismJS/prism/commit/7a4a0c7c)
1332
+ * __Website__
1333
+ * Added @mAAdhaTTah and @RunDevelopment to credits and footer [`5d07aa7c`](https://github.com/PrismJS/prism/commit/5d07aa7c)
1334
+ * Added plugin descriptions to plugin list ([#2076](https://github.com/PrismJS/prism/issues/2076)) [`cdfa60ac`](https://github.com/PrismJS/prism/commit/cdfa60ac)
1335
+ * Use HTTPS link to alistapart.com ([#2044](https://github.com/PrismJS/prism/issues/2044)) [`8bcc1b85`](https://github.com/PrismJS/prism/commit/8bcc1b85)
1336
+ * Fixed the Toolbar plugin's overflow issue ([#1966](https://github.com/PrismJS/prism/issues/1966)) [`56a8711c`](https://github.com/PrismJS/prism/commit/56a8711c)
1337
+ * FAQ update ([#1977](https://github.com/PrismJS/prism/issues/1977)) [`8a572af5`](https://github.com/PrismJS/prism/commit/8a572af5)
1338
+ * Use modern JavaScript in the NodeJS usage section ([#1942](https://github.com/PrismJS/prism/issues/1942)) [`5c68a556`](https://github.com/PrismJS/prism/commit/5c68a556)
1339
+ * Improved test page performance for Chromium ([#2020](https://github.com/PrismJS/prism/issues/2020)) [`3509f3e5`](https://github.com/PrismJS/prism/commit/3509f3e5)
1340
+ * Fixed alias example in extending page ([#2011](https://github.com/PrismJS/prism/issues/2011)) [`7cb65eec`](https://github.com/PrismJS/prism/commit/7cb65eec)
1341
+ * Robot Framework: Renamed example file ([#2126](https://github.com/PrismJS/prism/issues/2126)) [`9908ca69`](https://github.com/PrismJS/prism/commit/9908ca69)
1342
+
1343
+ ## 1.17.1 (2019-07-21)
1344
+
1345
+ ### Other
1346
+
1347
+ * __Infrastructure__
1348
+ * Add .DS_Store to npmignore [`c2229ec2`](https://github.com/PrismJS/prism/commit/c2229ec2)
1349
+
1350
+ ## 1.17.0 (2019-07-21)
1351
+
1352
+ ### New components
1353
+
1354
+ * __DNS zone file__ ([#1961](https://github.com/PrismJS/prism/issues/1961)) [`bb84f98c`](https://github.com/PrismJS/prism/commit/bb84f98c)
1355
+ * __JQ__ ([#1896](https://github.com/PrismJS/prism/issues/1896)) [`73d964be`](https://github.com/PrismJS/prism/commit/73d964be)
1356
+ * __JS Templates__: Syntax highlighting inside tagged template literals ([#1931](https://github.com/PrismJS/prism/issues/1931)) [`c8844286`](https://github.com/PrismJS/prism/commit/c8844286)
1357
+ * __LilyPond__ ([#1967](https://github.com/PrismJS/prism/issues/1967)) [`5d992fc5`](https://github.com/PrismJS/prism/commit/5d992fc5)
1358
+ * __PascaLIGO__ ([#1947](https://github.com/PrismJS/prism/issues/1947)) [`858201c7`](https://github.com/PrismJS/prism/commit/858201c7)
1359
+ * __PC-Axis__ ([#1940](https://github.com/PrismJS/prism/issues/1940)) [`473f7fbd`](https://github.com/PrismJS/prism/commit/473f7fbd)
1360
+ * __Shell session__ ([#1892](https://github.com/PrismJS/prism/issues/1892)) [`96044979`](https://github.com/PrismJS/prism/commit/96044979)
1361
+ * __Splunk SPL__ ([#1962](https://github.com/PrismJS/prism/issues/1962)) [`c93c066b`](https://github.com/PrismJS/prism/commit/c93c066b)
1362
+
1363
+ ### New plugins
1364
+
1365
+ * __Diff Highlight__: Syntax highlighting inside diff blocks ([#1889](https://github.com/PrismJS/prism/issues/1889)) [`e7702ae1`](https://github.com/PrismJS/prism/commit/e7702ae1)
1366
+
1367
+ ### Updated components
1368
+
1369
+ * __Bash__
1370
+ * Major improvements ([#1443](https://github.com/PrismJS/prism/issues/1443)) [`363281b3`](https://github.com/PrismJS/prism/commit/363281b3)
1371
+ * __C#__
1372
+ * Added `cs` alias ([#1899](https://github.com/PrismJS/prism/issues/1899)) [`a8164559`](https://github.com/PrismJS/prism/commit/a8164559)
1373
+ * __C++__
1374
+ * Fixed number pattern ([#1887](https://github.com/PrismJS/prism/issues/1887)) [`3de29e72`](https://github.com/PrismJS/prism/commit/3de29e72)
1375
+ * __CSS__
1376
+ * Extended `url` inside ([#1874](https://github.com/PrismJS/prism/issues/1874)) [`f0a10669`](https://github.com/PrismJS/prism/commit/f0a10669)
1377
+ * Removed unnecessary flag and modifier ([#1875](https://github.com/PrismJS/prism/issues/1875)) [`74050c68`](https://github.com/PrismJS/prism/commit/74050c68)
1378
+ * __CSS Extras__
1379
+ * Added `even` & `odd` keywords to `n-th` pattern ([#1872](https://github.com/PrismJS/prism/issues/1872)) [`5e5a3e00`](https://github.com/PrismJS/prism/commit/5e5a3e00)
1380
+ * __F#__
1381
+ * Improved character literals ([#1956](https://github.com/PrismJS/prism/issues/1956)) [`d58d2aeb`](https://github.com/PrismJS/prism/commit/d58d2aeb)
1382
+ * __JavaScript__
1383
+ * Fixed escaped template interpolation ([#1931](https://github.com/PrismJS/prism/issues/1931)) [`c8844286`](https://github.com/PrismJS/prism/commit/c8844286)
1384
+ * Added support for private fields ([#1950](https://github.com/PrismJS/prism/issues/1950)) [`7bd08327`](https://github.com/PrismJS/prism/commit/7bd08327)
1385
+ * Added support for numeric separators ([#1895](https://github.com/PrismJS/prism/issues/1895)) [`6068bf18`](https://github.com/PrismJS/prism/commit/6068bf18)
1386
+ * Increased bracket count of interpolation expressions in template strings ([#1845](https://github.com/PrismJS/prism/issues/1845)) [`c13d6e7d`](https://github.com/PrismJS/prism/commit/c13d6e7d)
1387
+ * Added support for the `s` regex flag ([#1846](https://github.com/PrismJS/prism/issues/1846)) [`9e164935`](https://github.com/PrismJS/prism/commit/9e164935)
1388
+ * Formatting: Added missing semicolon ([#1856](https://github.com/PrismJS/prism/issues/1856)) [`e2683959`](https://github.com/PrismJS/prism/commit/e2683959)
1389
+ * __JSON__
1390
+ * Kinda fixed comment issue ([#1853](https://github.com/PrismJS/prism/issues/1853)) [`cbe05ec3`](https://github.com/PrismJS/prism/commit/cbe05ec3)
1391
+ * __Julia__
1392
+ * Added `struct` keyword ([#1941](https://github.com/PrismJS/prism/issues/1941)) [`feb1b6f5`](https://github.com/PrismJS/prism/commit/feb1b6f5)
1393
+ * Highlight `Inf` and `NaN` as constants ([#1921](https://github.com/PrismJS/prism/issues/1921)) [`2141129f`](https://github.com/PrismJS/prism/commit/2141129f)
1394
+ * Added `in` keyword ([#1918](https://github.com/PrismJS/prism/issues/1918)) [`feb3187f`](https://github.com/PrismJS/prism/commit/feb3187f)
1395
+ * __LaTeX__
1396
+ * Added TeX and ConTeXt alias ([#1915](https://github.com/PrismJS/prism/issues/1915)) [`5ad58a75`](https://github.com/PrismJS/prism/commit/5ad58a75)
1397
+ * Added support for $$ equations [`6f53f749`](https://github.com/PrismJS/prism/commit/6f53f749)
1398
+ * __Markdown__
1399
+ * Markdown: Added support for auto-loading code block languages ([#1898](https://github.com/PrismJS/prism/issues/1898)) [`05823e88`](https://github.com/PrismJS/prism/commit/05823e88)
1400
+ * Improved URLs ([#1955](https://github.com/PrismJS/prism/issues/1955)) [`b9ec6fd8`](https://github.com/PrismJS/prism/commit/b9ec6fd8)
1401
+ * Added support for nested bold and italic expressions ([#1897](https://github.com/PrismJS/prism/issues/1897)) [`11903721`](https://github.com/PrismJS/prism/commit/11903721)
1402
+ * Added support for tables ([#1848](https://github.com/PrismJS/prism/issues/1848)) [`cedb8e84`](https://github.com/PrismJS/prism/commit/cedb8e84)
1403
+ * __Perl__
1404
+ * Added `return` keyword ([#1943](https://github.com/PrismJS/prism/issues/1943)) [`2f39de97`](https://github.com/PrismJS/prism/commit/2f39de97)
1405
+ * __Protocol Buffers__
1406
+ * Full support for PB2 and PB3 syntax + numerous other improvements ([#1948](https://github.com/PrismJS/prism/issues/1948)) [`de10bd1d`](https://github.com/PrismJS/prism/commit/de10bd1d)
1407
+ * __reST (reStructuredText)__
1408
+ * Fixed exponentially backtracking pattern ([#1986](https://github.com/PrismJS/prism/issues/1986)) [`8b5d67a3`](https://github.com/PrismJS/prism/commit/8b5d67a3)
1409
+ * __Rust__
1410
+ * Added `async` and `await` keywords. ([#1882](https://github.com/PrismJS/prism/issues/1882)) [`4faa3314`](https://github.com/PrismJS/prism/commit/4faa3314)
1411
+ * Improved punctuation and operators ([#1839](https://github.com/PrismJS/prism/issues/1839)) [`a42b1557`](https://github.com/PrismJS/prism/commit/a42b1557)
1412
+ * __Sass (Scss)__
1413
+ * Fixed exponential url pattern ([#1938](https://github.com/PrismJS/prism/issues/1938)) [`4b6b6e8b`](https://github.com/PrismJS/prism/commit/4b6b6e8b)
1414
+ * __Scheme__
1415
+ * Added support for rational number literals ([#1964](https://github.com/PrismJS/prism/issues/1964)) [`e8811d22`](https://github.com/PrismJS/prism/commit/e8811d22)
1416
+ * __TOML__
1417
+ * Minor improvements ([#1917](https://github.com/PrismJS/prism/issues/1917)) [`3e181241`](https://github.com/PrismJS/prism/commit/3e181241)
1418
+ * __Visual Basic__
1419
+ * Added support for interpolation strings ([#1971](https://github.com/PrismJS/prism/issues/1971)) [`4a2c90c1`](https://github.com/PrismJS/prism/commit/4a2c90c1)
1420
+
1421
+ ### Updated plugins
1422
+
1423
+ * __Autolinker__
1424
+ * Improved component path guessing ([#1928](https://github.com/PrismJS/prism/issues/1928)) [`452d5c7d`](https://github.com/PrismJS/prism/commit/452d5c7d)
1425
+ * Improved URL regex ([#1842](https://github.com/PrismJS/prism/issues/1842)) [`eb28b62b`](https://github.com/PrismJS/prism/commit/eb28b62b)
1426
+ * __Autoloader__
1427
+ * Fixed and improved callbacks ([#1935](https://github.com/PrismJS/prism/issues/1935)) [`b19f512f`](https://github.com/PrismJS/prism/commit/b19f512f)
1428
+ * __Command Line__
1429
+ * Fix for uncaught errors for empty 'commandLine' object. ([#1862](https://github.com/PrismJS/prism/issues/1862)) [`c24831b5`](https://github.com/PrismJS/prism/commit/c24831b5)
1430
+ * __Copy to Clipboard Button__
1431
+ * Switch anchor to button ([#1926](https://github.com/PrismJS/prism/issues/1926)) [`79880197`](https://github.com/PrismJS/prism/commit/79880197)
1432
+ * __Custom Class__
1433
+ * Added mapper functions for language specific transformations ([#1873](https://github.com/PrismJS/prism/issues/1873)) [`acceb3b5`](https://github.com/PrismJS/prism/commit/acceb3b5)
1434
+ * __Line Highlight__
1435
+ * Batching DOM read/writes to avoid reflows ([#1865](https://github.com/PrismJS/prism/issues/1865)) [`632ce00c`](https://github.com/PrismJS/prism/commit/632ce00c)
1436
+ * __Toolbar__
1437
+ * Added `className` option for toolbar items ([#1951](https://github.com/PrismJS/prism/issues/1951)) [`5ab28bbe`](https://github.com/PrismJS/prism/commit/5ab28bbe)
1438
+ * Set opacity to 1 when focus is within ([#1927](https://github.com/PrismJS/prism/issues/1927)) [`0b1662dd`](https://github.com/PrismJS/prism/commit/0b1662dd)
1439
+
1440
+ ### Updated themes
1441
+
1442
+ * __Funky__
1443
+ * Fixed typo ([#1960](https://github.com/PrismJS/prism/issues/1960)) [`7d056591`](https://github.com/PrismJS/prism/commit/7d056591)
1444
+
1445
+ ### Other
1446
+
1447
+ * README: Added npm downloads badge ([#1934](https://github.com/PrismJS/prism/issues/1934)) [`d673d701`](https://github.com/PrismJS/prism/commit/d673d701)
1448
+ * README: Minor changes ([#1857](https://github.com/PrismJS/prism/issues/1857)) [`77e403cb`](https://github.com/PrismJS/prism/commit/77e403cb)
1449
+ * Clearer description for the highlighting bug report template ([#1850](https://github.com/PrismJS/prism/issues/1850)) [`2f9c9261`](https://github.com/PrismJS/prism/commit/2f9c9261)
1450
+ * More language examples ([#1917](https://github.com/PrismJS/prism/issues/1917)) [`3e181241`](https://github.com/PrismJS/prism/commit/3e181241)
1451
+ * __Core__
1452
+ * Removed `env.elements` from `before-highlightall` hook ([#1968](https://github.com/PrismJS/prism/issues/1968)) [`9d9e2ca4`](https://github.com/PrismJS/prism/commit/9d9e2ca4)
1453
+ * Made `language-none` the default language ([#1858](https://github.com/PrismJS/prism/issues/1858)) [`fd691c52`](https://github.com/PrismJS/prism/commit/fd691c52)
1454
+ * Removed `parent` from the `wrap` hook's environment ([#1837](https://github.com/PrismJS/prism/issues/1837)) [`65a4e894`](https://github.com/PrismJS/prism/commit/65a4e894)
1455
+ * __Infrastructure__
1456
+ * gulp: Split `gulpfile.js` and expanded `changes` task ([#1835](https://github.com/PrismJS/prism/issues/1835)) [`033c5ad8`](https://github.com/PrismJS/prism/commit/033c5ad8)
1457
+ * gulp: JSON formatting for partly generated files ([#1933](https://github.com/PrismJS/prism/issues/1933)) [`d4373f3a`](https://github.com/PrismJS/prism/commit/d4373f3a)
1458
+ * gulp: Use `async` functions & drop testing on Node v6 ([#1783](https://github.com/PrismJS/prism/issues/1783)) [`0dd44d53`](https://github.com/PrismJS/prism/commit/0dd44d53)
1459
+ * Tests: `lookbehind` test for patterns ([#1890](https://github.com/PrismJS/prism/issues/1890)) [`3ba786cd`](https://github.com/PrismJS/prism/commit/3ba786cd)
1460
+ * Tests: Added test for empty regexes ([#1847](https://github.com/PrismJS/prism/issues/1847)) [`c1e6a7fd`](https://github.com/PrismJS/prism/commit/c1e6a7fd)
1461
+ * __Website__
1462
+ * Added tutorial for using PrismJS with React ([#1979](https://github.com/PrismJS/prism/issues/1979)) [`f1e16c7b`](https://github.com/PrismJS/prism/commit/f1e16c7b)
1463
+ * Update footer's GitHub repository URL and capitalisation of "GitHub" ([#1983](https://github.com/PrismJS/prism/issues/1983)) [`bab744a6`](https://github.com/PrismJS/prism/commit/bab744a6)
1464
+ * Added known failures page ([#1876](https://github.com/PrismJS/prism/issues/1876)) [`36a5fa0e`](https://github.com/PrismJS/prism/commit/36a5fa0e)
1465
+ * Added basic usage for CDNs ([#1924](https://github.com/PrismJS/prism/issues/1924)) [`922ec555`](https://github.com/PrismJS/prism/commit/922ec555)
1466
+ * New tutorial for Drupal ([#1859](https://github.com/PrismJS/prism/issues/1859)) [`d2089d83`](https://github.com/PrismJS/prism/commit/d2089d83)
1467
+ * Updated website page styles to not interfere with themes ([#1952](https://github.com/PrismJS/prism/issues/1952)) [`b6543853`](https://github.com/PrismJS/prism/commit/b6543853)
1468
+ * Download page: Improved performance for Chromium-based browsers ([#1907](https://github.com/PrismJS/prism/issues/1907)) [`11f18e36`](https://github.com/PrismJS/prism/commit/11f18e36)
1469
+ * Download page: Fixed Edge's word wrap ([#1920](https://github.com/PrismJS/prism/issues/1920)) [`5d191b92`](https://github.com/PrismJS/prism/commit/5d191b92)
1470
+ * Examples page: Minor improvements ([#1919](https://github.com/PrismJS/prism/issues/1919)) [`a16d4a25`](https://github.com/PrismJS/prism/commit/a16d4a25)
1471
+ * Extending page: Fixed typo + new alias section ([#1949](https://github.com/PrismJS/prism/issues/1949)) [`24c8e717`](https://github.com/PrismJS/prism/commit/24c8e717)
1472
+ * Extending page: Added "Creating a new language definition" section ([#1925](https://github.com/PrismJS/prism/issues/1925)) [`ddf81233`](https://github.com/PrismJS/prism/commit/ddf81233)
1473
+ * Test page: Use `prism-core.js` instead of `prism.js` ([#1908](https://github.com/PrismJS/prism/issues/1908)) [`0853e694`](https://github.com/PrismJS/prism/commit/0853e694)
1474
+ * Copy to clipboard: Fixed typo ([#1869](https://github.com/PrismJS/prism/issues/1869)) [`59d4323f`](https://github.com/PrismJS/prism/commit/59d4323f)
1475
+ * JSONP Highlight: Fixed examples ([#1877](https://github.com/PrismJS/prism/issues/1877)) [`f8ae465d`](https://github.com/PrismJS/prism/commit/f8ae465d)
1476
+ * Line numbers: Fixed typo on webpage ([#1838](https://github.com/PrismJS/prism/issues/1838)) [`0f16eb87`](https://github.com/PrismJS/prism/commit/0f16eb87)
1477
+
1478
+ ## 1.16.0 (2019-03-24)
1479
+
1480
+ ### New components
1481
+
1482
+ * __ANBF__ ([#1753](https://github.com/PrismJS/prism/issues/1753)) [`6d98f0e7`](https://github.com/PrismJS/prism/commit/6d98f0e7)
1483
+ * __BNF__ & __RBNF__ ([#1754](https://github.com/PrismJS/prism/issues/1754)) [`1df96c55`](https://github.com/PrismJS/prism/commit/1df96c55)
1484
+ * __CIL__ ([#1593](https://github.com/PrismJS/prism/issues/1593)) [`38def334`](https://github.com/PrismJS/prism/commit/38def334)
1485
+ * __CMake__ ([#1820](https://github.com/PrismJS/prism/issues/1820)) [`30779976`](https://github.com/PrismJS/prism/commit/30779976)
1486
+ * __Doc comment__ ([#1541](https://github.com/PrismJS/prism/issues/1541)) [`493d19ef`](https://github.com/PrismJS/prism/commit/493d19ef)
1487
+ * __EBNF__ ([#1756](https://github.com/PrismJS/prism/issues/1756)) [`13e1c97d`](https://github.com/PrismJS/prism/commit/13e1c97d)
1488
+ * __EJS__ ([#1769](https://github.com/PrismJS/prism/issues/1769)) [`c37c90df`](https://github.com/PrismJS/prism/commit/c37c90df)
1489
+ * __G-code__ ([#1572](https://github.com/PrismJS/prism/issues/1572)) [`2288c25e`](https://github.com/PrismJS/prism/commit/2288c25e)
1490
+ * __GameMaker Language__ ([#1551](https://github.com/PrismJS/prism/issues/1551)) [`e529edd8`](https://github.com/PrismJS/prism/commit/e529edd8)
1491
+ * __HCL__ ([#1594](https://github.com/PrismJS/prism/issues/1594)) [`c939df8e`](https://github.com/PrismJS/prism/commit/c939df8e)
1492
+ * __Java stack trace__ ([#1520](https://github.com/PrismJS/prism/issues/1520)) [`4a8219a4`](https://github.com/PrismJS/prism/commit/4a8219a4)
1493
+ * __JavaScript Extras__ ([#1743](https://github.com/PrismJS/prism/issues/1743)) [`bb628606`](https://github.com/PrismJS/prism/commit/bb628606)
1494
+ * __JSON5__ ([#1744](https://github.com/PrismJS/prism/issues/1744)) [`64dc049d`](https://github.com/PrismJS/prism/commit/64dc049d)
1495
+ * __N1QL__ ([#1620](https://github.com/PrismJS/prism/issues/1620)) [`7def8f5c`](https://github.com/PrismJS/prism/commit/7def8f5c)
1496
+ * __Nand To Tetris HDL__ ([#1710](https://github.com/PrismJS/prism/issues/1710)) [`b94b56c1`](https://github.com/PrismJS/prism/commit/b94b56c1)
1497
+ * __Regex__ ([#1682](https://github.com/PrismJS/prism/issues/1682)) [`571704cb`](https://github.com/PrismJS/prism/commit/571704cb)
1498
+ * __T4__ ([#1699](https://github.com/PrismJS/prism/issues/1699)) [`16f2ad06`](https://github.com/PrismJS/prism/commit/16f2ad06)
1499
+ * __TOML__ ([#1488](https://github.com/PrismJS/prism/issues/1488)) [`5b6ad70d`](https://github.com/PrismJS/prism/commit/5b6ad70d)
1500
+ * __Vala__ ([#1658](https://github.com/PrismJS/prism/issues/1658)) [`b48c012c`](https://github.com/PrismJS/prism/commit/b48c012c)
1501
+
1502
+ ### Updated components
1503
+
1504
+ * Fixed dependencies of Pug and Pure ([#1759](https://github.com/PrismJS/prism/issues/1759)) [`c9a32674`](https://github.com/PrismJS/prism/commit/c9a32674)
1505
+ * Add file extensions support for major languages ([#1478](https://github.com/PrismJS/prism/issues/1478)) [`0c8f6504`](https://github.com/PrismJS/prism/commit/0c8f6504)
1506
+ * Fixed patterns which can match the empty string ([#1775](https://github.com/PrismJS/prism/issues/1775)) [`86dd3e42`](https://github.com/PrismJS/prism/commit/86dd3e42)
1507
+ * More variables for better code compression ([#1489](https://github.com/PrismJS/prism/issues/1489)) [`bc53e093`](https://github.com/PrismJS/prism/commit/bc53e093)
1508
+ * Added missing aliases ([#1830](https://github.com/PrismJS/prism/issues/1830)) [`8d28c74c`](https://github.com/PrismJS/prism/commit/8d28c74c)
1509
+ * Replaced all occurrences of `new RegExp` with `RegExp` ([#1493](https://github.com/PrismJS/prism/issues/1493)) [`44fed4d3`](https://github.com/PrismJS/prism/commit/44fed4d3)
1510
+ * Added missing aliases to components.json ([#1503](https://github.com/PrismJS/prism/issues/1503)) [`2fb66e04`](https://github.com/PrismJS/prism/commit/2fb66e04)
1511
+ * __Apacheconf__
1512
+ * Apache config: Minor improvements + new keyword ([#1823](https://github.com/PrismJS/prism/issues/1823)) [`a91be7b2`](https://github.com/PrismJS/prism/commit/a91be7b2)
1513
+ * __AsciiDoc__
1514
+ * Added `adoc` alias for AsciiDoc ([#1685](https://github.com/PrismJS/prism/issues/1685)) [`88434f7a`](https://github.com/PrismJS/prism/commit/88434f7a)
1515
+ * __Bash__
1516
+ * Add additional commands to bash ([#1577](https://github.com/PrismJS/prism/issues/1577)) [`a2230c38`](https://github.com/PrismJS/prism/commit/a2230c38)
1517
+ * Added `yarn add` to bash functions ([#1731](https://github.com/PrismJS/prism/issues/1731)) [`3a32cb75`](https://github.com/PrismJS/prism/commit/3a32cb75)
1518
+ * Added `pnpm` function to Bash ([#1734](https://github.com/PrismJS/prism/issues/1734)) [`fccfb98d`](https://github.com/PrismJS/prism/commit/fccfb98d)
1519
+ * __Batch__
1520
+ * Remove batch's shell alias ([#1543](https://github.com/PrismJS/prism/issues/1543)) [`7155e60f`](https://github.com/PrismJS/prism/commit/7155e60f)
1521
+ * __C__
1522
+ * Improve C language ([#1697](https://github.com/PrismJS/prism/issues/1697)) [`7eccea5c`](https://github.com/PrismJS/prism/commit/7eccea5c)
1523
+ * __C-like__
1524
+ * Simplify function pattern of C-like language ([#1552](https://github.com/PrismJS/prism/issues/1552)) [`b520e1b6`](https://github.com/PrismJS/prism/commit/b520e1b6)
1525
+ * __C/C++/Java__
1526
+ * Operator fixes ([#1528](https://github.com/PrismJS/prism/issues/1528)) [`7af8f8be`](https://github.com/PrismJS/prism/commit/7af8f8be)
1527
+ * __C#__
1528
+ * Improvements to C# operator and punctuation ([#1532](https://github.com/PrismJS/prism/issues/1532)) [`3b1e0916`](https://github.com/PrismJS/prism/commit/3b1e0916)
1529
+ * __CSS__
1530
+ * Fix tokenizing !important ([#1585](https://github.com/PrismJS/prism/issues/1585)) [`c1d6cb85`](https://github.com/PrismJS/prism/commit/c1d6cb85)
1531
+ * Added the comma to the list of CSS punctuation [`7ea2ff28`](https://github.com/PrismJS/prism/commit/7ea2ff28)
1532
+ * CSS: Comma punctuation ([#1632](https://github.com/PrismJS/prism/issues/1632)) [`1b812386`](https://github.com/PrismJS/prism/commit/1b812386)
1533
+ * Reuse CSS selector pattern in CSS Extras ([#1637](https://github.com/PrismJS/prism/issues/1637)) [`e2f2fd19`](https://github.com/PrismJS/prism/commit/e2f2fd19)
1534
+ * Fixed CSS extra variable ([#1649](https://github.com/PrismJS/prism/issues/1649)) [`9de47d3a`](https://github.com/PrismJS/prism/commit/9de47d3a)
1535
+ * Identify CSS units and variables ([#1450](https://github.com/PrismJS/prism/issues/1450)) [`5fcee966`](https://github.com/PrismJS/prism/commit/5fcee966)
1536
+ * Allow multiline CSS at-rules ([#1676](https://github.com/PrismJS/prism/issues/1676)) [`4f6f3c7d`](https://github.com/PrismJS/prism/commit/4f6f3c7d)
1537
+ * CSS: Highlight attribute selector ([#1671](https://github.com/PrismJS/prism/issues/1671)) [`245b59d4`](https://github.com/PrismJS/prism/commit/245b59d4)
1538
+ * CSS: Selectors can contain any string ([#1638](https://github.com/PrismJS/prism/issues/1638)) [`a2d445d0`](https://github.com/PrismJS/prism/commit/a2d445d0)
1539
+ * CSS extras: Highlighting for pseudo class arguments ([#1650](https://github.com/PrismJS/prism/issues/1650)) [`70a40414`](https://github.com/PrismJS/prism/commit/70a40414)
1540
+ * __Django__
1541
+ * Django/Jinja2 improvements ([#1800](https://github.com/PrismJS/prism/issues/1800)) [`f2467488`](https://github.com/PrismJS/prism/commit/f2467488)
1542
+ * __F#__
1543
+ * Chars can only contain one character ([#1570](https://github.com/PrismJS/prism/issues/1570)) [`f96b083a`](https://github.com/PrismJS/prism/commit/f96b083a)
1544
+ * Improve F# ([#1573](https://github.com/PrismJS/prism/issues/1573)) [`00bfc969`](https://github.com/PrismJS/prism/commit/00bfc969)
1545
+ * __GraphQL__
1546
+ * Improved field highlighting for GraphQL ([#1711](https://github.com/PrismJS/prism/issues/1711)) [`44aeffb9`](https://github.com/PrismJS/prism/commit/44aeffb9)
1547
+ * Added GraphQL improvements and tests ([#1788](https://github.com/PrismJS/prism/issues/1788)) [`b2298b12`](https://github.com/PrismJS/prism/commit/b2298b12)
1548
+ * __Haskell__
1549
+ * Added `hs` alias for Haskell ([#1831](https://github.com/PrismJS/prism/issues/1831)) [`64baec3c`](https://github.com/PrismJS/prism/commit/64baec3c)
1550
+ * __HTTP__
1551
+ * Improved HTTP content highlighting ([#1598](https://github.com/PrismJS/prism/issues/1598)) [`1b75da90`](https://github.com/PrismJS/prism/commit/1b75da90)
1552
+ * __Ini__
1553
+ * Add support for # comments to INI language ([#1730](https://github.com/PrismJS/prism/issues/1730)) [`baf6bb0c`](https://github.com/PrismJS/prism/commit/baf6bb0c)
1554
+ * __Java__
1555
+ * Add Java 10 support ([#1549](https://github.com/PrismJS/prism/issues/1549)) [`8c981a22`](https://github.com/PrismJS/prism/commit/8c981a22)
1556
+ * Added module keywords to Java. ([#1655](https://github.com/PrismJS/prism/issues/1655)) [`6e250a5f`](https://github.com/PrismJS/prism/commit/6e250a5f)
1557
+ * Improve Java ([#1474](https://github.com/PrismJS/prism/issues/1474)) [`81bd8f0b`](https://github.com/PrismJS/prism/commit/81bd8f0b)
1558
+ * __JavaScript__
1559
+ * Fix regex for `catch` and `finally` ([#1527](https://github.com/PrismJS/prism/issues/1527)) [`ebd1b9a6`](https://github.com/PrismJS/prism/commit/ebd1b9a6)
1560
+ * Highlighting of supposed classes and functions ([#1482](https://github.com/PrismJS/prism/issues/1482)) [`c40f6047`](https://github.com/PrismJS/prism/commit/c40f6047)
1561
+ * Added support for JS BigInt literals ([#1542](https://github.com/PrismJS/prism/issues/1542)) [`2b62e57b`](https://github.com/PrismJS/prism/commit/2b62e57b)
1562
+ * Fixed lowercase supposed class names ([#1544](https://github.com/PrismJS/prism/issues/1544)) [`a47c05ad`](https://github.com/PrismJS/prism/commit/a47c05ad)
1563
+ * Fixes regex for JS examples ([#1591](https://github.com/PrismJS/prism/issues/1591)) [`b41fb8f1`](https://github.com/PrismJS/prism/commit/b41fb8f1)
1564
+ * Improve regex detection in JS ([#1473](https://github.com/PrismJS/prism/issues/1473)) [`2a4758ab`](https://github.com/PrismJS/prism/commit/2a4758ab)
1565
+ * Identify JavaScript function parameters ([#1446](https://github.com/PrismJS/prism/issues/1446)) [`0cc8c56a`](https://github.com/PrismJS/prism/commit/0cc8c56a)
1566
+ * Improved JavaScript parameter recognization ([#1722](https://github.com/PrismJS/prism/issues/1722)) [`57a92035`](https://github.com/PrismJS/prism/commit/57a92035)
1567
+ * Make `undefined` a keyword in JS ([#1740](https://github.com/PrismJS/prism/issues/1740)) [`d9fa29a8`](https://github.com/PrismJS/prism/commit/d9fa29a8)
1568
+ * Fix `function-variable` in JS ([#1739](https://github.com/PrismJS/prism/issues/1739)) [`bfbea4d6`](https://github.com/PrismJS/prism/commit/bfbea4d6)
1569
+ * Improved JS constant pattern ([#1737](https://github.com/PrismJS/prism/issues/1737)) [`7bcec584`](https://github.com/PrismJS/prism/commit/7bcec584)
1570
+ * Improved JS function pattern ([#1736](https://github.com/PrismJS/prism/issues/1736)) [`8378ac83`](https://github.com/PrismJS/prism/commit/8378ac83)
1571
+ * JS: Fixed variables named "async" ([#1738](https://github.com/PrismJS/prism/issues/1738)) [`3560c643`](https://github.com/PrismJS/prism/commit/3560c643)
1572
+ * JS: Keyword fix ([#1808](https://github.com/PrismJS/prism/issues/1808)) [`f2d8e1c7`](https://github.com/PrismJS/prism/commit/f2d8e1c7)
1573
+ * __JSON__ / __JSONP__
1574
+ * Fix bugs in JSON language ([#1479](https://github.com/PrismJS/prism/issues/1479)) [`74fe81c6`](https://github.com/PrismJS/prism/commit/74fe81c6)
1575
+ * Adds support for comments in JSON ([#1595](https://github.com/PrismJS/prism/issues/1595)) [`8720b3e6`](https://github.com/PrismJS/prism/commit/8720b3e6)
1576
+ * Cleaned up JSON ([#1596](https://github.com/PrismJS/prism/issues/1596)) [`da474c77`](https://github.com/PrismJS/prism/commit/da474c77)
1577
+ * Added `keyword` alias to JSON's `null` ([#1733](https://github.com/PrismJS/prism/issues/1733)) [`eee06649`](https://github.com/PrismJS/prism/commit/eee06649)
1578
+ * Fix JSONP support ([#1745](https://github.com/PrismJS/prism/issues/1745)) [`b5041cf9`](https://github.com/PrismJS/prism/commit/b5041cf9)
1579
+ * Fixed JSON/JSONP examples ([#1765](https://github.com/PrismJS/prism/issues/1765)) [`ae4842db`](https://github.com/PrismJS/prism/commit/ae4842db)
1580
+ * __JSX__
1581
+ * React component tags are styled as classes in JSX ([#1519](https://github.com/PrismJS/prism/issues/1519)) [`3e1a9a3d`](https://github.com/PrismJS/prism/commit/3e1a9a3d)
1582
+ * Support JSX/TSX class-name with dot ([#1725](https://github.com/PrismJS/prism/issues/1725)) [`4362e42c`](https://github.com/PrismJS/prism/commit/4362e42c)
1583
+ * __Less__
1584
+ * Remove useless insertBefore in LESS ([#1629](https://github.com/PrismJS/prism/issues/1629)) [`86d31793`](https://github.com/PrismJS/prism/commit/86d31793)
1585
+ * __Lisp__
1586
+ * Fix Lisp exponential string pattern ([#1763](https://github.com/PrismJS/prism/issues/1763)) [`5bd182c0`](https://github.com/PrismJS/prism/commit/5bd182c0))
1587
+ * __Markdown__
1588
+ * Added strike support to markdown ([#1563](https://github.com/PrismJS/prism/issues/1563)) [`9d2fddc2`](https://github.com/PrismJS/prism/commit/9d2fddc2)
1589
+ * Fixed Markdown headers ([#1557](https://github.com/PrismJS/prism/issues/1557)) [`c6584290`](https://github.com/PrismJS/prism/commit/c6584290)
1590
+ * Add support for code blocks in Markdown ([#1562](https://github.com/PrismJS/prism/issues/1562)) [`b0717e70`](https://github.com/PrismJS/prism/commit/b0717e70)
1591
+ * Markdown: The 'md' alias is now recognized by hooks ([#1771](https://github.com/PrismJS/prism/issues/1771)) [`8ca3d65b`](https://github.com/PrismJS/prism/commit/8ca3d65b)
1592
+ * __Markup__
1593
+ * Decouple XML from Markup ([#1603](https://github.com/PrismJS/prism/issues/1603)) [`0030a4ef`](https://github.com/PrismJS/prism/commit/0030a4ef)
1594
+ * Fix for markup attributes ([#1752](https://github.com/PrismJS/prism/issues/1752)) [`c3862a24`](https://github.com/PrismJS/prism/commit/c3862a24)
1595
+ * Markup: Added support for CSS and JS inside of CDATAs ([#1660](https://github.com/PrismJS/prism/issues/1660)) [`57127701`](https://github.com/PrismJS/prism/commit/57127701)
1596
+ * Markup `addInline` improvements ([#1798](https://github.com/PrismJS/prism/issues/1798)) [`af67c32e`](https://github.com/PrismJS/prism/commit/af67c32e)
1597
+ * __Markup Templating__
1598
+ * Markup-templating improvements ([#1653](https://github.com/PrismJS/prism/issues/1653)) [`b62e282b`](https://github.com/PrismJS/prism/commit/b62e282b)
1599
+ * __nginx__
1600
+ * Add new keywords to nginx ([#1587](https://github.com/PrismJS/prism/issues/1587)) [`0d73f7f5`](https://github.com/PrismJS/prism/commit/0d73f7f5)
1601
+ * __PHP__
1602
+ * Update PHP keywords ([#1690](https://github.com/PrismJS/prism/issues/1690)) [`55fb0f8e`](https://github.com/PrismJS/prism/commit/55fb0f8e)
1603
+ * Improve recognition of constants in PHP ([#1688](https://github.com/PrismJS/prism/issues/1688)) [`f1026b4b`](https://github.com/PrismJS/prism/commit/f1026b4b)
1604
+ * Made false, true, and null constants in PHP ([#1694](https://github.com/PrismJS/prism/issues/1694)) [`439e3bd7`](https://github.com/PrismJS/prism/commit/439e3bd7)
1605
+ * PHP: Fixed closing tag issue ([#1652](https://github.com/PrismJS/prism/issues/1652)) [`289ddd9b`](https://github.com/PrismJS/prism/commit/289ddd9b)
1606
+ * __Python__
1607
+ * Operator keywords are now keywords ([#1617](https://github.com/PrismJS/prism/issues/1617)) [`1d1fb800`](https://github.com/PrismJS/prism/commit/1d1fb800)
1608
+ * Add decorator support to Python ([#1639](https://github.com/PrismJS/prism/issues/1639)) [`2577b6e6`](https://github.com/PrismJS/prism/commit/2577b6e6)
1609
+ * Improvements to Python F-strings and string prefixes ([#1642](https://github.com/PrismJS/prism/issues/1642)) [`a69c2b62`](https://github.com/PrismJS/prism/commit/a69c2b62)
1610
+ * __Reason__
1611
+ * Added additional operators to Reason ([#1648](https://github.com/PrismJS/prism/issues/1648)) [`8b1bb469`](https://github.com/PrismJS/prism/commit/8b1bb469)
1612
+ * __Ruby__
1613
+ * Consistent Ruby method highlighting ([#1523](https://github.com/PrismJS/prism/issues/1523)) [`72775919`](https://github.com/PrismJS/prism/commit/72775919)
1614
+ * Ruby/ERB: Fixed block comments ([#1768](https://github.com/PrismJS/prism/issues/1768)) [`c805f859`](https://github.com/PrismJS/prism/commit/c805f859)
1615
+ * __Rust__
1616
+ * Add missing keywords ([#1634](https://github.com/PrismJS/prism/issues/1634)) [`3590edde`](https://github.com/PrismJS/prism/commit/3590edde)
1617
+ * __SAS__
1618
+ * Added new SAS keywords ([#1784](https://github.com/PrismJS/prism/issues/1784)) [`3b396ef5`](https://github.com/PrismJS/prism/commit/3b396ef5)
1619
+ * __Scheme__
1620
+ * Fix function without arguments in scheme language ([#1463](https://github.com/PrismJS/prism/issues/1463)) [`12a827e7`](https://github.com/PrismJS/prism/commit/12a827e7)
1621
+ * Scheme improvements ([#1556](https://github.com/PrismJS/prism/issues/1556)) [`225dd3f7`](https://github.com/PrismJS/prism/commit/225dd3f7)
1622
+ * Fixed operator-like functions in Scheme ([#1467](https://github.com/PrismJS/prism/issues/1467)) [`f8c8add2`](https://github.com/PrismJS/prism/commit/f8c8add2)
1623
+ * Scheme: Minor improvements ([#1814](https://github.com/PrismJS/prism/issues/1814)) [`191830f2`](https://github.com/PrismJS/prism/commit/191830f2)
1624
+ * __SCSS__
1625
+ * Fixed that selector pattern can take exponential time ([#1499](https://github.com/PrismJS/prism/issues/1499)) [`0f75d9d4`](https://github.com/PrismJS/prism/commit/0f75d9d4)
1626
+ * Move SCSS `property` definition ([#1633](https://github.com/PrismJS/prism/issues/1633)) [`0536fb14`](https://github.com/PrismJS/prism/commit/0536fb14)
1627
+ * Add `keyword` alias for SCSS' `null` ([#1735](https://github.com/PrismJS/prism/issues/1735)) [`bd0378f0`](https://github.com/PrismJS/prism/commit/bd0378f0)
1628
+ * __Smalltalk__
1629
+ * Allowed empty strings and comments ([#1747](https://github.com/PrismJS/prism/issues/1747)) [`5fd7577a`](https://github.com/PrismJS/prism/commit/5fd7577a)
1630
+ * __Smarty__
1631
+ * Removed useless `insertBefore` call in Smarty ([#1677](https://github.com/PrismJS/prism/issues/1677)) [`bc49c361`](https://github.com/PrismJS/prism/commit/bc49c361)
1632
+ * __SQL__
1633
+ * Added support for quote escapes to SQL strings ([#1500](https://github.com/PrismJS/prism/issues/1500)) [`a59a7926`](https://github.com/PrismJS/prism/commit/a59a7926)
1634
+ * SQL Quoted variables are now greedy ([#1510](https://github.com/PrismJS/prism/issues/1510)) [`42d119a2`](https://github.com/PrismJS/prism/commit/42d119a2)
1635
+ * __TypeScript__
1636
+ * Enhance definitions in TypeScript component ([#1522](https://github.com/PrismJS/prism/issues/1522)) [`11695629`](https://github.com/PrismJS/prism/commit/11695629)
1637
+ * __YAML__
1638
+ * Allow YAML strings to have trailing comments ([#1602](https://github.com/PrismJS/prism/issues/1602)) [`1c5f28a9`](https://github.com/PrismJS/prism/commit/1c5f28a9)
1639
+
1640
+ ### Updated plugins
1641
+
1642
+ * Better class name detection for plugins ([#1772](https://github.com/PrismJS/prism/issues/1772)) [`c9762c6f`](https://github.com/PrismJS/prism/commit/c9762c6f)
1643
+ * __Autolinker__
1644
+ * Fix Autolinker url-decoding all tokens ([#1723](https://github.com/PrismJS/prism/issues/1723)) [`8cf20d49`](https://github.com/PrismJS/prism/commit/8cf20d49)
1645
+ * __Autoloader__
1646
+ * Resolved variable name clash ([#1568](https://github.com/PrismJS/prism/issues/1568)) [`bfa5a8d9`](https://github.com/PrismJS/prism/commit/bfa5a8d9)
1647
+ * Autoloader: Fixed the directory of scripts ([#1828](https://github.com/PrismJS/prism/issues/1828)) [`fd4c764f`](https://github.com/PrismJS/prism/commit/fd4c764f)
1648
+ * Autoloader: Added support for aliases ([#1829](https://github.com/PrismJS/prism/issues/1829)) [`52889b5b`](https://github.com/PrismJS/prism/commit/52889b5b)
1649
+ * __Command Line__
1650
+ * Fixed class regex for Command Line plugin ([#1566](https://github.com/PrismJS/prism/issues/1566)) [`9f6e5026`](https://github.com/PrismJS/prism/commit/9f6e5026)
1651
+ * __File Highlight__
1652
+ * Prevent double-loading & add scope to File Highlight ([#1586](https://github.com/PrismJS/prism/issues/1586)) [`10239c14`](https://github.com/PrismJS/prism/commit/10239c14)
1653
+ * __JSONP Highlight__
1654
+ * Cleanup JSONP highlight code ([#1674](https://github.com/PrismJS/prism/issues/1674)) [`28489698`](https://github.com/PrismJS/prism/commit/28489698)
1655
+ * Fix typos & other issues in JSONP docs ([#1672](https://github.com/PrismJS/prism/issues/1672)) [`cd058a91`](https://github.com/PrismJS/prism/commit/cd058a91)
1656
+ * JSONP highlight: Fixed minified adapter names ([#1793](https://github.com/PrismJS/prism/issues/1793)) [`5dd8f916`](https://github.com/PrismJS/prism/commit/5dd8f916)
1657
+ * __Keep Markup__
1658
+ * Add unit tests to the Keep Markup plugin ([#1646](https://github.com/PrismJS/prism/issues/1646)) [`a944c418`](https://github.com/PrismJS/prism/commit/a944c418)
1659
+ * __Line Numbers__
1660
+ * Added inheritance for the `line-numbers` class ([#1799](https://github.com/PrismJS/prism/issues/1799)) [`14be7489`](https://github.com/PrismJS/prism/commit/14be7489)
1661
+ * __Previewers__
1662
+ * Fixed Previewers bug [#1496](https://github.com/PrismJS/prism/issues/1496) ([#1497](https://github.com/PrismJS/prism/issues/1497)) [`4b56f3c1`](https://github.com/PrismJS/prism/commit/4b56f3c1)
1663
+ * __Show Invisibles__
1664
+ * Updated styles of show invisibles ([#1607](https://github.com/PrismJS/prism/issues/1607)) [`2ba62268`](https://github.com/PrismJS/prism/commit/2ba62268)
1665
+ * Corrected load order of Show Invisibles ([#1612](https://github.com/PrismJS/prism/issues/1612)) [`6e0c6e86`](https://github.com/PrismJS/prism/commit/6e0c6e86)
1666
+ * Show invisibles inside tokens ([#1610](https://github.com/PrismJS/prism/issues/1610)) [`1090b253`](https://github.com/PrismJS/prism/commit/1090b253)
1667
+ * __Show Language__
1668
+ * Show Language plugin alias support and improvements ([#1683](https://github.com/PrismJS/prism/issues/1683)) [`4c66d72c`](https://github.com/PrismJS/prism/commit/4c66d72c)
1669
+ * __Toolbar__
1670
+ * Toolbar: Minor improvements ([#1818](https://github.com/PrismJS/prism/issues/1818)) [`3ad47047`](https://github.com/PrismJS/prism/commit/3ad47047)
1671
+
1672
+ ### Updated themes
1673
+
1674
+ * Normalized the font-size of pre and code ([#1791](https://github.com/PrismJS/prism/issues/1791)) [`878ef295`](https://github.com/PrismJS/prism/commit/878ef295)
1675
+ * __Coy__
1676
+ * Correct typo ([#1508](https://github.com/PrismJS/prism/issues/1508)) [`c322fc80`](https://github.com/PrismJS/prism/commit/c322fc80)
1677
+
1678
+ ### Other changes
1679
+
1680
+ * __Core__
1681
+ * `insertBefore` now correctly updates references ([#1531](https://github.com/PrismJS/prism/issues/1531)) [`9dfec340`](https://github.com/PrismJS/prism/commit/9dfec340)
1682
+ * Invoke `callback` after `after-highlight` hook ([#1588](https://github.com/PrismJS/prism/issues/1588)) [`bfbe4464`](https://github.com/PrismJS/prism/commit/bfbe4464)
1683
+ * Improve `Prism.util.type` performance ([#1545](https://github.com/PrismJS/prism/issues/1545)) [`2864fe24`](https://github.com/PrismJS/prism/commit/2864fe24)
1684
+ * Remove unused `insertBefore` overload ([#1631](https://github.com/PrismJS/prism/issues/1631)) [`39686e12`](https://github.com/PrismJS/prism/commit/39686e12)
1685
+ * Ignore duplicates in insertBefore ([#1628](https://github.com/PrismJS/prism/issues/1628)) [`d33d259c`](https://github.com/PrismJS/prism/commit/d33d259c)
1686
+ * Remove the Prism.tokenize language parameter ([#1654](https://github.com/PrismJS/prism/issues/1654)) [`fbf0b094`](https://github.com/PrismJS/prism/commit/fbf0b094)
1687
+ * Call `insert-before` hook properly ([#1709](https://github.com/PrismJS/prism/issues/1709)) [`393ab164`](https://github.com/PrismJS/prism/commit/393ab164)
1688
+ * Improved languages.DFS and util.clone ([#1506](https://github.com/PrismJS/prism/issues/1506)) [`152a68ef`](https://github.com/PrismJS/prism/commit/152a68ef)
1689
+ * Core: Avoid redeclaring variables in util.clone ([#1778](https://github.com/PrismJS/prism/issues/1778)) [`b06f532f`](https://github.com/PrismJS/prism/commit/b06f532f)
1690
+ * Made prism-core a little more editor friendly ([#1776](https://github.com/PrismJS/prism/issues/1776)) [`bac09f0a`](https://github.com/PrismJS/prism/commit/bac09f0a)
1691
+ * Applied Array.isArray ([#1804](https://github.com/PrismJS/prism/issues/1804)) [`11d0f75e`](https://github.com/PrismJS/prism/commit/11d0f75e)
1692
+ * __Infrastructure__
1693
+ * Linkify changelog more + add missing PR references [`2a100db7`](https://github.com/PrismJS/prism/commit/2a100db7)
1694
+ * Set default indentation size ([#1516](https://github.com/PrismJS/prism/issues/1516)) [`e63d1597`](https://github.com/PrismJS/prism/commit/e63d1597)
1695
+ * Add travis repo badge to readme ([#1561](https://github.com/PrismJS/prism/issues/1561)) [`716923f4`](https://github.com/PrismJS/prism/commit/716923f4)
1696
+ * Update README.md ([#1553](https://github.com/PrismJS/prism/issues/1553)) [`6d1a2c61`](https://github.com/PrismJS/prism/commit/6d1a2c61)
1697
+ * Mention Prism Themes in README ([#1625](https://github.com/PrismJS/prism/issues/1625)) [`5db04656`](https://github.com/PrismJS/prism/commit/5db04656)
1698
+ * Fixed CHANGELOG.md ([#1707](https://github.com/PrismJS/prism/issues/1707)) [`b1f8a65d`](https://github.com/PrismJS/prism/commit/b1f8a65d) ([#1704](https://github.com/PrismJS/prism/issues/1704)) [`66d2104a`](https://github.com/PrismJS/prism/commit/66d2104a)
1699
+ * Change tested NodeJS versions ([#1651](https://github.com/PrismJS/prism/issues/1651)) [`6ec71e0b`](https://github.com/PrismJS/prism/commit/6ec71e0b)
1700
+ * Inline regex source with gulp ([#1537](https://github.com/PrismJS/prism/issues/1537)) [`e894fc89`](https://github.com/PrismJS/prism/commit/e894fc89) ([#1716](https://github.com/PrismJS/prism/issues/1716)) [`217a6ea4`](https://github.com/PrismJS/prism/commit/217a6ea4)
1701
+ * Improve gulp error messages with pump ([#1741](https://github.com/PrismJS/prism/issues/1741)) [`671f4ca0`](https://github.com/PrismJS/prism/commit/671f4ca0)
1702
+ * Update gulp to version 4.0.0 ([#1779](https://github.com/PrismJS/prism/issues/1779)) [`06627f6a`](https://github.com/PrismJS/prism/commit/06627f6a)
1703
+ * gulp: Refactoring ([#1780](https://github.com/PrismJS/prism/issues/1780)) [`6c9fe257`](https://github.com/PrismJS/prism/commit/6c9fe257)
1704
+ * npm: Updated all dependencies ([#1742](https://github.com/PrismJS/prism/issues/1742)) [`9d908d5a`](https://github.com/PrismJS/prism/commit/9d908d5a)
1705
+ * Tests: Pretty-printed token stream ([#1801](https://github.com/PrismJS/prism/issues/1801)) [`9ea6d600`](https://github.com/PrismJS/prism/commit/9ea6d600)
1706
+ * Refactored tests ([#1795](https://github.com/PrismJS/prism/issues/1795)) [`832a9643`](https://github.com/PrismJS/prism/commit/832a9643)
1707
+ * Added issue templates ([#1805](https://github.com/PrismJS/prism/issues/1805)) [`dedb475f`](https://github.com/PrismJS/prism/commit/dedb475f)
1708
+ * npm: Fixed `test` script ([#1809](https://github.com/PrismJS/prism/issues/1809)) [`bc649dfa`](https://github.com/PrismJS/prism/commit/bc649dfa)
1709
+ * Add command to generate CHANGELOG [`212666d3`](https://github.com/PrismJS/prism/commit/212666d3)
1710
+ * Name in composer.json set to lowercase ([#1824](https://github.com/PrismJS/prism/issues/1824)) [`4f78f1d6`](https://github.com/PrismJS/prism/commit/4f78f1d6)
1711
+ * Added alias tests ([#1832](https://github.com/PrismJS/prism/issues/1832)) [`5c1a6fb2`](https://github.com/PrismJS/prism/commit/5c1a6fb2)
1712
+ * Travis: Fail when changed files are detected ([#1819](https://github.com/PrismJS/prism/issues/1819)) [`66b44e3b`](https://github.com/PrismJS/prism/commit/66b44e3b)
1713
+ * Tests: Additional checks for Prism functions ([#1803](https://github.com/PrismJS/prism/issues/1803)) [`c3e74ea3`](https://github.com/PrismJS/prism/commit/c3e74ea3)
1714
+ * Adjusted .npmignore ([#1834](https://github.com/PrismJS/prism/issues/1834)) [`29a30c62`](https://github.com/PrismJS/prism/commit/29a30c62)
1715
+ * __Website__
1716
+ * Add Python triple-quoted strings "known failure" ([#1449](https://github.com/PrismJS/prism/issues/1449)) [`334c7bca`](https://github.com/PrismJS/prism/commit/334c7bca)
1717
+ * Updated index.html to fix broken instructions ([#1462](https://github.com/PrismJS/prism/issues/1462)) [`7418dfdd`](https://github.com/PrismJS/prism/commit/7418dfdd)
1718
+ * Improve download page typography ([#1484](https://github.com/PrismJS/prism/issues/1484)) [`b1c2f4df`](https://github.com/PrismJS/prism/commit/b1c2f4df)
1719
+ * Fixed peer dependencies in download page ([#1491](https://github.com/PrismJS/prism/issues/1491)) [`9d15ff6e`](https://github.com/PrismJS/prism/commit/9d15ff6e)
1720
+ * Fixed empty link in extending ([#1507](https://github.com/PrismJS/prism/issues/1507)) [`74916d48`](https://github.com/PrismJS/prism/commit/74916d48)
1721
+ * Display language aliases ([#1626](https://github.com/PrismJS/prism/issues/1626)) [`654b527b`](https://github.com/PrismJS/prism/commit/654b527b)
1722
+ * Clean up Previewers' page ([#1630](https://github.com/PrismJS/prism/issues/1630)) [`b0d1823c`](https://github.com/PrismJS/prism/commit/b0d1823c)
1723
+ * Updated website table of contents styles ([#1681](https://github.com/PrismJS/prism/issues/1681)) [`efdd96c3`](https://github.com/PrismJS/prism/commit/efdd96c3)
1724
+ * Added new third-party tutorial for using Prism in Gutenberg ([#1701](https://github.com/PrismJS/prism/issues/1701)) [`ff9ccbe5`](https://github.com/PrismJS/prism/commit/ff9ccbe5)
1725
+ * Remove dead tutorial ([#1702](https://github.com/PrismJS/prism/issues/1702)) [`e2d3bc7e`](https://github.com/PrismJS/prism/commit/e2d3bc7e)
1726
+ * Fix downloads page fetching from GitHub([#1684](https://github.com/PrismJS/prism/issues/1684)) [`dbd3555e`](https://github.com/PrismJS/prism/commit/dbd3555e)
1727
+ * Remove parentheses from download page ([#1627](https://github.com/PrismJS/prism/issues/1627)) [`2ce0666d`](https://github.com/PrismJS/prism/commit/2ce0666d)
1728
+ * Line Numbers plugin instructions clarifications ([#1719](https://github.com/PrismJS/prism/issues/1719)) [`00f4f04f`](https://github.com/PrismJS/prism/commit/00f4f04f)
1729
+ * Fixed Toolbar plugin example ([#1726](https://github.com/PrismJS/prism/issues/1726)) [`5311ca32`](https://github.com/PrismJS/prism/commit/5311ca32)
1730
+ * Test page: Show tokens option ([#1757](https://github.com/PrismJS/prism/issues/1757)) [`729cb28b`](https://github.com/PrismJS/prism/commit/729cb28b)
1731
+ * Some encouragement for visitors of PrismJS.com to request new languages ([#1760](https://github.com/PrismJS/prism/issues/1760)) [`ea769e0b`](https://github.com/PrismJS/prism/commit/ea769e0b)
1732
+ * Docs: Added missing parameter ([#1774](https://github.com/PrismJS/prism/issues/1774)) [`18f2921d`](https://github.com/PrismJS/prism/commit/18f2921d)
1733
+ * More persistent test page ([#1529](https://github.com/PrismJS/prism/issues/1529)) [`3100fa31`](https://github.com/PrismJS/prism/commit/3100fa31)
1734
+ * Added scripts directory ([#1781](https://github.com/PrismJS/prism/issues/1781)) [`439ea1ee`](https://github.com/PrismJS/prism/commit/439ea1ee)
1735
+ * Fixed download page ([#1811](https://github.com/PrismJS/prism/issues/1811)) [`77c57446`](https://github.com/PrismJS/prism/commit/77c57446)
1736
+
1737
+ ## 1.15.0 (2018-06-16)
1738
+
1739
+ ### New components
1740
+
1741
+ * __Template Tookit 2__ ([#1418](https://github.com/PrismJS/prism/issues/1418)) [[`e063992`](https://github.com/PrismJS/prism/commit/e063992)]
1742
+ * __XQuery__ ([#1411](https://github.com/PrismJS/prism/issues/1411)) [[`e326cb0`](https://github.com/PrismJS/prism/commit/e326cb0)]
1743
+ * __TAP__ ([#1430](https://github.com/PrismJS/prism/issues/1430)) [[`8c2b71f`](https://github.com/PrismJS/prism/commit/8c2b71f)]
1744
+
1745
+ ### Updated components
1746
+
1747
+ * __HTTP__
1748
+ * Absolute path is a valid request uri ([#1388](https://github.com/PrismJS/prism/issues/1388)) [[`f6e81cb`](https://github.com/PrismJS/prism/commit/f6e81cb)]
1749
+ * __Kotlin__
1750
+ * Add keywords of Kotlin and modify it's number pattern. ([#1389](https://github.com/PrismJS/prism/issues/1389)) [[`1bf73b0`](https://github.com/PrismJS/prism/commit/1bf73b0)]
1751
+ * Add `typealias` keyword ([#1437](https://github.com/PrismJS/prism/issues/1437)) [[`a21fdee`](https://github.com/PrismJS/prism/commit/a21fdee)]
1752
+ * __JavaScript__
1753
+ * Improve Regexp pattern [[`5b043cf`](https://github.com/PrismJS/prism/commit/5b043cf)]
1754
+ * Add support for one level of nesting inside template strings. Fix [#1397](https://github.com/PrismJS/prism/issues/1397) [[`db2d0eb`](https://github.com/PrismJS/prism/commit/db2d0eb)]
1755
+ * __Elixir__
1756
+ * Elixir: Fix attributes consuming punctuation. Fix [#1392](https://github.com/PrismJS/prism/issues/1392) [[`dac0485`](https://github.com/PrismJS/prism/commit/dac0485)]
1757
+ * __Bash__
1758
+ * Change reserved keyword reference ([#1396](https://github.com/PrismJS/prism/issues/1396)) [[`b94f01f`](https://github.com/PrismJS/prism/commit/b94f01f)]
1759
+ * __PowerShell__
1760
+ * Allow for one level of nesting in expressions inside strings. Fix [#1407](https://github.com/PrismJS/prism/issues/1407) [[`9272d6f`](https://github.com/PrismJS/prism/commit/9272d6f)]
1761
+ * __JSX__
1762
+ * Allow for two levels of nesting inside JSX tags. Fix [#1408](https://github.com/PrismJS/prism/issues/1408) [[`f1cd7c5`](https://github.com/PrismJS/prism/commit/f1cd7c5)]
1763
+ * Add support for fragments short syntax. Fix [#1421](https://github.com/PrismJS/prism/issues/1421) [[`38ce121`](https://github.com/PrismJS/prism/commit/38ce121)]
1764
+ * __Pascal__
1765
+ * Add `objectpascal` as an alias to `pascal` ([#1426](https://github.com/PrismJS/prism/issues/1426)) [[`a0bfc84`](https://github.com/PrismJS/prism/commit/a0bfc84)]
1766
+ * __Swift__
1767
+ * Fix Swift 'protocol' keyword ([#1440](https://github.com/PrismJS/prism/issues/1440)) [[`081e318`](https://github.com/PrismJS/prism/commit/081e318)]
1768
+
1769
+ ### Updated plugins
1770
+
1771
+ * __File Highlight__
1772
+ * Fix issue causing the Download button to show up on every code blocks. [[`cd22499`](https://github.com/PrismJS/prism/commit/cd22499)]
1773
+ * Simplify lang regex on File Highlight plugin ([#1399](https://github.com/PrismJS/prism/issues/1399)) [[`7bc9a4a`](https://github.com/PrismJS/prism/commit/7bc9a4a)]
1774
+ * __Show Language__
1775
+ * Don't process language if block language not set ([#1410](https://github.com/PrismJS/prism/issues/1410)) [[`c111869`](https://github.com/PrismJS/prism/commit/c111869)]
1776
+ * __Autoloader__
1777
+ * ASP.NET should require C# [[`fa328bb`](https://github.com/PrismJS/prism/commit/fa328bb)]
1778
+ * __Line Numbers__
1779
+ * Make line-numbers styles more specific ([#1434](https://github.com/PrismJS/prism/issues/1434), [#1435](https://github.com/PrismJS/prism/issues/1435)) [[`9ee4f54`](https://github.com/PrismJS/prism/commit/9ee4f54)]
1780
+
1781
+ ### Updated themes
1782
+
1783
+ * Add .token.class-name to rest of themes ([#1360](https://github.com/PrismJS/prism/issues/1360)) [[`f356dfe`](https://github.com/PrismJS/prism/commit/f356dfe)]
1784
+
1785
+ ### Other changes
1786
+
1787
+ * __Website__
1788
+ * Site now loads over HTTPS!
1789
+ * Use HTTPS / canonical URLs ([#1390](https://github.com/PrismJS/prism/issues/1390)) [[`95146c8`](https://github.com/PrismJS/prism/commit/95146c8)]
1790
+ * Added Angular tutorial link [[`c436a7c`](https://github.com/PrismJS/prism/commit/c436a7c)]
1791
+ * Use rel="icon" instead of rel="shortcut icon" ([#1398](https://github.com/PrismJS/prism/issues/1398)) [[`d95f8fb`](https://github.com/PrismJS/prism/commit/d95f8fb)]
1792
+ * Fix Download page not handling multiple dependencies when from Redownload URL [[`c2ff248`](https://github.com/PrismJS/prism/commit/c2ff248)]
1793
+ * Update documentation for node & webpack usage [[`1e99e96`](https://github.com/PrismJS/prism/commit/1e99e96)]
1794
+ * Handle optional dependencies in `loadLanguages()` ([#1417](https://github.com/PrismJS/prism/issues/1417)) [[`84935ac`](https://github.com/PrismJS/prism/commit/84935ac)]
1795
+ * Add Chinese translation [[`f2b1964`](https://github.com/PrismJS/prism/commit/f2b1964)]
1796
+
1797
+ ## 1.14.0 (2018-04-11)
1798
+
1799
+ ### New components
1800
+ * __GEDCOM__ ([#1385](https://github.com/PrismJS/prism/issues/1385)) [[`6e0b20a`](https://github.com/PrismJS/prism/commit/6e0b20a)]
1801
+ * __Lisp__ ([#1297](https://github.com/PrismJS/prism/issues/1297)) [[`46468f8`](https://github.com/PrismJS/prism/commit/46468f8)]
1802
+ * __Markup Templating__ ([#1367](https://github.com/PrismJS/prism/issues/1367)) [[`5f9c078`](https://github.com/PrismJS/prism/commit/5f9c078)]
1803
+ * __Soy__ ([#1387](https://github.com/PrismJS/prism/issues/1387)) [[`b4509bf`](https://github.com/PrismJS/prism/commit/b4509bf)]
1804
+ * __Velocity__ ([#1378](https://github.com/PrismJS/prism/issues/1378)) [[`5a524f7`](https://github.com/PrismJS/prism/commit/5a524f7)]
1805
+ * __Visual Basic__ ([#1382](https://github.com/PrismJS/prism/issues/1382)) [[`c673ec2`](https://github.com/PrismJS/prism/commit/c673ec2)]
1806
+ * __WebAssembly__ ([#1386](https://github.com/PrismJS/prism/issues/1386)) [[`c28d8c5`](https://github.com/PrismJS/prism/commit/c28d8c5)]
1807
+
1808
+ ### Updated components
1809
+ * __Bash__:
1810
+ * Add curl to the list of common functions. Close [#1160](https://github.com/PrismJS/prism/issues/1160) [[`1bfc084`](https://github.com/PrismJS/prism/commit/1bfc084)]
1811
+ * __C-like__:
1812
+ * Make single-line comments greedy. Fix [#1337](https://github.com/PrismJS/prism/issues/1337). Make sure [#1340](https://github.com/PrismJS/prism/issues/1340) stays fixed. [[`571f2c5`](https://github.com/PrismJS/prism/commit/571f2c5)]
1813
+ * __C#__:
1814
+ * More generic class-name highlighting. Fix [#1365](https://github.com/PrismJS/prism/issues/1365) [[`a6837d2`](https://github.com/PrismJS/prism/commit/a6837d2)]
1815
+ * More specific class-name highlighting. Fix [#1371](https://github.com/PrismJS/prism/issues/1371) [[`0a95f69`](https://github.com/PrismJS/prism/commit/0a95f69)]
1816
+ * __Eiffel__:
1817
+ * Fix verbatim strings. Fix [#1379](https://github.com/PrismJS/prism/issues/1379) [[`04df41b`](https://github.com/PrismJS/prism/commit/04df41b)]
1818
+ * __Elixir__
1819
+ * Make regexps greedy, remove comment hacks. Update known failures and tests. [[`e93d61f`](https://github.com/PrismJS/prism/commit/e93d61f)]
1820
+ * __ERB__:
1821
+ * Make highlighting work properly in NodeJS ([#1367](https://github.com/PrismJS/prism/issues/1367)) [[`5f9c078`](https://github.com/PrismJS/prism/commit/5f9c078)]
1822
+ * __Fortran__:
1823
+ * Make single-line comments greedy. Update known failures and tests. [[`c083b78`](https://github.com/PrismJS/prism/commit/c083b78)]
1824
+ * __Handlebars__:
1825
+ * Make highlighting work properly in NodeJS ([#1367](https://github.com/PrismJS/prism/issues/1367)) [[`5f9c078`](https://github.com/PrismJS/prism/commit/5f9c078)]
1826
+ * __Java__:
1827
+ * Add support for generics. Fix [#1351](https://github.com/PrismJS/prism/issues/1351) [[`a5cf302`](https://github.com/PrismJS/prism/commit/a5cf302)]
1828
+ * __JavaScript__:
1829
+ * Add support for constants. Fix [#1348](https://github.com/PrismJS/prism/issues/1348) [[`9084481`](https://github.com/PrismJS/prism/commit/9084481)]
1830
+ * Improve Regex matching [[`172d351`](https://github.com/PrismJS/prism/commit/172d351)]
1831
+ * __JSX__:
1832
+ * Fix highlighting of empty objects. Fix [#1364](https://github.com/PrismJS/prism/issues/1364) [[`b26bbb8`](https://github.com/PrismJS/prism/commit/b26bbb8)]
1833
+ * __Monkey__:
1834
+ * Make comments greedy. Update known failures and tests. [[`d7b2b43`](https://github.com/PrismJS/prism/commit/d7b2b43)]
1835
+ * __PHP__:
1836
+ * Make highlighting work properly in NodeJS ([#1367](https://github.com/PrismJS/prism/issues/1367)) [[`5f9c078`](https://github.com/PrismJS/prism/commit/5f9c078)]
1837
+ * __Puppet__:
1838
+ * Make heredoc, comments, regexps and strings greedy. Update known failures and tests. [[`0c139d1`](https://github.com/PrismJS/prism/commit/0c139d1)]
1839
+ * __Q__:
1840
+ * Make comments greedy. Update known failures and tests. [[`a0f5081`](https://github.com/PrismJS/prism/commit/a0f5081)]
1841
+ * __Ruby__:
1842
+ * Make multi-line comments greedy, remove single-line comment hack. Update known failures and tests. [[`b0e34fb`](https://github.com/PrismJS/prism/commit/b0e34fb)]
1843
+ * __SQL__:
1844
+ * Add missing keywords. Fix [#1374](https://github.com/PrismJS/prism/issues/1374) [[`238b195`](https://github.com/PrismJS/prism/commit/238b195)]
1845
+
1846
+ ### Updated plugins
1847
+ * __Command Line__:
1848
+ * Command Line: Allow specifying output prefix using data-filter-output attribute. ([#856](https://github.com/PrismJS/prism/issues/856)) [[`094d546`](https://github.com/PrismJS/prism/commit/094d546)]
1849
+ * __File Highlight__:
1850
+ * Add option to provide a download button, when used with the Toolbar plugin. Fix [#1030](https://github.com/PrismJS/prism/issues/1030) [[`9f22952`](https://github.com/PrismJS/prism/commit/9f22952)]
1851
+
1852
+ ### Updated themes
1853
+ * __Default__:
1854
+ * Reach AA contrast ratio level ([#1296](https://github.com/PrismJS/prism/issues/1296)) [[`8aea939`](https://github.com/PrismJS/prism/commit/8aea939)]
1855
+
1856
+ ### Other changes
1857
+ * Website: Remove broken third-party tutorials from homepage [[`0efd6e1`](https://github.com/PrismJS/prism/commit/0efd6e1)]
1858
+ * Docs: Mention `loadLanguages()` function on homepage in the nodeJS section. Close [#972](https://github.com/PrismJS/prism/issues/972), close [#593](https://github.com/PrismJS/prism/issues/593) [[`4a14d20`](https://github.com/PrismJS/prism/commit/4a14d20)]
1859
+ * Core: Greedy patterns should always be matched against the full string. Fix [#1355](https://github.com/PrismJS/prism/issues/1355) [[`294efaa`](https://github.com/PrismJS/prism/commit/294efaa)]
1860
+ * Crystal: Update known failures. [[`e1d2d42`](https://github.com/PrismJS/prism/commit/e1d2d42)]
1861
+ * D: Update known failures and tests. [[`13d9991`](https://github.com/PrismJS/prism/commit/13d9991)]
1862
+ * Markdown: Update known failures. [[`5b6c76d`](https://github.com/PrismJS/prism/commit/5b6c76d)]
1863
+ * Matlab: Update known failures. [[`259b6fc`](https://github.com/PrismJS/prism/commit/259b6fc)]
1864
+ * Website: Remove non-existent anchor to failures. Reword on homepage to make is less misleading. [[`8c0911a`](https://github.com/PrismJS/prism/commit/8c0911a)]
1865
+ * Website: Add link to Keep Markup plugin in FAQ [[`e8cb6d4`](https://github.com/PrismJS/prism/commit/e8cb6d4)]
1866
+ * Test suite: Memory leak in vm.runInNewContext() seems fixed. Revert [[`9a4b6fa`](https://github.com/PrismJS/prism/commit/9a4b6fa)] to drastically improve tests execution time. [[`9bceece`](https://github.com/PrismJS/prism/commit/9bceece), [`7c7602b`](https://github.com/PrismJS/prism/commit/7c7602b)]
1867
+ * Gulp: Don't minify `components/index.js` [[`689227b`](https://github.com/PrismJS/prism/commit/689227b)]
1868
+ * Website: Fix theme selection on Download page, when theme is in query string or hash. [[`b4d3063`](https://github.com/PrismJS/prism/commit/b4d3063)]
1869
+ * Update JSPM config to also include unminified components. Close [#995](https://github.com/PrismJS/prism/issues/995) [[`218f160`](https://github.com/PrismJS/prism/commit/218f160)]
1870
+ * Core: Fix support for language alias containing dash `-` [[`659ea31`](https://github.com/PrismJS/prism/commit/659ea31)]
1871
+
1872
+ ## 1.13.0 (2018-03-21)
1873
+
1874
+ ### New components
1875
+ * __ERB__ [[`e6213ac`](https://github.com/PrismJS/prism/commit/e6213ac)]
1876
+ * __PL/SQL__ ([#1338](https://github.com/PrismJS/prism/issues/1338)) [[`3599e6a`](https://github.com/PrismJS/prism/commit/3599e6a)]
1877
+
1878
+ ### Updated components
1879
+ * __JSX__:
1880
+ * Add support for plain text inside tags ([#1357](https://github.com/PrismJS/prism/issues/1357)) [[`2b8321d`](https://github.com/PrismJS/prism/commit/2b8321d)]
1881
+ * __Markup__:
1882
+ * Make tags greedy. Fix [#1356](https://github.com/PrismJS/prism/issues/1356) [[`af834be`](https://github.com/PrismJS/prism/commit/af834be)]
1883
+ * __Powershell__:
1884
+ * Add lookbehind to fix function interpolation inside strings. Fix [#1361](https://github.com/PrismJS/prism/issues/1361) [[`d2c026e`](https://github.com/PrismJS/prism/commit/d2c026e)]
1885
+ * __Rust__:
1886
+ * Improve char pattern so that lifetime annotations are matched better. Fix [#1353](https://github.com/PrismJS/prism/issues/1353) [[`efdccbf`](https://github.com/PrismJS/prism/commit/efdccbf)]
1887
+
1888
+ ### Updated themes
1889
+ * __Default__:
1890
+ * Add color for class names [[`8572474`](https://github.com/PrismJS/prism/commit/8572474)]
1891
+ * __Coy__:
1892
+ * Inherit pre's height on code, so it does not break on Download page. [[`c6c7fd1`](https://github.com/PrismJS/prism/commit/c6c7fd1)]
1893
+
1894
+ ### Other changes
1895
+ * Website: Auto-generate example headers [[`c3ed5b5`](https://github.com/PrismJS/prism/commit/c3ed5b5)]
1896
+ * Core: Allow cloning of circular structures. ([#1345](https://github.com/PrismJS/prism/issues/1345)) [[`f90d555`](https://github.com/PrismJS/prism/commit/f90d555)]
1897
+ * Core: Generate components.js from components.json and make it exportable to nodeJS. ([#1354](https://github.com/PrismJS/prism/issues/1354)) [[`ba60df0`](https://github.com/PrismJS/prism/commit/ba60df0)]
1898
+ * Website: Improve appearance of theme selector [[`0460cad`](https://github.com/PrismJS/prism/commit/0460cad)]
1899
+ * Website: Check stored theme by default + link both theme selectors together. Close [#1038](https://github.com/PrismJS/prism/issues/1038) [[`212dd4e`](https://github.com/PrismJS/prism/commit/212dd4e)]
1900
+ * Tests: Use the new components.js file directly [[`0e1a8b7`](https://github.com/PrismJS/prism/commit/0e1a8b7)]
1901
+ * Update .npmignore Close [#1274](https://github.com/PrismJS/prism/issues/1274) [[`a52319a`](https://github.com/PrismJS/prism/commit/a52319a)]
1902
+ * Add a loadLanguages() function for easy component loading on NodeJS ([#1359](https://github.com/PrismJS/prism/issues/1359)) [[`a5331a6`](https://github.com/PrismJS/prism/commit/a5331a6)]
1903
+
1904
+ ## 1.12.2 (2018-03-08)
1905
+
1906
+ ### Other changes
1907
+ * Test against NodeJS 4, 6, 8 and 9 ([#1329](https://github.com/PrismJS/prism/issues/1329)) [[`97b7d0a`](https://github.com/PrismJS/prism/commit/97b7d0a)]
1908
+ * Stop testing against NodeJS 0.10 and 0.12 [[`df01b1b`](https://github.com/PrismJS/prism/commit/df01b1b)]
1909
+
1910
+ ## 1.12.1 (2018-03-08)
1911
+
1912
+ ### Updated components
1913
+ * __C-like__:
1914
+ * Revert [[`b98e5b9`](https://github.com/PrismJS/prism/commit/b98e5b9)] to fix [#1340](https://github.com/PrismJS/prism/issues/1340). Reopened [#1337](https://github.com/PrismJS/prism/issues/1337). [[`cebacdf`](https://github.com/PrismJS/prism/commit/cebacdf)]
1915
+ * __JSX__:
1916
+ * Allow for one level of nested curly braces inside tag attribute value. Fix [#1335](https://github.com/PrismJS/prism/issues/1335) [[`05bf67d`](https://github.com/PrismJS/prism/commit/05bf67d)]
1917
+ * __Ruby__:
1918
+ * Ensure module syntax is not confused with symbols. Fix [#1336](https://github.com/PrismJS/prism/issues/1336) [[`31a2a69`](https://github.com/PrismJS/prism/commit/31a2a69)]
1919
+
1920
+ ## 1.12.0 (2018-03-07)
1921
+
1922
+ ### New components
1923
+ * __ARFF__ ([#1327](https://github.com/PrismJS/prism/issues/1327)) [[`0bc98ac`](https://github.com/PrismJS/prism/commit/0bc98ac)]
1924
+ * __Clojure__ ([#1311](https://github.com/PrismJS/prism/issues/1311)) [[`8b4d3bd`](https://github.com/PrismJS/prism/commit/8b4d3bd)]
1925
+ * __Liquid__ ([#1326](https://github.com/PrismJS/prism/issues/1326)) [[`f0b2c9e`](https://github.com/PrismJS/prism/commit/f0b2c9e)]
1926
+
1927
+ ### Updated components
1928
+ * __Bash__:
1929
+ * Add shell as an alias ([#1321](https://github.com/PrismJS/prism/issues/1321)) [[`67e16a2`](https://github.com/PrismJS/prism/commit/67e16a2)]
1930
+ * Add support for quoted command substitution. Fix [#1287](https://github.com/PrismJS/prism/issues/1287) [[`63fc215`](https://github.com/PrismJS/prism/commit/63fc215)]
1931
+ * __C#__:
1932
+ * Add "dotnet" alias. [[`405867c`](https://github.com/PrismJS/prism/commit/405867c)]
1933
+ * __C-like__:
1934
+ * Change order of comment patterns and make multi-line one greedy. Fix [#1337](https://github.com/PrismJS/prism/issues/1337) [[`b98e5b9`](https://github.com/PrismJS/prism/commit/b98e5b9)]
1935
+ * __NSIS__:
1936
+ * Add support for NSIS 3.03 ([#1288](https://github.com/PrismJS/prism/issues/1288)) [[`bd1e98b`](https://github.com/PrismJS/prism/commit/bd1e98b)]
1937
+ * Add missing NSIS commands ([#1289](https://github.com/PrismJS/prism/issues/1289)) [[`ad2948f`](https://github.com/PrismJS/prism/commit/ad2948f)]
1938
+ * __PHP__:
1939
+ * Add support for string interpolation inside double-quoted strings. Fix [#1146](https://github.com/PrismJS/prism/issues/1146) [[`9f1f8d6`](https://github.com/PrismJS/prism/commit/9f1f8d6)]
1940
+ * Add support for Heredoc and Nowdoc strings [[`5d7223c`](https://github.com/PrismJS/prism/commit/5d7223c)]
1941
+ * Fix shell-comment failure now that strings are greedy [[`ad25d22`](https://github.com/PrismJS/prism/commit/ad25d22)]
1942
+ * __PowerShell__:
1943
+ * Add support for two levels of nested brackets inside namespace pattern. Fixes [#1317](https://github.com/PrismJS/prism/issues/1317) [[`3bc3e9c`](https://github.com/PrismJS/prism/commit/3bc3e9c)]
1944
+ * __Ruby__:
1945
+ * Add keywords "protected", "private" and "public" [[`4593837`](https://github.com/PrismJS/prism/commit/4593837)]
1946
+ * __Rust__:
1947
+ * Add support for lifetime-annotation and => operator. Fix [#1339](https://github.com/PrismJS/prism/issues/1339) [[`926f6f8`](https://github.com/PrismJS/prism/commit/926f6f8)]
1948
+ * __Scheme__:
1949
+ * Don't highlight first number of a list as a function. Fix [#1331](https://github.com/PrismJS/prism/issues/1331) [[`51bff80`](https://github.com/PrismJS/prism/commit/51bff80)]
1950
+ * __SQL__:
1951
+ * Add missing keywords and functions, fix numbers [[`de29d4a`](https://github.com/PrismJS/prism/commit/de29d4a)]
1952
+
1953
+ ### Updated plugins
1954
+ * __Autolinker__:
1955
+ * Allow more chars in query string and hash to match more URLs. Fix [#1142](https://github.com/PrismJS/prism/issues/1142) [[`109bd6f`](https://github.com/PrismJS/prism/commit/109bd6f)]
1956
+ * __Copy to Clipboard__:
1957
+ * Bump ClipboardJS to 2.0.0 and remove hack ([#1314](https://github.com/PrismJS/prism/issues/1314)) [[`e9f410e`](https://github.com/PrismJS/prism/commit/e9f410e)]
1958
+ * __Toolbar__:
1959
+ * Prevent scrolling toolbar with content ([#1305](https://github.com/PrismJS/prism/issues/1305), [#1314](https://github.com/PrismJS/prism/issues/1314)) [[`84eeb89`](https://github.com/PrismJS/prism/commit/84eeb89)]
1960
+ * __Unescaped Markup__:
1961
+ * Use msMatchesSelector for IE11 and below. Fix [#1302](https://github.com/PrismJS/prism/issues/1302) [[`c246c1a`](https://github.com/PrismJS/prism/commit/c246c1a)]
1962
+ * __WebPlatform Docs__:
1963
+ * WebPlatform Docs plugin: Fix links. Fixes [#1290](https://github.com/PrismJS/prism/issues/1290) [[`7a9dbe0`](https://github.com/PrismJS/prism/commit/7a9dbe0)]
1964
+
1965
+ ### Other changes
1966
+ * Fix Autoloader's demo page [[`3dddac9`](https://github.com/PrismJS/prism/commit/3dddac9)]
1967
+ * Download page: Use hash instead of query-string for redownload URL. Fix [#1263](https://github.com/PrismJS/prism/issues/1263) [[`b03c02a`](https://github.com/PrismJS/prism/commit/b03c02a)]
1968
+ * Core: Don't thow an error if lookbehing is used without anything matching. [[`e0cd47f`](https://github.com/PrismJS/prism/commit/e0cd47f)]
1969
+ * Docs: Fix link to the `<code>` element specification in HTML5 [[`a84263f`](https://github.com/PrismJS/prism/commit/a84263f)]
1970
+ * Docs: Mention support for `lang-xxxx` class. Close [#1312](https://github.com/PrismJS/prism/issues/1312) [[`a9e76db`](https://github.com/PrismJS/prism/commit/a9e76db)]
1971
+ * Docs: Add note on `async` parameter to clarify the requirement of using a single bundled file. Closes [#1249](https://github.com/PrismJS/prism/issues/1249) [[`eba0235`](https://github.com/PrismJS/prism/commit/eba0235)]
1972
+
1973
+ ## 1.11.0 (2018-02-05)
1974
+
1975
+ ### New components
1976
+ * __Content-Security-Policy (CSP)__ ([#1275](https://github.com/PrismJS/prism/issues/1275)) [[`b08cae5`](https://github.com/PrismJS/prism/commit/b08cae5)]
1977
+ * __HTTP Public-Key-Pins (HPKP)__ ([#1275](https://github.com/PrismJS/prism/issues/1275)) [[`b08cae5`](https://github.com/PrismJS/prism/commit/b08cae5)]
1978
+ * __HTTP String-Transport-Security (HSTS)__ ([#1275](https://github.com/PrismJS/prism/issues/1275)) [[`b08cae5`](https://github.com/PrismJS/prism/commit/b08cae5)]
1979
+ * __React TSX__ ([#1280](https://github.com/PrismJS/prism/issues/1280)) [[`fbe82b8`](https://github.com/PrismJS/prism/commit/fbe82b8)]
1980
+
1981
+ ### Updated components
1982
+ * __C++__:
1983
+ * Add C++ platform-independent types ([#1271](https://github.com/PrismJS/prism/issues/1271)) [[`3da238f`](https://github.com/PrismJS/prism/commit/3da238f)]
1984
+ * __TypeScript__:
1985
+ * Improve typescript with builtins ([#1277](https://github.com/PrismJS/prism/issues/1277)) [[`5de1b1f`](https://github.com/PrismJS/prism/commit/5de1b1f)]
1986
+
1987
+ ### Other changes
1988
+ * Fix passing of non-enumerable Error properties from the child test runner ([#1276](https://github.com/PrismJS/prism/issues/1276)) [[`38df653`](https://github.com/PrismJS/prism/commit/38df653)]
1989
+
1990
+ ## 1.10.0 (2018-01-17)
1991
+
1992
+ ### New components
1993
+ * __6502 Assembly__ ([#1245](https://github.com/PrismJS/prism/issues/1245)) [[`2ece18b`](https://github.com/PrismJS/prism/commit/2ece18b)]
1994
+ * __Elm__ ([#1174](https://github.com/PrismJS/prism/issues/1174)) [[`d6da70e`](https://github.com/PrismJS/prism/commit/d6da70e)]
1995
+ * __IchigoJam BASIC__ ([#1246](https://github.com/PrismJS/prism/issues/1246)) [[`cf840be`](https://github.com/PrismJS/prism/commit/cf840be)]
1996
+ * __Io__ ([#1251](https://github.com/PrismJS/prism/issues/1251)) [[`84ed3ed`](https://github.com/PrismJS/prism/commit/84ed3ed)]
1997
+
1998
+ ### Updated components
1999
+ * __BASIC__:
2000
+ * Make strings greedy [[`60114d0`](https://github.com/PrismJS/prism/commit/60114d0)]
2001
+ * __C++__:
2002
+ * Add C++11 raw string feature ([#1254](https://github.com/PrismJS/prism/issues/1254)) [[`71595be`](https://github.com/PrismJS/prism/commit/71595be)]
2003
+
2004
+ ### Updated plugins
2005
+ * __Autoloader__:
2006
+ * Add support for `data-autoloader-path` ([#1242](https://github.com/PrismJS/prism/issues/1242)) [[`39360d6`](https://github.com/PrismJS/prism/commit/39360d6)]
2007
+ * __Previewers__:
2008
+ * New plugin combining previous plugins Previewer: Base, Previewer: Angle, Previewer: Color, Previewer: Easing, Previewer: Gradient and Previewer: Time. ([#1244](https://github.com/PrismJS/prism/issues/1244)) [[`28e4b4c`](https://github.com/PrismJS/prism/commit/28e4b4c)]
2009
+ * __Unescaped Markup__:
2010
+ * Make it work with any language ([#1265](https://github.com/PrismJS/prism/issues/1265)) [[`7bcdae7`](https://github.com/PrismJS/prism/commit/7bcdae7)]
2011
+
2012
+ ### Other changes
2013
+ * Add attribute `style` in `package.json` ([#1256](https://github.com/PrismJS/prism/issues/1256)) [[`a9b6785`](https://github.com/PrismJS/prism/commit/a9b6785)]
2014
+
2015
+ ## 1.9.0 (2017-12-06)
2016
+
2017
+ ### New components
2018
+ * __Flow__ [[`d27b70d`](https://github.com/PrismJS/prism/commit/d27b70d)]
2019
+
2020
+ ### Updated components
2021
+ * __CSS__:
2022
+ * Unicode characters in CSS properties ([#1227](https://github.com/PrismJS/prism/issues/1227)) [[`f234ea4`](https://github.com/PrismJS/prism/commit/f234ea4)]
2023
+ * __JSX__:
2024
+ * JSX: Improve highlighting support. Fix [#1235](https://github.com/PrismJS/prism/issues/1235) and [#1236](https://github.com/PrismJS/prism/issues/1236) [[`f41c5cd`](https://github.com/PrismJS/prism/commit/f41c5cd)]
2025
+ * __Markup__:
2026
+ * Make CSS and JS inclusions in Markup greedy. Fix [#1240](https://github.com/PrismJS/prism/issues/1240) [[`7dc1e45`](https://github.com/PrismJS/prism/commit/7dc1e45)]
2027
+ * __PHP__:
2028
+ * Add support for multi-line strings. Fix [#1233](https://github.com/PrismJS/prism/issues/1233) [[`9a542a0`](https://github.com/PrismJS/prism/commit/9a542a0)]
2029
+
2030
+ ### Updated plugins
2031
+ * __Copy to clipboard__:
2032
+ * Fix test for native Clipboard. Fix [#1241](https://github.com/PrismJS/prism/issues/1241) [[`e7b5e82`](https://github.com/PrismJS/prism/commit/e7b5e82)]
2033
+ * Copy to clipboard: Update to v1.7.1. Fix [#1220](https://github.com/PrismJS/prism/issues/1220) [[`a1b85e3`](https://github.com/PrismJS/prism/commit/a1b85e3), [`af50e44`](https://github.com/PrismJS/prism/commit/af50e44)]
2034
+ * __Line highlight__:
2035
+ * Fixes to compatibility of line number and line higlight plugins ([#1194](https://github.com/PrismJS/prism/issues/1194)) [[`e63058f`](https://github.com/PrismJS/prism/commit/e63058f), [`3842a91`](https://github.com/PrismJS/prism/commit/3842a91)]
2036
+ * __Unescaped Markup__:
2037
+ * Fix ambiguity in documentation by improving examples. Fix [#1197](https://github.com/PrismJS/prism/issues/1197) [[`924784a`](https://github.com/PrismJS/prism/commit/924784a)]
2038
+
2039
+ ### Other changes
2040
+ * Allow any element being root instead of document. ([#1230](https://github.com/PrismJS/prism/issues/1230)) [[`69f2e2c`](https://github.com/PrismJS/prism/commit/69f2e2c), [`6e50d44`](https://github.com/PrismJS/prism/commit/6e50d44)]
2041
+ * Coy Theme: The 'height' element makes code blocks the height of the browser canvas. ([#1224](https://github.com/PrismJS/prism/issues/1224)) [[`ac219d7`](https://github.com/PrismJS/prism/commit/ac219d7)]
2042
+ * Download page: Fix implicitly declared variable [[`f986551`](https://github.com/PrismJS/prism/commit/f986551)]
2043
+ * Download page: Add version number at the beginning of the generated files. Fix [#788](https://github.com/PrismJS/prism/issues/788) [[`928790d`](https://github.com/PrismJS/prism/commit/928790d)]
2044
+
2045
+ ## 1.8.4 (2017-11-05)
2046
+
2047
+ ### Updated components
2048
+
2049
+ * __ABAP__:
2050
+ * Regexp optimisation [[`e7b411e`](https://github.com/PrismJS/prism/commit/e7b411e)]
2051
+ * __ActionScript__:
2052
+ * Fix XML regex + optimise [[`75d00d7`](https://github.com/PrismJS/prism/commit/75d00d7)]
2053
+ * __Ada__:
2054
+ * Regexp simplification [[`e881fe3`](https://github.com/PrismJS/prism/commit/e881fe3)]
2055
+ * __Apacheconf__:
2056
+ * Regexp optimisation [[`a065e61`](https://github.com/PrismJS/prism/commit/a065e61)]
2057
+ * __APL__:
2058
+ * Regexp simplification [[`33297c4`](https://github.com/PrismJS/prism/commit/33297c4)]
2059
+ * __AppleScript__:
2060
+ * Regexp optimisation [[`d879f36`](https://github.com/PrismJS/prism/commit/d879f36)]
2061
+ * __Arduino__:
2062
+ * Don't use captures if not needed [[`16b338f`](https://github.com/PrismJS/prism/commit/16b338f)]
2063
+ * __ASP.NET__:
2064
+ * Regexp optimisation [[`438926c`](https://github.com/PrismJS/prism/commit/438926c)]
2065
+ * __AutoHotkey__:
2066
+ * Regexp simplification + don't use captures if not needed [[`5edfd2f`](https://github.com/PrismJS/prism/commit/5edfd2f)]
2067
+ * __Bash__:
2068
+ * Regexp optimisation and simplification [[`75b9b29`](https://github.com/PrismJS/prism/commit/75b9b29)]
2069
+ * __Bro__:
2070
+ * Regexp simplification + don't use captures if not needed [[`d4b9003`](https://github.com/PrismJS/prism/commit/d4b9003)]
2071
+ * __C__:
2072
+ * Regexp optimisation + don't use captures if not needed [[`f61d487`](https://github.com/PrismJS/prism/commit/f61d487)]
2073
+ * __C++__:
2074
+ * Fix operator regexp + regexp simplification + don't use captures if not needed [[`ffeb26e`](https://github.com/PrismJS/prism/commit/ffeb26e)]
2075
+ * __C#__:
2076
+ * Remove duplicates in keywords + regexp optimisation + don't use captures if not needed [[`d28d178`](https://github.com/PrismJS/prism/commit/d28d178)]
2077
+ * __C-like__:
2078
+ * Regexp simplification + don't use captures if not needed [[`918e0ff`](https://github.com/PrismJS/prism/commit/918e0ff)]
2079
+ * __CoffeeScript__:
2080
+ * Regexp optimisation + don't use captures if not needed [[`5895978`](https://github.com/PrismJS/prism/commit/5895978)]
2081
+ * __Crystal__:
2082
+ * Remove trailing comma [[`16979a3`](https://github.com/PrismJS/prism/commit/16979a3)]
2083
+ * __CSS__:
2084
+ * Regexp simplification + don't use captures if not needed + handle multi-line style attributes [[`43d9f36`](https://github.com/PrismJS/prism/commit/43d9f36)]
2085
+ * __CSS Extras__:
2086
+ * Regexp simplification [[`134ed70`](https://github.com/PrismJS/prism/commit/134ed70)]
2087
+ * __D__:
2088
+ * Regexp optimisation [[`fbe39c9`](https://github.com/PrismJS/prism/commit/fbe39c9)]
2089
+ * __Dart__:
2090
+ * Regexp optimisation [[`f24e919`](https://github.com/PrismJS/prism/commit/f24e919)]
2091
+ * __Django__:
2092
+ * Regexp optimisation [[`a95c51d`](https://github.com/PrismJS/prism/commit/a95c51d)]
2093
+ * __Docker__:
2094
+ * Regexp optimisation [[`27f99ff`](https://github.com/PrismJS/prism/commit/27f99ff)]
2095
+ * __Eiffel__:
2096
+ * Regexp optimisation [[`b7cdea2`](https://github.com/PrismJS/prism/commit/b7cdea2)]
2097
+ * __Elixir__:
2098
+ * Regexp optimisation + uniform behavior between ~r and ~s [[`5d12e80`](https://github.com/PrismJS/prism/commit/5d12e80)]
2099
+ * __Erlang__:
2100
+ * Regexp optimisation [[`7547f83`](https://github.com/PrismJS/prism/commit/7547f83)]
2101
+ * __F#__:
2102
+ * Regexp optimisation + don't use captures if not needed [[`7753fc4`](https://github.com/PrismJS/prism/commit/7753fc4)]
2103
+ * __Gherkin__:
2104
+ * Regexp optimisation + don't use captures if not needed + added explanation comment on table-body regexp [[`f26197a`](https://github.com/PrismJS/prism/commit/f26197a)]
2105
+ * __Git__:
2106
+ * Regexp optimisation [[`b9483b9`](https://github.com/PrismJS/prism/commit/b9483b9)]
2107
+ * __GLSL__:
2108
+ * Regexp optimisation [[`e66d21b`](https://github.com/PrismJS/prism/commit/e66d21b)]
2109
+ * __Go__:
2110
+ * Regexp optimisation + don't use captures if not needed [[`88caabb`](https://github.com/PrismJS/prism/commit/88caabb)]
2111
+ * __GraphQL__:
2112
+ * Regexp optimisation and simplification [[`2474f06`](https://github.com/PrismJS/prism/commit/2474f06)]
2113
+ * __Groovy__:
2114
+ * Regexp optimisation + don't use captures if not needed [[`e74e00c`](https://github.com/PrismJS/prism/commit/e74e00c)]
2115
+ * __Haml__:
2116
+ * Regexp optimisation + don't use captures if not needed + fix typo in comment [[`23e3b43`](https://github.com/PrismJS/prism/commit/23e3b43)]
2117
+ * __Handlebars__:
2118
+ * Regexp optimisation + don't use captures if not needed [[`09dbfce`](https://github.com/PrismJS/prism/commit/09dbfce)]
2119
+ * __Haskell__:
2120
+ * Regexp simplification + don't use captures if not needed [[`f11390a`](https://github.com/PrismJS/prism/commit/f11390a)]
2121
+ * __HTTP__:
2122
+ * Regexp simplification + don't use captures if not needed [[`37ef24e`](https://github.com/PrismJS/prism/commit/37ef24e)]
2123
+ * __Icon__:
2124
+ * Regexp optimisation [[`9cf64a0`](https://github.com/PrismJS/prism/commit/9cf64a0)]
2125
+ * __J__:
2126
+ * Regexp simplification [[`de15150`](https://github.com/PrismJS/prism/commit/de15150)]
2127
+ * __Java__:
2128
+ * Don't use captures if not needed [[`96b35c8`](https://github.com/PrismJS/prism/commit/96b35c8)]
2129
+ * __JavaScript__:
2130
+ * Regexp optimisation + don't use captures if not needed [[`93d4002`](https://github.com/PrismJS/prism/commit/93d4002)]
2131
+ * __Jolie__:
2132
+ * Regexp optimisation + don't use captures if not needed + remove duplicates in keywords [[`a491f9e`](https://github.com/PrismJS/prism/commit/a491f9e)]
2133
+ * __JSON__:
2134
+ * Make strings greedy, remove negative look-ahead for ":". Fix [#1204](https://github.com/PrismJS/prism/issues/1204) [[`98acd2d`](https://github.com/PrismJS/prism/commit/98acd2d)]
2135
+ * Regexp optimisation + don't use captures if not needed [[`8fc1b03`](https://github.com/PrismJS/prism/commit/8fc1b03)]
2136
+ * __JSX__:
2137
+ * Regexp optimisation + handle spread operator as a whole [[`28de4e2`](https://github.com/PrismJS/prism/commit/28de4e2)]
2138
+ * __Julia__:
2139
+ * Regexp optimisation and simplification [[`12684c0`](https://github.com/PrismJS/prism/commit/12684c0)]
2140
+ * __Keyman__:
2141
+ * Regexp optimisation + don't use captures if not needed [[`9726087`](https://github.com/PrismJS/prism/commit/9726087)]
2142
+ * __Kotlin__:
2143
+ * Regexp simplification [[`12ff8dc`](https://github.com/PrismJS/prism/commit/12ff8dc)]
2144
+ * __LaTeX__:
2145
+ * Regexp optimisation and simplification [[`aa426b0`](https://github.com/PrismJS/prism/commit/aa426b0)]
2146
+ * __LiveScript__:
2147
+ * Make interpolated strings greedy + fix variable and identifier regexps [[`c581049`](https://github.com/PrismJS/prism/commit/c581049)]
2148
+ * __LOLCODE__:
2149
+ * Don't use captures if not needed [[`52903af`](https://github.com/PrismJS/prism/commit/52903af)]
2150
+ * __Makefile__:
2151
+ * Regexp optimisation [[`20ae2e5`](https://github.com/PrismJS/prism/commit/20ae2e5)]
2152
+ * __Markdown__:
2153
+ * Don't use captures if not needed [[`f489a1e`](https://github.com/PrismJS/prism/commit/f489a1e)]
2154
+ * __Markup__:
2155
+ * Regexp optimisation + fix punctuation inside attr-value [[`ea380c6`](https://github.com/PrismJS/prism/commit/ea380c6)]
2156
+ * __MATLAB__:
2157
+ * Make strings greedy + handle line feeds better [[`4cd4f01`](https://github.com/PrismJS/prism/commit/4cd4f01)]
2158
+ * __Monkey__:
2159
+ * Don't use captures if not needed [[`7f47140`](https://github.com/PrismJS/prism/commit/7f47140)]
2160
+ * __N4JS__:
2161
+ * Don't use captures if not needed [[`2d3f9df`](https://github.com/PrismJS/prism/commit/2d3f9df)]
2162
+ * __NASM__:
2163
+ * Regexp optimisation and simplification + don't use captures if not needed [[`9937428`](https://github.com/PrismJS/prism/commit/9937428)]
2164
+ * __nginx__:
2165
+ * Remove trailing comma + remove duplicates in keywords [[`c6e7195`](https://github.com/PrismJS/prism/commit/c6e7195)]
2166
+ * __NSIS__:
2167
+ * Regexp optimisation + don't use captures if not needed [[`beeb107`](https://github.com/PrismJS/prism/commit/beeb107)]
2168
+ * __Objective-C__:
2169
+ * Don't use captures if not needed [[`9be0f88`](https://github.com/PrismJS/prism/commit/9be0f88)]
2170
+ * __OCaml__:
2171
+ * Regexp simplification [[`5f5f38c`](https://github.com/PrismJS/prism/commit/5f5f38c)]
2172
+ * __OpenCL__:
2173
+ * Don't use captures if not needed [[`5e70f1d`](https://github.com/PrismJS/prism/commit/5e70f1d)]
2174
+ * __Oz__:
2175
+ * Fix atom regexp [[`9320e92`](https://github.com/PrismJS/prism/commit/9320e92)]
2176
+ * __PARI/GP__:
2177
+ * Regexp optimisation [[`2c7b59b`](https://github.com/PrismJS/prism/commit/2c7b59b)]
2178
+ * __Parser__:
2179
+ * Regexp simplification [[`569d511`](https://github.com/PrismJS/prism/commit/569d511)]
2180
+ * __Perl__:
2181
+ * Regexp optimisation and simplification + don't use captures if not needed [[`0fe4cf6`](https://github.com/PrismJS/prism/commit/0fe4cf6)]
2182
+ * __PHP__:
2183
+ * Don't use captures if not needed Golmote [[`5235f18`](https://github.com/PrismJS/prism/commit/5235f18)]
2184
+ * __PHP Extras__:
2185
+ * Add word boundary after global keywords + don't use captures if not needed [[`9049a2a`](https://github.com/PrismJS/prism/commit/9049a2a)]
2186
+ * __PowerShell__:
2187
+ * Regexp optimisation + don't use captures if not needed [[`0d05957`](https://github.com/PrismJS/prism/commit/0d05957)]
2188
+ * __Processing__:
2189
+ * Regexp simplification [[`8110d38`](https://github.com/PrismJS/prism/commit/8110d38)]
2190
+ * __.properties__:
2191
+ * Regexp optimisation [[`678b621`](https://github.com/PrismJS/prism/commit/678b621)]
2192
+ * __Protocol Buffers__:
2193
+ * Don't use captures if not needed [[`3e256d8`](https://github.com/PrismJS/prism/commit/3e256d8)]
2194
+ * __Pug__:
2195
+ * Don't use captures if not needed [[`76dc925`](https://github.com/PrismJS/prism/commit/76dc925)]
2196
+ * __Pure__:
2197
+ * Make inline-lang greedy [[`92318b0`](https://github.com/PrismJS/prism/commit/92318b0)]
2198
+ * __Python__:
2199
+ * Add Python builtin function highlighting ([#1205](https://github.com/PrismJS/prism/issues/1205)) [[`2169c99`](https://github.com/PrismJS/prism/commit/2169c99)]
2200
+ * Python: Add highlighting to functions with space between name and parentheses ([#1207](https://github.com/PrismJS/prism/issues/1207)) [[`3badd8a`](https://github.com/PrismJS/prism/commit/3badd8a)]
2201
+ * Make triple-quoted strings greedy + regexp optimisation and simplification [[`f09f9f5`](https://github.com/PrismJS/prism/commit/f09f9f5)]
2202
+ * __Qore__:
2203
+ * Regexp simplification [[`69459f0`](https://github.com/PrismJS/prism/commit/69459f0)]
2204
+ * __R__:
2205
+ * Regexp optimisation [[`06a9da4`](https://github.com/PrismJS/prism/commit/06a9da4)]
2206
+ * __Reason__:
2207
+ * Regexp optimisation + don't use capture if not needed [[`19d79b4`](https://github.com/PrismJS/prism/commit/19d79b4)]
2208
+ * __Ren'py__:
2209
+ * Make strings greedy + don't use captures if not needed [[`91d84d9`](https://github.com/PrismJS/prism/commit/91d84d9)]
2210
+ * __reST__:
2211
+ * Regexp simplification + don't use captures if not needed [[`1a8b3e9`](https://github.com/PrismJS/prism/commit/1a8b3e9)]
2212
+ * __Rip__:
2213
+ * Regexp optimisation [[`d7f0ee8`](https://github.com/PrismJS/prism/commit/d7f0ee8)]
2214
+ * __Ruby__:
2215
+ * Regexp optimisation and simplification + don't use captures if not needed [[`4902ed4`](https://github.com/PrismJS/prism/commit/4902ed4)]
2216
+ * __Rust__:
2217
+ * Regexp optimisation and simplification + don't use captures if not needed [[`cc9d874`](https://github.com/PrismJS/prism/commit/cc9d874)]
2218
+ * __Sass__:
2219
+ * Regexp simplification Golmote [[`165d957`](https://github.com/PrismJS/prism/commit/165d957)]
2220
+ * __Scala__:
2221
+ * Regexp optimisation Golmote [[`5f50c12`](https://github.com/PrismJS/prism/commit/5f50c12)]
2222
+ * __Scheme__:
2223
+ * Regexp optimisation [[`bd19b04`](https://github.com/PrismJS/prism/commit/bd19b04)]
2224
+ * __SCSS__:
2225
+ * Regexp simplification [[`c60b7d4`](https://github.com/PrismJS/prism/commit/c60b7d4)]
2226
+ * __Smalltalk__:
2227
+ * Regexp simplification [[`41a2c76`](https://github.com/PrismJS/prism/commit/41a2c76)]
2228
+ * __Smarty__:
2229
+ * Regexp optimisation and simplification [[`e169be9`](https://github.com/PrismJS/prism/commit/e169be9)]
2230
+ * __SQL__:
2231
+ * Regexp optimisation [[`a6244a4`](https://github.com/PrismJS/prism/commit/a6244a4)]
2232
+ * __Stylus__:
2233
+ * Regexp optimisation [[`df9506c`](https://github.com/PrismJS/prism/commit/df9506c)]
2234
+ * __Swift__:
2235
+ * Don't use captures if not needed [[`a2d737a`](https://github.com/PrismJS/prism/commit/a2d737a)]
2236
+ * __Tcl__:
2237
+ * Regexp simplification + don't use captures if not needed [[`f0b8a33`](https://github.com/PrismJS/prism/commit/f0b8a33)]
2238
+ * __Textile__:
2239
+ * Regexp optimisation + don't use captures if not needed [[`08139ad`](https://github.com/PrismJS/prism/commit/08139ad)]
2240
+ * __Twig__:
2241
+ * Regexp optimisation and simplification + don't use captures if not needed [[`0b10fd0`](https://github.com/PrismJS/prism/commit/0b10fd0)]
2242
+ * __TypeScript__:
2243
+ * Don't use captures if not needed [[`e296caf`](https://github.com/PrismJS/prism/commit/e296caf)]
2244
+ * __Verilog__:
2245
+ * Regexp simplification [[`1b24b34`](https://github.com/PrismJS/prism/commit/1b24b34)]
2246
+ * __VHDL__:
2247
+ * Regexp optimisation and simplification [[`7af36df`](https://github.com/PrismJS/prism/commit/7af36df)]
2248
+ * __vim__:
2249
+ * Remove duplicates in keywords [[`700505e`](https://github.com/PrismJS/prism/commit/700505e)]
2250
+ * __Wiki markup__:
2251
+ * Fix escaping consistency [[`1fd690d`](https://github.com/PrismJS/prism/commit/1fd690d)]
2252
+ * __YAML__:
2253
+ * Regexp optimisation + don't use captures if not needed [[`1fd690d`](https://github.com/PrismJS/prism/commit/1fd690d)]
2254
+
2255
+ ### Other changes
2256
+ * Remove comments spellcheck for AMP validation ([#1106](https://github.com/PrismJS/prism/issues/1106)) [[`de996d7`](https://github.com/PrismJS/prism/commit/de996d7)]
2257
+ * Prevent error from throwing when element does not have a parentNode in highlightElement. [[`c33be19`](https://github.com/PrismJS/prism/commit/c33be19)]
2258
+ * Provide a way to load Prism from inside a Worker without listening to messages. ([#1188](https://github.com/PrismJS/prism/issues/1188)) [[`d09982d`](https://github.com/PrismJS/prism/commit/d09982d)]
2259
+
2260
+ ## 1.8.3 (2017-10-19)
2261
+
2262
+ ### Other changes
2263
+
2264
+ * Fix inclusion tests for Pug [[`955c2ab`](https://github.com/PrismJS/prism/commit/955c2ab)]
2265
+
2266
+ ## 1.8.2 (2017-10-19)
2267
+
2268
+ ### Updated components
2269
+ * __Jade__:
2270
+ * Jade has been renamed to __Pug__ ([#1201](https://github.com/PrismJS/prism/issues/1201)) [[`bcfef7c`](https://github.com/PrismJS/prism/commit/bcfef7c)]
2271
+ * __JavaScript__:
2272
+ * Better highlighting of functions ([#1190](https://github.com/PrismJS/prism/issues/1190)) [[`8ee2cd3`](https://github.com/PrismJS/prism/commit/8ee2cd3)]
2273
+
2274
+ ### Update plugins
2275
+ * __Copy to clipboard__:
2276
+ * Fix error occurring when using in Chrome 61+ ([#1206](https://github.com/PrismJS/prism/issues/1206)) [[`b41d571`](https://github.com/PrismJS/prism/commit/b41d571)]
2277
+ * __Show invisibles__:
2278
+ * Prevent error when using with Autoloader plugin ([#1195](https://github.com/PrismJS/prism/issues/1195)) [[`ed8bdb5`](https://github.com/PrismJS/prism/commit/ed8bdb5)]
2279
+
2280
+ ## 1.8.1 (2017-09-16)
2281
+
2282
+ ### Other changes
2283
+
2284
+ * Add Arduino to components.js [[`290a3c6`](https://github.com/PrismJS/prism/commit/290a3c6)]
2285
+
2286
+ ## 1.8.0 (2017-09-16)
2287
+
2288
+ ### New components
2289
+
2290
+ * __Arduino__ ([#1184](https://github.com/PrismJS/prism/issues/1184)) [[`edf2454`](https://github.com/PrismJS/prism/commit/edf2454)]
2291
+ * __OpenCL__ ([#1175](https://github.com/PrismJS/prism/issues/1175)) [[`131e8fa`](https://github.com/PrismJS/prism/commit/131e8fa)]
2292
+
2293
+ ### Updated plugins
2294
+
2295
+ * __Autolinker__:
2296
+ * Silently catch any error thrown by decodeURIComponent. Fixes [#1186](https://github.com/PrismJS/prism/issues/1186) [[`2e43fcf`](https://github.com/PrismJS/prism/commit/2e43fcf)]
2297
+
2298
+ ## 1.7.0 (2017-09-09)
2299
+
2300
+ ### New components
2301
+
2302
+ * __Django/Jinja2__ ([#1085](https://github.com/PrismJS/prism/issues/1085)) [[`345b1b2`](https://github.com/PrismJS/prism/commit/345b1b2)]
2303
+ * __N4JS__ ([#1141](https://github.com/PrismJS/prism/issues/1141)) [[`eaa8ebb`](https://github.com/PrismJS/prism/commit/eaa8ebb)]
2304
+ * __Ren'py__ ([#658](https://github.com/PrismJS/prism/issues/658)) [[`7ab4013`](https://github.com/PrismJS/prism/commit/7ab4013)]
2305
+ * __VB.Net__ ([#1122](https://github.com/PrismJS/prism/issues/1122)) [[`5400651`](https://github.com/PrismJS/prism/commit/5400651)]
2306
+
2307
+ ### Updated components
2308
+
2309
+ * __APL__:
2310
+ * Add left shoe underbar and right shoe underbar ([#1072](https://github.com/PrismJS/prism/issues/1072)) [[`12238c5`](https://github.com/PrismJS/prism/commit/12238c5)]
2311
+ * Update prism-apl.js ([#1126](https://github.com/PrismJS/prism/issues/1126)) [[`a5f3cdb`](https://github.com/PrismJS/prism/commit/a5f3cdb)]
2312
+ * __C__:
2313
+ * Add more keywords and constants for C. ([#1029](https://github.com/PrismJS/prism/issues/1029)) [[`43a388e`](https://github.com/PrismJS/prism/commit/43a388e)]
2314
+ * __C#__:
2315
+ * Fix wrong highlighting when three slashes appear inside string. Fix [#1091](https://github.com/PrismJS/prism/issues/1091) [[`dfb6f17`](https://github.com/PrismJS/prism/commit/dfb6f17)]
2316
+ * __C-like__:
2317
+ * Add support for unclosed block comments. Close [#828](https://github.com/PrismJS/prism/issues/828) [[`3426ed1`](https://github.com/PrismJS/prism/commit/3426ed1)]
2318
+ * __Crystal__:
2319
+ * Update Crystal keywords ([#1092](https://github.com/PrismJS/prism/issues/1092)) [[`125bff1`](https://github.com/PrismJS/prism/commit/125bff1)]
2320
+ * __CSS Extras__:
2321
+ * Support CSS #RRGGBBAA ([#1139](https://github.com/PrismJS/prism/issues/1139)) [[`07a6806`](https://github.com/PrismJS/prism/commit/07a6806)]
2322
+ * __Docker__:
2323
+ * Add dockerfile alias for docker language ([#1164](https://github.com/PrismJS/prism/issues/1164)) [[`601c47f`](https://github.com/PrismJS/prism/commit/601c47f)]
2324
+ * Update the list of keywords for dockerfiles ([#1180](https://github.com/PrismJS/prism/issues/1180)) [[`f0d73e0`](https://github.com/PrismJS/prism/commit/f0d73e0)]
2325
+ * __Eiffel__:
2326
+ * Add class-name highlighting for Eiffel ([#471](https://github.com/PrismJS/prism/issues/471)) [[`cd03587`](https://github.com/PrismJS/prism/commit/cd03587)]
2327
+ * __Handlebars__:
2328
+ * Check for possible pre-existing marker strings in Handlebars [[`7a1a404`](https://github.com/PrismJS/prism/commit/7a1a404)]
2329
+ * __JavaScript__:
2330
+ * Properly match every operator as a whole token. Fix [#1133](https://github.com/PrismJS/prism/issues/1133) [[`9f649fb`](https://github.com/PrismJS/prism/commit/9f649fb)]
2331
+ * Allows uppercase prefixes in JS number literals ([#1151](https://github.com/PrismJS/prism/issues/1151)) [[`d4ee904`](https://github.com/PrismJS/prism/commit/d4ee904)]
2332
+ * Reduced backtracking in regex pattern. Fix [#1159](https://github.com/PrismJS/prism/issues/1159) [[`ac09e97`](https://github.com/PrismJS/prism/commit/ac09e97)]
2333
+ * __JSON__:
2334
+ * Fix property and string patterns performance. Fix [#1080](https://github.com/PrismJS/prism/issues/1080) [[`0ca1353`](https://github.com/PrismJS/prism/commit/0ca1353)]
2335
+ * __JSX__:
2336
+ * JSX spread operator break. Fixes [#1061](https://github.com/PrismJS/prism/issues/1061) ([#1094](https://github.com/PrismJS/prism/issues/1094)) [[`561bceb`](https://github.com/PrismJS/prism/commit/561bceb)]
2337
+ * Fix highlighting of attributes containing spaces [[`867ea42`](https://github.com/PrismJS/prism/commit/867ea42)]
2338
+ * Improved performance for tags (when not matching) Fix [#1152](https://github.com/PrismJS/prism/issues/1152) [[`b0fe103`](https://github.com/PrismJS/prism/commit/b0fe103)]
2339
+ * __LOLCODE__:
2340
+ * Make strings greedy Golmote [[`1a5e7a4`](https://github.com/PrismJS/prism/commit/1a5e7a4)]
2341
+ * __Markup__:
2342
+ * Support HTML entities in attribute values ([#1143](https://github.com/PrismJS/prism/issues/1143)) [[`1d5047d`](https://github.com/PrismJS/prism/commit/1d5047d)]
2343
+ * __NSIS__:
2344
+ * Update patterns ([#1033](https://github.com/PrismJS/prism/issues/1033)) [[`01a59d8`](https://github.com/PrismJS/prism/commit/01a59d8)]
2345
+ * Add support for NSIS 3.02 ([#1169](https://github.com/PrismJS/prism/issues/1169)) [[`393b5f7`](https://github.com/PrismJS/prism/commit/393b5f7)]
2346
+ * __PHP__:
2347
+ * Fix the PHP language ([#1100](https://github.com/PrismJS/prism/issues/1100)) [[`1453fa7`](https://github.com/PrismJS/prism/commit/1453fa7)]
2348
+ * Check for possible pre-existing marker strings in PHP [[`36bc560`](https://github.com/PrismJS/prism/commit/36bc560)]
2349
+ * __Ruby__:
2350
+ * Fix slash regex performance. Fix [#1083](https://github.com/PrismJS/prism/issues/1083) [[`a708730`](https://github.com/PrismJS/prism/commit/a708730)]
2351
+ * Add support for =begin =end comments. Manual merge of [#1121](https://github.com/PrismJS/prism/issues/1121). [[`62cdaf8`](https://github.com/PrismJS/prism/commit/62cdaf8)]
2352
+ * __Smarty__:
2353
+ * Check for possible pre-existing marker strings in Smarty [[`5df26e2`](https://github.com/PrismJS/prism/commit/5df26e2)]
2354
+ * __TypeScript__:
2355
+ * Update typescript keywords ([#1064](https://github.com/PrismJS/prism/issues/1064)) [[`52020a0`](https://github.com/PrismJS/prism/commit/52020a0)]
2356
+ * Chmod -x prism-typescript component ([#1145](https://github.com/PrismJS/prism/issues/1145)) [[`afe0542`](https://github.com/PrismJS/prism/commit/afe0542)]
2357
+ * __YAML__:
2358
+ * Make strings greedy (partial fix for [#1075](https://github.com/PrismJS/prism/issues/1075)) [[`565a2cc`](https://github.com/PrismJS/prism/commit/565a2cc)]
2359
+
2360
+ ### Updated plugins
2361
+
2362
+ * __Autolinker__:
2363
+ * Fixed an rendering issue for encoded urls ([#1173](https://github.com/PrismJS/prism/issues/1173)) [[`abc007f`](https://github.com/PrismJS/prism/commit/abc007f)]
2364
+ * __Custom Class__:
2365
+ * Add missing noCSS property for the Custom Class plugin [[`ba64f8d`](https://github.com/PrismJS/prism/commit/ba64f8d)]
2366
+ * Added a default for classMap. Fixes [#1137](https://github.com/PrismJS/prism/issues/1137). ([#1157](https://github.com/PrismJS/prism/issues/1157)) [[`5400af9`](https://github.com/PrismJS/prism/commit/5400af9)]
2367
+ * __Keep Markup__:
2368
+ * Store highlightedCode after reinserting markup. Fix [#1127](https://github.com/PrismJS/prism/issues/1127) [[`6df2ceb`](https://github.com/PrismJS/prism/commit/6df2ceb)]
2369
+ * __Line Highlight__:
2370
+ * Cleanup left-over line-highlight tags before other plugins run [[`79b723d`](https://github.com/PrismJS/prism/commit/79b723d)]
2371
+ * Avoid conflict between line-highlight and other plugins [[`224fdb8`](https://github.com/PrismJS/prism/commit/224fdb8)]
2372
+ * __Line Numbers__:
2373
+ * Support soft wrap for line numbers plugin ([#584](https://github.com/PrismJS/prism/issues/584)) [[`849f1d6`](https://github.com/PrismJS/prism/commit/849f1d6)]
2374
+ * Plugins fixes (unescaped-markup, line-numbers) ([#1012](https://github.com/PrismJS/prism/issues/1012)) [[`3fb7cf8`](https://github.com/PrismJS/prism/commit/3fb7cf8)]
2375
+ * __Normalize Whitespace__:
2376
+ * Add Node.js support for the normalize-whitespace plugin [[`6c7dae2`](https://github.com/PrismJS/prism/commit/6c7dae2)]
2377
+ * __Unescaped Markup__:
2378
+ * Plugins fixes (unescaped-markup, line-numbers) ([#1012](https://github.com/PrismJS/prism/issues/1012)) [[`3fb7cf8`](https://github.com/PrismJS/prism/commit/3fb7cf8)]
2379
+
2380
+ ### Updated themes
2381
+ * __Coy__:
2382
+ * Scroll 'Coy' background with contents ([#1163](https://github.com/PrismJS/prism/issues/1163)) [[`310990b`](https://github.com/PrismJS/prism/commit/310990b)]
2383
+
2384
+ ### Other changes
2385
+
2386
+ * Initial implementation of manual highlighting ([#1087](https://github.com/PrismJS/prism/issues/1087)) [[`bafc4cb`](https://github.com/PrismJS/prism/commit/bafc4cb)]
2387
+ * Remove dead link in Third-party tutorials section. Fixes [#1028](https://github.com/PrismJS/prism/issues/1028) [[`dffadc6`](https://github.com/PrismJS/prism/commit/dffadc6)]
2388
+ * Most languages now use the greedy flag for better highlighting [[`7549ecc`](https://github.com/PrismJS/prism/commit/7549ecc)]
2389
+ * .npmignore: Unignore components.js ([#1108](https://github.com/PrismJS/prism/issues/1108)) [[`1f699e7`](https://github.com/PrismJS/prism/commit/1f699e7)]
2390
+ * Run before-highlight and after-highlight hooks even when no grammar is found. Fix [#1134](https://github.com/PrismJS/prism/issues/1134) [[`70cb472`](https://github.com/PrismJS/prism/commit/70cb472)]
2391
+ * Replace [\w\W] with [\s\S] and [0-9] with \d in regexes ([#1107](https://github.com/PrismJS/prism/issues/1107)) [[`8aa2cc4`](https://github.com/PrismJS/prism/commit/8aa2cc4)]
2392
+ * Fix corner cases for the greedy flag ([#1095](https://github.com/PrismJS/prism/issues/1095)) [[`6530709`](https://github.com/PrismJS/prism/commit/6530709)]
2393
+ * Add Third Party Tutorial ([#1156](https://github.com/PrismJS/prism/issues/1156)) [[`c34e57b`](https://github.com/PrismJS/prism/commit/c34e57b)]
2394
+ * Add Composer support ([#648](https://github.com/PrismJS/prism/issues/648)) [[`2989633`](https://github.com/PrismJS/prism/commit/2989633)]
2395
+ * Remove IE8 plugin ([#992](https://github.com/PrismJS/prism/issues/992)) [[`25788eb`](https://github.com/PrismJS/prism/commit/25788eb)]
2396
+ * Website: remove width and height on logo.svg, so it becomes scalable. Close [#1005](https://github.com/PrismJS/prism/issues/1005) [[`0621ff7`](https://github.com/PrismJS/prism/commit/0621ff7)]
2397
+ * Remove yarn.lock ([#1098](https://github.com/PrismJS/prism/issues/1098)) [[`11eed25`](https://github.com/PrismJS/prism/commit/11eed25)]
2398
+
2399
+ ## 1.6.0 (2016-12-03)
2400
+
2401
+ ### New components
2402
+
2403
+ * __.properties__ ([#980](https://github.com/PrismJS/prism/issues/980)) [[`be6219a`](https://github.com/PrismJS/prism/commit/be6219a)]
2404
+ * __Ada__ ([#949](https://github.com/PrismJS/prism/issues/949)) [[`65619f7`](https://github.com/PrismJS/prism/commit/65619f7)]
2405
+ * __GraphQL__ ([#971](https://github.com/PrismJS/prism/issues/971)) [[`e018087`](https://github.com/PrismJS/prism/commit/e018087)]
2406
+ * __Jolie__ ([#1014](https://github.com/PrismJS/prism/issues/1014)) [[`dfc1941`](https://github.com/PrismJS/prism/commit/dfc1941)]
2407
+ * __LiveScript__ ([#982](https://github.com/PrismJS/prism/issues/982)) [[`62e258c`](https://github.com/PrismJS/prism/commit/62e258c)]
2408
+ * __Reason__ (Fixes [#1046](https://github.com/PrismJS/prism/issues/1046)) [[`3cae6ce`](https://github.com/PrismJS/prism/commit/3cae6ce)]
2409
+ * __Xojo__ ([#994](https://github.com/PrismJS/prism/issues/994)) [[`0224b7c`](https://github.com/PrismJS/prism/commit/0224b7c)]
2410
+
2411
+ ### Updated components
2412
+
2413
+ * __APL__:
2414
+ * Add iota underbar ([#1024](https://github.com/PrismJS/prism/issues/1024)) [[`3c5c89a`](https://github.com/PrismJS/prism/commit/3c5c89a), [`ac21d33`](https://github.com/PrismJS/prism/commit/ac21d33)]
2415
+ * __AsciiDoc__:
2416
+ * Optimized block regexps to prevent struggling on large files. Fixes [#1001](https://github.com/PrismJS/prism/issues/1001). [[`1a86d34`](https://github.com/PrismJS/prism/commit/1a86d34)]
2417
+ * __Bash__:
2418
+ * Add `npm` to function list ([#969](https://github.com/PrismJS/prism/issues/969)) [[`912bdfe`](https://github.com/PrismJS/prism/commit/912bdfe)]
2419
+ * __CSS__:
2420
+ * Make CSS strings greedy. Fix [#1013](https://github.com/PrismJS/prism/issues/1013). [[`e57e26d`](https://github.com/PrismJS/prism/commit/e57e26d)]
2421
+ * __CSS Extras__:
2422
+ * Match attribute inside selectors [[`13fed76`](https://github.com/PrismJS/prism/commit/13fed76)]
2423
+ * __Groovy__:
2424
+ * Fix order of decoding entities in groovy. Fixes [#1049](https://github.com/PrismJS/prism/issues/1049) ([#1050](https://github.com/PrismJS/prism/issues/1050)) [[`d75da8e`](https://github.com/PrismJS/prism/commit/d75da8e)]
2425
+ * __Ini__:
2426
+ * Remove important token in ini definition ([#1047](https://github.com/PrismJS/prism/issues/1047)) [[`fe8ad8b`](https://github.com/PrismJS/prism/commit/fe8ad8b)]
2427
+ * __JavaScript__:
2428
+ * Add exponentiation & spread/rest operator ([#991](https://github.com/PrismJS/prism/issues/991)) [[`b2de65a`](https://github.com/PrismJS/prism/commit/b2de65a), [`268d01e`](https://github.com/PrismJS/prism/commit/268d01e)]
2429
+ * __JSON__:
2430
+ * JSON: Fixed issues with properties and strings + added tests. Fix [#1025](https://github.com/PrismJS/prism/issues/1025) [[`25a541d`](https://github.com/PrismJS/prism/commit/25a541d)]
2431
+ * __Markup__:
2432
+ * Allow for dots in Markup tag names, but not in HTML tags included in Textile. Fixes [#888](https://github.com/PrismJS/prism/issues/888). [[`31ea66b`](https://github.com/PrismJS/prism/commit/31ea66b)]
2433
+ * Make doctype case-insensitive ([#1009](https://github.com/PrismJS/prism/issues/1009)) [[`3dd7219`](https://github.com/PrismJS/prism/commit/3dd7219)]
2434
+ * __NSIS__:
2435
+ * Updated patterns ([#1032](https://github.com/PrismJS/prism/issues/1032)) [[`76ba1b8`](https://github.com/PrismJS/prism/commit/76ba1b8)]
2436
+ * __PHP__:
2437
+ * Make comments greedy. Fix [#197](https://github.com/PrismJS/prism/issues/197) [[`318aab3`](https://github.com/PrismJS/prism/commit/318aab3)]
2438
+ * __PowerShell__:
2439
+ * Fix highlighting of empty comments ([#977](https://github.com/PrismJS/prism/issues/977)) [[`4fda477`](https://github.com/PrismJS/prism/commit/4fda477)]
2440
+ * __Puppet__:
2441
+ * Fix over-greedy regexp detection ([#978](https://github.com/PrismJS/prism/issues/978)) [[`105be25`](https://github.com/PrismJS/prism/commit/105be25)]
2442
+ * __Ruby__:
2443
+ * Fix typo `Fload` to `Float` in prism-ruby.js ([#1023](https://github.com/PrismJS/prism/issues/1023)) [[`22cb018`](https://github.com/PrismJS/prism/commit/22cb018)]
2444
+ * Make strings greedy. Fixes [#1048](https://github.com/PrismJS/prism/issues/1048) [[`8b0520a`](https://github.com/PrismJS/prism/commit/8b0520a)]
2445
+ * __SCSS__:
2446
+ * Alias statement as keyword. Fix [#246](https://github.com/PrismJS/prism/issues/246) [[`fd09391`](https://github.com/PrismJS/prism/commit/fd09391)]
2447
+ * Highlight variables inside selectors and properties. [[`d6b5c2f`](https://github.com/PrismJS/prism/commit/d6b5c2f)]
2448
+ * Highlight parent selector [[`8f5f1fa`](https://github.com/PrismJS/prism/commit/8f5f1fa)]
2449
+ * __TypeScript__:
2450
+ * Add missing `from` keyword to typescript & set `ts` as alias. ([#1042](https://github.com/PrismJS/prism/issues/1042)) [[`cba78f3`](https://github.com/PrismJS/prism/commit/cba78f3)]
2451
+
2452
+ ### New plugins
2453
+
2454
+ * __Copy to Clipboard__ ([#891](https://github.com/PrismJS/prism/issues/891)) [[`07b81ac`](https://github.com/PrismJS/prism/commit/07b81ac)]
2455
+ * __Custom Class__ ([#950](https://github.com/PrismJS/prism/issues/950)) [[`a0bd686`](https://github.com/PrismJS/prism/commit/a0bd686)]
2456
+ * __Data-URI Highlight__ ([#996](https://github.com/PrismJS/prism/issues/996)) [[`bdca61b`](https://github.com/PrismJS/prism/commit/bdca61b)]
2457
+ * __Toolbar__ ([#891](https://github.com/PrismJS/prism/issues/891)) [[`07b81ac`](https://github.com/PrismJS/prism/commit/07b81ac)]
2458
+
2459
+ ### Updated plugins
2460
+
2461
+ * __Autoloader__:
2462
+ * Updated documentation for Autoloader plugin [[`b4f3423`](https://github.com/PrismJS/prism/commit/b4f3423)]
2463
+ * Download all grammars as a zip from Autoloader plugin page ([#981](https://github.com/PrismJS/prism/issues/981)) [[`0d0a007`](https://github.com/PrismJS/prism/commit/0d0a007), [`5c815d3`](https://github.com/PrismJS/prism/commit/5c815d3)]
2464
+ * Removed duplicated script on Autoloader plugin page [[`9671996`](https://github.com/PrismJS/prism/commit/9671996)]
2465
+ * Don't try to load "none" component. Fix [#1000](https://github.com/PrismJS/prism/issues/1000) [[`f89b0b9`](https://github.com/PrismJS/prism/commit/f89b0b9)]
2466
+ * __WPD__:
2467
+ * Fix at-rule detection + don't process if language is not handled [[`2626728`](https://github.com/PrismJS/prism/commit/2626728)]
2468
+
2469
+ ### Other changes
2470
+
2471
+ * Improvement to greedy-flag ([#967](https://github.com/PrismJS/prism/issues/967)) [[`500121b`](https://github.com/PrismJS/prism/commit/500121b), [`9893489`](https://github.com/PrismJS/prism/commit/9893489)]
2472
+ * Add setTimeout fallback for requestAnimationFrame. Fixes [#987](https://github.com/PrismJS/prism/issues/987). ([#988](https://github.com/PrismJS/prism/issues/988)) [[`c9bdcd3`](https://github.com/PrismJS/prism/commit/c9bdcd3)]
2473
+ * Added aria-hidden attributes on elements created by the Line Highlight and Line Numbers plugins. Fixes [#574](https://github.com/PrismJS/prism/issues/574). [[`e5587a7`](https://github.com/PrismJS/prism/commit/e5587a7)]
2474
+ * Don't insert space before ">" when there is no attributes [[`3dc8c9e`](https://github.com/PrismJS/prism/commit/3dc8c9e)]
2475
+ * Added missing hooks-related tests for AsciiDoc, Groovy, Handlebars, Markup, PHP and Smarty [[`c1a0c1b`](https://github.com/PrismJS/prism/commit/c1a0c1b)]
2476
+ * Fix issue when using Line numbers plugin and Normalise whitespace plugin together with Handlebars, PHP or Smarty. Fix [#1018](https://github.com/PrismJS/prism/issues/1018), [#997](https://github.com/PrismJS/prism/issues/997), [#935](https://github.com/PrismJS/prism/issues/935). Revert [#998](https://github.com/PrismJS/prism/issues/998). [[`86aa3d2`](https://github.com/PrismJS/prism/commit/86aa3d2)]
2477
+ * Optimized logo ([#990](https://github.com/PrismJS/prism/issues/990)) ([#1002](https://github.com/PrismJS/prism/issues/1002)) [[`f69e570`](https://github.com/PrismJS/prism/commit/f69e570), [`218fd25`](https://github.com/PrismJS/prism/commit/218fd25)]
2478
+ * Remove unneeded prefixed CSS ([#989](https://github.com/PrismJS/prism/issues/989)) [[`5e56833`](https://github.com/PrismJS/prism/commit/5e56833)]
2479
+ * Optimize images ([#1007](https://github.com/PrismJS/prism/issues/1007)) [[`b2fa6d5`](https://github.com/PrismJS/prism/commit/b2fa6d5)]
2480
+ * Add yarn.lock to .gitignore ([#1035](https://github.com/PrismJS/prism/issues/1035)) [[`03ecf74`](https://github.com/PrismJS/prism/commit/03ecf74)]
2481
+ * Fix greedy flag bug. Fixes [#1039](https://github.com/PrismJS/prism/issues/1039) [[`32cd99f`](https://github.com/PrismJS/prism/commit/32cd99f)]
2482
+ * Ruby: Fix test after [#1023](https://github.com/PrismJS/prism/issues/1023) [[`b15d43b`](https://github.com/PrismJS/prism/commit/b15d43b)]
2483
+ * Ini: Fix test after [#1047](https://github.com/PrismJS/prism/issues/1047) [[`25cdd3f`](https://github.com/PrismJS/prism/commit/25cdd3f)]
2484
+ * Reduce risk of XSS ([#1051](https://github.com/PrismJS/prism/issues/1051)) [[`17e33bc`](https://github.com/PrismJS/prism/commit/17e33bc)]
2485
+ * env.code can be modified by before-sanity-check hook even when using language-none. Fix [#1066](https://github.com/PrismJS/prism/issues/1066) [[`83bafbd`](https://github.com/PrismJS/prism/commit/83bafbd)]
2486
+
2487
+
2488
+ ## 1.5.1 (2016-06-05)
2489
+
2490
+ ### Updated components
2491
+
2492
+ * __Normalize Whitespace__:
2493
+ * Add class that disables the normalize whitespace plugin [[`9385c54`](https://github.com/PrismJS/prism/commit/9385c54)]
2494
+ * __JavaScript Language__:
2495
+ * Rearrange the `string` and `template-string` token in JavaScript [[`1158e46`](https://github.com/PrismJS/prism/commit/1158e46)]
2496
+ * __SQL Language__:
2497
+ * add delimeter and delimeters keywords to sql ([#958](https://github.com/PrismJS/prism/pull/958)) [[`a9ef24e`](https://github.com/PrismJS/prism/commit/a9ef24e)]
2498
+ * add AUTO_INCREMENT and DATE keywords to sql ([#954](https://github.com/PrismJS/prism/pull/954)) [[`caea2af`](https://github.com/PrismJS/prism/commit/caea2af)]
2499
+ * __Diff Language__:
2500
+ * Highlight diff lines with only + or - ([#952](https://github.com/PrismJS/prism/pull/952)) [[`4d0526f`](https://github.com/PrismJS/prism/commit/4d0526f)]
2501
+
2502
+ ### Other changes
2503
+
2504
+ * Allow for asynchronous loading of prism.js ([#959](https://github.com/PrismJS/prism/pull/959))
2505
+ * Use toLowerCase on language names ([#957](https://github.com/PrismJS/prism/pull/957)) [[`acd9508`](https://github.com/PrismJS/prism/commit/acd9508)]
2506
+ * link to index for basic usage - fixes [#945](https://github.com/PrismJS/prism/issues/945) ([#946](https://github.com/PrismJS/prism/pull/946)) [[`6c772d8`](https://github.com/PrismJS/prism/commit/6c772d8)]
2507
+ * Fixed monospace typo ([#953](https://github.com/PrismJS/prism/pull/953)) [[`e6c3498`](https://github.com/PrismJS/prism/commit/e6c3498)]
2508
+
2509
+ ## 1.5.0 (2016-05-01)
2510
+
2511
+ ### New components
2512
+
2513
+ * __Bro Language__ ([#925](https://github.com/PrismJS/prism/pull/925))
2514
+ * __Protocol Buffers Language__ ([#938](https://github.com/PrismJS/prism/pull/938)) [[`ae4a4f2`](https://github.com/PrismJS/prism/commit/ae4a4f2)]
2515
+
2516
+ ### Updated components
2517
+
2518
+ * __Keep Markup__:
2519
+ * Fix Keep Markup plugin incorrect highlighting ([#880](https://github.com/PrismJS/prism/pull/880)) [[`24841ef`](https://github.com/PrismJS/prism/commit/24841ef)]
2520
+ * __Groovy Language__:
2521
+ * Fix double HTML-encoding bug in Groovy language [[`24a0936`](https://github.com/PrismJS/prism/commit/24a0936)]
2522
+ * __Java Language__:
2523
+ * Adding annotation token for Java ([#905](https://github.com/PrismJS/prism/pull/905)) [[`367ace6`](https://github.com/PrismJS/prism/commit/367ace6)]
2524
+ * __SAS Language__:
2525
+ * Add missing keywords for SAS ([#922](https://github.com/PrismJS/prism/pull/922))
2526
+ * __YAML Language__:
2527
+ * fix hilighting of YAML keys on first line of code block ([#943](https://github.com/PrismJS/prism/pull/943)) [[`f19db81`](https://github.com/PrismJS/prism/commit/f19db81)]
2528
+ * __C# Language__:
2529
+ * Support for generic methods in csharp [[`6f75735`](https://github.com/PrismJS/prism/commit/6f75735)]
2530
+
2531
+ ### New plugins
2532
+
2533
+ * __Unescaped Markup__ [[`07d77e5`](https://github.com/PrismJS/prism/commit/07d77e5)]
2534
+ * __Normalize Whitespace__ ([#847](https://github.com/PrismJS/prism/pull/847)) [[`e86ec01`](https://github.com/PrismJS/prism/commit/e86ec01)]
2535
+
2536
+ ### Other changes
2537
+
2538
+ * Add JSPM support [[`ad048ab`](https://github.com/PrismJS/prism/commit/ad048ab)]
2539
+ * update linear-gradient syntax from `left` to `to right` [[`cd234dc`](https://github.com/PrismJS/prism/commit/cd234dc)]
2540
+ * Add after-property to allow ordering of plugins [[`224b7a1`](https://github.com/PrismJS/prism/commit/224b7a1)]
2541
+ * Partial solution for the "Comment-like substrings"-problem [[`2705c50`](https://github.com/PrismJS/prism/commit/2705c50)]
2542
+ * Add property 'aliasTitles' to components.js [[`54400fb`](https://github.com/PrismJS/prism/commit/54400fb)]
2543
+ * Add before-highlightall hook [[`70a8602`](https://github.com/PrismJS/prism/commit/70a8602)]
2544
+ * Fix catastrophic backtracking regex issues in JavaScript [[`ab65be2`](https://github.com/PrismJS/prism/commit/ab65be2)]
2545
+
2546
+ ## 1.4.1 (2016-02-03)
2547
+
2548
+ ### Other changes
2549
+
2550
+ * Fix DFS bug in Prism core [[`b86c727`](https://github.com/PrismJS/prism/commit/b86c727)]
2551
+
2552
+ ## 1.4.0 (2016-02-03)
2553
+
2554
+ ### New components
2555
+
2556
+ * __Solarized Light__ ([#855](https://github.com/PrismJS/prism/pull/855)) [[`70846ba`](https://github.com/PrismJS/prism/commit/70846ba)]
2557
+ * __JSON__ ([#370](https://github.com/PrismJS/prism/pull/370)) [[`ad2fcd0`](https://github.com/PrismJS/prism/commit/ad2fcd0)]
2558
+
2559
+ ### Updated components
2560
+
2561
+ * __Show Language__:
2562
+ * Remove data-language attribute ([#840](https://github.com/PrismJS/prism/pull/840)) [[`eb9a83c`](https://github.com/PrismJS/prism/commit/eb9a83c)]
2563
+ * Allow custom label without a language mapping ([#837](https://github.com/PrismJS/prism/pull/837)) [[`7e74aef`](https://github.com/PrismJS/prism/commit/7e74aef)]
2564
+ * __JSX__:
2565
+ * Better Nesting in JSX attributes ([#842](https://github.com/PrismJS/prism/pull/842)) [[`971dda7`](https://github.com/PrismJS/prism/commit/971dda7)]
2566
+ * __File Highlight__:
2567
+ * Defer File Highlight until the full DOM has loaded. ([#844](https://github.com/PrismJS/prism/pull/844)) [[`6f995ef`](https://github.com/PrismJS/prism/commit/6f995ef)]
2568
+ * __Coy Theme__:
2569
+ * Fix coy theme shadows ([#865](https://github.com/PrismJS/prism/pull/865)) [[`58d2337`](https://github.com/PrismJS/prism/commit/58d2337)]
2570
+ * __Show Invisibles__:
2571
+ * Ensure show-invisibles compat with autoloader ([#874](https://github.com/PrismJS/prism/pull/874)) [[`c3cfb1f`](https://github.com/PrismJS/prism/commit/c3cfb1f)]
2572
+ * Add support for the space character for the show-invisibles plugin ([#876](https://github.com/PrismJS/prism/pull/876)) [[`05442d3`](https://github.com/PrismJS/prism/commit/05442d3)]
2573
+
2574
+ ### New plugins
2575
+
2576
+ * __Command Line__ ([#831](https://github.com/PrismJS/prism/pull/831)) [[`8378906`](https://github.com/PrismJS/prism/commit/8378906)]
2577
+
2578
+ ### Other changes
2579
+
2580
+ * Use document.currentScript instead of document.getElementsByTagName() [[`fa98743`](https://github.com/PrismJS/prism/commit/fa98743)]
2581
+ * Add prefix for Firefox selection and move prefixed rule first [[`6d54717`](https://github.com/PrismJS/prism/commit/6d54717)]
2582
+ * No background for `<code>` in `<pre>` [[`8c310bc`](https://github.com/PrismJS/prism/commit/8c310bc)]
2583
+ * Fixing to initial copyright year [[`69cbf7a`](https://github.com/PrismJS/prism/commit/69cbf7a)]
2584
+ * Simplify the “lang” regex [[`417f54a`](https://github.com/PrismJS/prism/commit/417f54a)]
2585
+ * Fix broken heading links [[`a7f9e62`](https://github.com/PrismJS/prism/commit/a7f9e62)]
2586
+ * Prevent infinite recursion in DFS [[`02894e1`](https://github.com/PrismJS/prism/commit/02894e1)]
2587
+ * Fix incorrect page title [[`544b56f`](https://github.com/PrismJS/prism/commit/544b56f)]
2588
+ * Link scss to webplatform wiki [[`08d979a`](https://github.com/PrismJS/prism/commit/08d979a)]
2589
+ * Revert white-space to normal when code is inline instead of in a pre [[`1a971b5`](https://github.com/PrismJS/prism/commit/1a971b5)]
2590
+
2591
+ ## 1.3.0 (2015-10-26)
2592
+
2593
+ ### New components
2594
+
2595
+ * __AsciiDoc__ ([#800](https://github.com/PrismJS/prism/issues/800)) [[`6803ca0`](https://github.com/PrismJS/prism/commit/6803ca0)]
2596
+ * __Haxe__ ([#811](https://github.com/PrismJS/prism/issues/811)) [[`bd44341`](https://github.com/PrismJS/prism/commit/bd44341)]
2597
+ * __Icon__ ([#803](https://github.com/PrismJS/prism/issues/803)) [[`b43c5f3`](https://github.com/PrismJS/prism/commit/b43c5f3)]
2598
+ * __Kotlin__ ([#814](https://github.com/PrismJS/prism/issues/814)) [[`e8a31a5`](https://github.com/PrismJS/prism/commit/e8a31a5)]
2599
+ * __Lua__ ([#804](https://github.com/PrismJS/prism/issues/804)) [[`a36bc4a`](https://github.com/PrismJS/prism/commit/a36bc4a)]
2600
+ * __Nix__ ([#795](https://github.com/PrismJS/prism/issues/795)) [[`9b275c8`](https://github.com/PrismJS/prism/commit/9b275c8)]
2601
+ * __Oz__ ([#805](https://github.com/PrismJS/prism/issues/805)) [[`388c53f`](https://github.com/PrismJS/prism/commit/388c53f)]
2602
+ * __PARI/GP__ ([#802](https://github.com/PrismJS/prism/issues/802)) [[`253c035`](https://github.com/PrismJS/prism/commit/253c035)]
2603
+ * __Parser__ ([#808](https://github.com/PrismJS/prism/issues/808)) [[`a953b3a`](https://github.com/PrismJS/prism/commit/a953b3a)]
2604
+ * __Puppet__ ([#813](https://github.com/PrismJS/prism/issues/813)) [[`81933ee`](https://github.com/PrismJS/prism/commit/81933ee)]
2605
+ * __Roboconf__ ([#812](https://github.com/PrismJS/prism/issues/812)) [[`f5db346`](https://github.com/PrismJS/prism/commit/f5db346)]
2606
+
2607
+ ### Updated components
2608
+
2609
+ * __C__:
2610
+ * Highlight directives in preprocessor lines ([#801](https://github.com/PrismJS/prism/issues/801)) [[`ad316a3`](https://github.com/PrismJS/prism/commit/ad316a3)]
2611
+ * __C#__:
2612
+ * Highlight directives in preprocessor lines ([#801](https://github.com/PrismJS/prism/issues/801)) [[`ad316a3`](https://github.com/PrismJS/prism/commit/ad316a3)]
2613
+ * Fix detection of float numbers ([#806](https://github.com/PrismJS/prism/issues/806)) [[`1dae72b`](https://github.com/PrismJS/prism/commit/1dae72b)]
2614
+ * __F#__:
2615
+ * Highlight directives in preprocessor lines ([#801](https://github.com/PrismJS/prism/issues/801)) [[`ad316a3`](https://github.com/PrismJS/prism/commit/ad316a3)]
2616
+ * __JavaScript__:
2617
+ * Highlight true and false as booleans ([#801](https://github.com/PrismJS/prism/issues/801)) [[`ad316a3`](https://github.com/PrismJS/prism/commit/ad316a3)]
2618
+ * __Python__:
2619
+ * Highlight triple-quoted strings before comments. Fix [#815](https://github.com/PrismJS/prism/issues/815) [[`90fbf0b`](https://github.com/PrismJS/prism/commit/90fbf0b)]
2620
+
2621
+ ### New plugins
2622
+
2623
+ * __Previewer: Time__ ([#790](https://github.com/PrismJS/prism/issues/790)) [[`88173de`](https://github.com/PrismJS/prism/commit/88173de)]
2624
+ * __Previewer: Angle__ ([#791](https://github.com/PrismJS/prism/issues/791)) [[`a434c86`](https://github.com/PrismJS/prism/commit/a434c86)]
2625
+
2626
+ ### Other changes
2627
+
2628
+ * Increase mocha's timeout [[`f1c41db`](https://github.com/PrismJS/prism/commit/f1c41db)]
2629
+ * Prevent most errors in IE8. Fix [#9](https://github.com/PrismJS/prism/issues/9) [[`9652d75`](https://github.com/PrismJS/prism/commit/9652d75)]
2630
+ * Add U.S. Web Design Standards on homepage. Fix [#785](https://github.com/PrismJS/prism/issues/785) [[`e10d48b`](https://github.com/PrismJS/prism/commit/e10d48b), [`79ebbf8`](https://github.com/PrismJS/prism/commit/79ebbf8), [`2f7088d`](https://github.com/PrismJS/prism/commit/2f7088d)]
2631
+ * Added gulp task to autolink PRs and commits in changelog [[`5ec4e4d`](https://github.com/PrismJS/prism/commit/5ec4e4d)]
2632
+ * Use child processes to run each set of tests, in order to deal with the memory leak in vm.runInNewContext() [[`9a4b6fa`](https://github.com/PrismJS/prism/commit/9a4b6fa)]
2633
+
2634
+ ## 1.2.0 (2015-10-07)
2635
+
2636
+ ### New components
2637
+
2638
+ * __Batch__ ([#781](https://github.com/PrismJS/prism/issues/781)) [[`eab5b06`](https://github.com/PrismJS/prism/commit/eab5b06)]
2639
+
2640
+ ### Updated components
2641
+
2642
+ * __ASP.NET__:
2643
+ * Simplified pattern for `<script>` [[`29643f4`](https://github.com/PrismJS/prism/issues/29643f4)]
2644
+ * __Bash__:
2645
+ * Fix regression in strings ([#792](https://github.com/PrismJS/prism/issues/792)) [[`bd275c2`](https://github.com/PrismJS/prism/commit/bd275c2)]
2646
+ * Substantially reduce wrongly highlighted stuff ([#793](https://github.com/PrismJS/prism/issues/793)) [[`ac6fe2e`](https://github.com/PrismJS/prism/commit/ac6fe2e)]
2647
+ * __CSS__:
2648
+ * Simplified pattern for `<style>` [[`29643f4`](https://github.com/PrismJS/prism/issues/29643f4)]
2649
+ * __JavaScript__:
2650
+ * Simplified pattern for `<script>` [[`29643f4`](https://github.com/PrismJS/prism/issues/29643f4)]
2651
+
2652
+ ### New plugins
2653
+
2654
+ * __Previewer: Gradient__ ([#783](https://github.com/PrismJS/prism/issues/783)) [[`9a63483`](https://github.com/PrismJS/prism/commit/9a63483)]
2655
+
2656
+ ### Updated plugins
2657
+
2658
+ * __Previewer: Color__
2659
+ * Add support for Sass variables [[`3a1fb04`](https://github.com/PrismJS/prism/commit/3a1fb04)]
2660
+
2661
+ * __Previewer: Easing__
2662
+ * Add support for Sass variables [[`7c7ab4e`](https://github.com/PrismJS/prism/commit/7c7ab4e)]
2663
+
2664
+ ### Other changes
2665
+
2666
+ * Test runner: Allow to run tests for only some languages [[`5ade8a5`](https://github.com/PrismJS/prism/issues/5ade8a5)]
2667
+ * Download page: Fixed wrong components order raising error in generated file ([#797](https://github.com/PrismJS/prism/issues/787)) [[`7a6aed8`](https://github.com/PrismJS/prism/commit/7a6aed8)]
2668
+
2669
+ ## 1.1.0 (2015-10-04)
2670
+
2671
+ ### New components
2672
+
2673
+ * __ABAP__ ([#636](https://github.com/PrismJS/prism/issues/636)) [[`75b0328`](https://github.com/PrismJS/prism/commit/75b0328), [`0749129`](https://github.com/PrismJS/prism/commit/0749129)]
2674
+ * __APL__ ([#308](https://github.com/PrismJS/prism/issues/308)) [[`1f45942`](https://github.com/PrismJS/prism/commit/1f45942), [`33a295f`](https://github.com/PrismJS/prism/commit/33a295f)]
2675
+ * __AutoIt__ ([#771](https://github.com/PrismJS/prism/issues/771)) [[`211a41c`](https://github.com/PrismJS/prism/commit/211a41c)]
2676
+ * __BASIC__ ([#620](https://github.com/PrismJS/prism/issues/620)) [[`805a0ce`](https://github.com/PrismJS/prism/commit/805a0ce)]
2677
+ * __Bison__ ([#764](https://github.com/PrismJS/prism/issues/764)) [[`7feb135`](https://github.com/PrismJS/prism/commit/7feb135)]
2678
+ * __Crystal__ ([#780](https://github.com/PrismJS/prism/issues/780)) [[`5b473de`](https://github.com/PrismJS/prism/commit/5b473de), [`414848d`](https://github.com/PrismJS/prism/commit/414848d)]
2679
+ * __D__ ([#613](https://github.com/PrismJS/prism/issues/613)) [[`b5e741c`](https://github.com/PrismJS/prism/commit/b5e741c)]
2680
+ * __Diff__ ([#450](https://github.com/PrismJS/prism/issues/450)) [[`ef41c74`](https://github.com/PrismJS/prism/commit/ef41c74)]
2681
+ * __Docker__ ([#576](https://github.com/PrismJS/prism/issues/576)) [[`e808352`](https://github.com/PrismJS/prism/commit/e808352)]
2682
+ * __Elixir__ ([#614](https://github.com/PrismJS/prism/issues/614)) [[`a1c028c`](https://github.com/PrismJS/prism/commit/a1c028c), [`c451611`](https://github.com/PrismJS/prism/commit/c451611), [`2e637f0`](https://github.com/PrismJS/prism/commit/2e637f0), [`ccb6566`](https://github.com/PrismJS/prism/commit/ccb6566)]
2683
+ * __GLSL__ ([#615](https://github.com/PrismJS/prism/issues/615)) [[`247da05`](https://github.com/PrismJS/prism/commit/247da05)]
2684
+ * __Inform 7__ ([#616](https://github.com/PrismJS/prism/issues/616)) [[`d2595b4`](https://github.com/PrismJS/prism/commit/d2595b4)]
2685
+ * __J__ ([#623](https://github.com/PrismJS/prism/issues/623)) [[`0cc50b2`](https://github.com/PrismJS/prism/commit/0cc50b2)]
2686
+ * __MEL__ ([#618](https://github.com/PrismJS/prism/issues/618)) [[`8496c14`](https://github.com/PrismJS/prism/commit/8496c14)]
2687
+ * __Mizar__ ([#619](https://github.com/PrismJS/prism/issues/619)) [[`efde61d`](https://github.com/PrismJS/prism/commit/efde61d)]
2688
+ * __Monkey__ ([#621](https://github.com/PrismJS/prism/issues/621)) [[`fdd4a3c`](https://github.com/PrismJS/prism/commit/fdd4a3c)]
2689
+ * __nginx__ ([#776](https://github.com/PrismJS/prism/issues/776)) [[`dc4fc19`](https://github.com/PrismJS/prism/commit/dc4fc19), [`e62c88e`](https://github.com/PrismJS/prism/commit/e62c88e)]
2690
+ * __Nim__ ([#622](https://github.com/PrismJS/prism/issues/622)) [[`af9c49a`](https://github.com/PrismJS/prism/commit/af9c49a)]
2691
+ * __OCaml__ ([#628](https://github.com/PrismJS/prism/issues/628)) [[`556c04d`](https://github.com/PrismJS/prism/commit/556c04d)]
2692
+ * __Processing__ ([#629](https://github.com/PrismJS/prism/issues/629)) [[`e47087b`](https://github.com/PrismJS/prism/commit/e47087b)]
2693
+ * __Prolog__ ([#630](https://github.com/PrismJS/prism/issues/630)) [[`dd04c32`](https://github.com/PrismJS/prism/commit/dd04c32)]
2694
+ * __Pure__ ([#626](https://github.com/PrismJS/prism/issues/626)) [[`9c276ab`](https://github.com/PrismJS/prism/commit/9c276ab)]
2695
+ * __Q__ ([#624](https://github.com/PrismJS/prism/issues/624)) [[`c053c9e`](https://github.com/PrismJS/prism/commit/c053c9e)]
2696
+ * __Qore__ [[`125e91f`](https://github.com/PrismJS/prism/commit/125e91f)]
2697
+ * __Tcl__ [[`a3e751a`](https://github.com/PrismJS/prism/commit/a3e751a), [`11ff829`](https://github.com/PrismJS/prism/commit/11ff829)]
2698
+ * __Textile__ ([#544](https://github.com/PrismJS/prism/issues/544)) [[`d0c6764`](https://github.com/PrismJS/prism/commit/d0c6764)]
2699
+ * __Verilog__ ([#640](https://github.com/PrismJS/prism/issues/640)) [[`44a11c2`](https://github.com/PrismJS/prism/commit/44a11c2), [`795eb99`](https://github.com/PrismJS/prism/commit/795eb99)]
2700
+ * __Vim__ [[`69ea994`](https://github.com/PrismJS/prism/commit/69ea994)]
2701
+
2702
+ ### Updated components
2703
+
2704
+ * __Bash__:
2705
+ * Add support for Here-Documents ([#787](https://github.com/PrismJS/prism/issues/787)) [[`b57a096`](https://github.com/PrismJS/prism/commit/b57a096)]
2706
+ * Remove C-like dependency ([#789](https://github.com/PrismJS/prism/issues/789)) [[`1ab4619`](https://github.com/PrismJS/prism/commit/1ab4619)]
2707
+ * __C__:
2708
+ * Fixed numbers [[`4d64d07`](https://github.com/PrismJS/prism/commit/4d64d07), [`071c3dd`](https://github.com/PrismJS/prism/commit/071c3dd)]
2709
+ * __C-like__:
2710
+ * Add word boundary before class-name prefixes [[`aa757f6`](https://github.com/PrismJS/prism/commit/aa757f6)]
2711
+ * Improved operator regex + add != and !== [[`135ee9d`](https://github.com/PrismJS/prism/commit/135ee9d)]
2712
+ * Optimized string regexp [[`792e35c`](https://github.com/PrismJS/prism/commit/792e35c)]
2713
+ * __F#__:
2714
+ * Fixed keywords containing exclamation mark [[`09f2005`](https://github.com/PrismJS/prism/commit/09f2005)]
2715
+ * Improved string pattern [[`0101c89`](https://github.com/PrismJS/prism/commit/0101c89)]
2716
+ * Insert preprocessor before keyword + don't allow line feeds before # [[`fdc9477`](https://github.com/PrismJS/prism/commit/fdc9477)]
2717
+ * Fixed numbers [[`0aa0791`](https://github.com/PrismJS/prism/commit/0aa0791)]
2718
+ * __Gherkin__:
2719
+ * Don't allow spaces in tags [[`48ff8b7`](https://github.com/PrismJS/prism/commit/48ff8b7)]
2720
+ * Handle \r\n and \r + allow feature alone + don't match blank td/th [[`ce1ec3b`](https://github.com/PrismJS/prism/commit/ce1ec3b)]
2721
+ * __Git__:
2722
+ * Added more examples ([#652](https://github.com/PrismJS/prism/issues/652)) [[`95dc102`](https://github.com/PrismJS/prism/commit/95dc102)]
2723
+ * Add support for unified diff. Fixes [#769](https://github.com/PrismJS/prism/issues/769), fixes [#357](https://github.com/PrismJS/prism/issues/357), closes [#401](https://github.com/PrismJS/prism/issues/401) [[`3aadd5d`](https://github.com/PrismJS/prism/commit/3aadd5d)]
2724
+ * __Go__:
2725
+ * Improved operator regexp + removed punctuation from it [[`776ab90`](https://github.com/PrismJS/prism/commit/776ab90)]
2726
+ * __Haml__:
2727
+ * Combine both multiline-comment regexps + handle \r\n and \r [[`f77b40b`](https://github.com/PrismJS/prism/commit/f77b40b)]
2728
+ * Handle \r\n and \r in filter regex [[`bbe68ac`](https://github.com/PrismJS/prism/commit/bbe68ac)]
2729
+ * __Handlebars__:
2730
+ * Fix empty strings, add plus sign in exponential notation, improve block pattern and variable pattern [[`c477f9a`](https://github.com/PrismJS/prism/commit/c477f9a)]
2731
+ * Properly escape special replacement patterns ($) in Handlebars, PHP and Smarty. Fix [#772](https://github.com/PrismJS/prism/issues/772) [[`895bf46`](https://github.com/PrismJS/prism/commit/895bf46)]
2732
+ * __Haskell__:
2733
+ * Removed useless backslashes and parentheses + handle \r\n and \r + simplify number regexp + fix operator regexp [[`1cc8d8e`](https://github.com/PrismJS/prism/commit/1cc8d8e)]
2734
+ * __HTTP__:
2735
+ * Fix indentation + Add multiline flag for more flexibility + Fix response status + Handle \r\n and \r [[`aaa90f1`](https://github.com/PrismJS/prism/commit/aaa90f1)]
2736
+ * __Ini__:
2737
+ * Fix some regexps + remove unused flags [[`53d5839`](https://github.com/PrismJS/prism/commit/53d5839)]
2738
+ * __Jade__:
2739
+ * Add todo list + remove single-line comment pattern + simplified most patterns with m flag + handle \r\n and \r [[`a79e838`](https://github.com/PrismJS/prism/commit/a79e838)]
2740
+ * __Java__:
2741
+ * Fix number regexp + simplified number regexp and optimized operator regexp [[`21e20b9`](https://github.com/PrismJS/prism/commit/21e20b9)]
2742
+ * __JavaScript__:
2743
+ * JavaScript: Allow for all non-ASCII characters in function names. Fix [#400](https://github.com/PrismJS/prism/issues/400) [[`29e26dc`](https://github.com/PrismJS/prism/commit/29e26dc)]
2744
+ * __JSX__:
2745
+ * Allow for one level of nesting in scripts (Fix [#717](https://github.com/PrismJS/prism/issues/717)) [[`90c75d5`](https://github.com/PrismJS/prism/commit/90c75d5)]
2746
+ * __Julia__:
2747
+ * Simplify comment regexp + improved number regexp + improved operator regexp [[`bcac7d4`](https://github.com/PrismJS/prism/commit/bcac7d4)]
2748
+ * __Keyman__:
2749
+ * Move header statements above keywords [[`23a444c`](https://github.com/PrismJS/prism/commit/23a444c)]
2750
+ * __LaTeX__:
2751
+ * Simplify comment regexp [[`132b41a`](https://github.com/PrismJS/prism/commit/132b41a)]
2752
+ * Extend support [[`942a6ec`](https://github.com/PrismJS/prism/commit/942a6ec)]
2753
+ * __Less__:
2754
+ * Remove useless part in property regexp [[`80d8260`](https://github.com/PrismJS/prism/commit/80d8260)]
2755
+ * __LOLCODE__:
2756
+ * Removed useless parentheses [[`8147c9b`](https://github.com/PrismJS/prism/commit/8147c9b)]
2757
+ * __Makefile__:
2758
+ * Add known failures in example [[`e0f8984`](https://github.com/PrismJS/prism/commit/e0f8984)]
2759
+ * Handle \r\n in comments and strings + fix "-include" keyword
2760
+ * __Markup__:
2761
+ * Simplify patterns + handle \r\n and \r [[`4c551e8`](https://github.com/PrismJS/prism/commit/4c551e8)]
2762
+ * Don't allow = to appear in tag name [[`85d8a55`](https://github.com/PrismJS/prism/commit/85d8a55)]
2763
+ * Don't allow dot inside tag name [[`283691e`](https://github.com/PrismJS/prism/commit/283691e)]
2764
+ * __MATLAB__:
2765
+ * Simplify string pattern to remove lookbehind [[`a3cbecc`](https://github.com/PrismJS/prism/commit/a3cbecc)]
2766
+ * __NASM__:
2767
+ * Converted indents to tabs, removed uneeded escapes, added lookbehinds [[`a92e4bd`](https://github.com/PrismJS/prism/commit/a92e4bd)]
2768
+ * __NSIS__:
2769
+ * Simplified patterns [[`bbd83d4`](https://github.com/PrismJS/prism/commit/bbd83d4)]
2770
+ * Fix operator regexp [[`44ad8dc`](https://github.com/PrismJS/prism/commit/44ad8dc)]
2771
+ * __Objective-C__:
2772
+ * Simplified regexps + fix strings + handle \r [[`1d33147`](https://github.com/PrismJS/prism/commit/1d33147)]
2773
+ * Fix operator regexp [[`e9d382e`](https://github.com/PrismJS/prism/commit/e9d382e)]
2774
+ * __Pascal__:
2775
+ * Simplified regexps [[`c03c8a4`](https://github.com/PrismJS/prism/commit/c03c8a4)]
2776
+ * __Perl__:
2777
+ * Simplified regexps + Made most string and regexp patterns multi-line + Added support for regexp's n flag + Added missing operators [[`71b00cc`](https://github.com/PrismJS/prism/commit/71b00cc)]
2778
+ * __PHP__:
2779
+ * Simplified patterns [[`f9d9452`](https://github.com/PrismJS/prism/commit/f9d9452)]
2780
+ * Properly escape special replacement patterns ($) in Handlebars, PHP and Smarty. Fix [#772](https://github.com/PrismJS/prism/issues/772) [[`895bf46`](https://github.com/PrismJS/prism/commit/895bf46)]
2781
+ * __PHP Extras__:
2782
+ * Fix $this regexp + improve global regexp [[`781fdad`](https://github.com/PrismJS/prism/commit/781fdad)]
2783
+ * __PowerShell__:
2784
+ * Update definitions for command/alias/operators [[`14da55c`](https://github.com/PrismJS/prism/commit/14da55c)]
2785
+ * __Python__:
2786
+ * Added async/await and @ operator ([#656](https://github.com/PrismJS/prism/issues/656)) [[`7f1ae75`](https://github.com/PrismJS/prism/commit/7f1ae75)]
2787
+ * Added 'self' keyword and support for class names ([#677](https://github.com/PrismJS/prism/issues/677)) [[`d9d4ab2`](https://github.com/PrismJS/prism/commit/d9d4ab2)]
2788
+ * Simplified regexps + don't capture where unneeded + fixed operators [[`530f5f0`](https://github.com/PrismJS/prism/commit/530f5f0)]
2789
+ * __R__:
2790
+ * Fixed and simplified patterns [[`c20c3ec`](https://github.com/PrismJS/prism/commit/c20c3ec)]
2791
+ * __reST__:
2792
+ * Simplified some patterns, fixed others, prevented blank comments to match, moved list-bullet down to prevent breaking quotes [[`e6c6b85`](https://github.com/PrismJS/prism/commit/e6c6b85)]
2793
+ * __Rip__:
2794
+ * Fixed some regexp + moved down numbers [[`1093f7d`](https://github.com/PrismJS/prism/commit/1093f7d)]
2795
+ * __Ruby__:
2796
+ * Code cleaning, handle \r\n and \r, fix some regexps [[`dd4989f`](https://github.com/PrismJS/prism/commit/dd4989f)]
2797
+ * Add % notations for strings and regexps. Fix [#590](https://github.com/PrismJS/prism/issues/590) [[`2d37800`](https://github.com/PrismJS/prism/commit/2d37800)]
2798
+ * __Rust__:
2799
+ * Simplified patterns and fixed operators [[`6c8494f`](https://github.com/PrismJS/prism/commit/6c8494f)]
2800
+ * __SAS__:
2801
+ * Simplified datalines and optimized operator patterns [[`6ebb96f`](https://github.com/PrismJS/prism/commit/6ebb96f)]
2802
+ * __Sass__:
2803
+ * Add missing require in components [[`35b8c50`](https://github.com/PrismJS/prism/commit/35b8c50)]
2804
+ * Fix comments, operators and selectors and simplified patterns [[`28759d0`](https://github.com/PrismJS/prism/commit/28759d0)]
2805
+ * Highlight "-" as operator only if surrounded by spaces, in order to not break hyphenated values (e.g. "ease-in-out") [[`b2763e7`](https://github.com/PrismJS/prism/commit/b2763e7)]
2806
+ * __Scala__:
2807
+ * Simplified patterns [[`daf2597`](https://github.com/PrismJS/prism/commit/daf2597)]
2808
+ * __Scheme__:
2809
+ * Add missing lookbehind on number pattern. Fix [#702](https://github.com/PrismJS/prism/issues/702) [[`3120ff7`](https://github.com/PrismJS/prism/commit/3120ff7)]
2810
+ * Fixes and simplifications [[`068704a`](https://github.com/PrismJS/prism/commit/068704a)]
2811
+ * Don't match content of symbols starting with a parenthesis [[`fa7df08`](https://github.com/PrismJS/prism/commit/fa7df08)]
2812
+ * __Scss__:
2813
+ * Simplified patterns + fixed operators + don't match empty selectors [[`672c167`](https://github.com/PrismJS/prism/commit/672c167)]
2814
+ * __Smalltalk__:
2815
+ * Simplified patterns [[`d896622`](https://github.com/PrismJS/prism/commit/d896622)]
2816
+ * __Smarty__:
2817
+ * Optimized regexps + fixed punctuation and operators [[`1446700`](https://github.com/PrismJS/prism/commit/1446700)]
2818
+ * Properly escape special replacement patterns ($) in Handlebars, PHP and Smarty. Fix [#772](https://github.com/PrismJS/prism/issues/772) [[`895bf46`](https://github.com/PrismJS/prism/commit/895bf46)]
2819
+ * __SQL__:
2820
+ * Simplified regexp + fixed keywords and operators + add CHARSET keyword [[`d49fec0`](https://github.com/PrismJS/prism/commit/d49fec0)]
2821
+ * __Stylus__:
2822
+ * Rewrote the component entirely [[`7729728`](https://github.com/PrismJS/prism/commit/7729728)]
2823
+ * __Swift__:
2824
+ * Optimized keywords lists and removed duplicates [[`936e429`](https://github.com/PrismJS/prism/commit/936e429)]
2825
+ * Add support for string interpolation. Fix [#448](https://github.com/PrismJS/prism/issues/448) [[`89cd5d0`](https://github.com/PrismJS/prism/commit/89cd5d0)]
2826
+ * __Twig__:
2827
+ * Prevent "other" pattern from matching blank strings [[`cae2cef`](https://github.com/PrismJS/prism/commit/cae2cef)]
2828
+ * Optimized regexps + fixed operators + added missing operators/keywords [[`2d8271f`](https://github.com/PrismJS/prism/commit/2d8271f)]
2829
+ * __VHDL__:
2830
+ * Move operator overloading before strings, don't capture if not needed, handle \r\n and \r, fix numbers [[`4533f17`](https://github.com/PrismJS/prism/commit/4533f17)]
2831
+ * __Wiki markup__:
2832
+ * Fixed emphasis + merged some url patterns + added TODOs [[`8cf9e6a`](https://github.com/PrismJS/prism/commit/8cf9e6a)]
2833
+ * __YAML__:
2834
+ * Handled \r\n and \r, simplified some patterns, fixed "---" [[`9e33e0a`](https://github.com/PrismJS/prism/commit/9e33e0a)]
2835
+
2836
+ ### New plugins
2837
+
2838
+ * __Autoloader__ ([#766](https://github.com/PrismJS/prism/issues/766)) [[`ed4ccfe`](https://github.com/PrismJS/prism/commit/ed4ccfe)]
2839
+ * __JSONP Highlight__ [[`b2f14d9`](https://github.com/PrismJS/prism/commit/b2f14d9)]
2840
+ * __Keep Markup__ ([#770](https://github.com/PrismJS/prism/issues/770)) [[`bd3e9ea`](https://github.com/PrismJS/prism/commit/bd3e9ea)]
2841
+ * __Previewer: Base__ ([#767](https://github.com/PrismJS/prism/issues/767)) [[`cf764c0`](https://github.com/PrismJS/prism/commit/cf764c0)]
2842
+ * __Previewer: Color__ ([#767](https://github.com/PrismJS/prism/issues/767)) [[`cf764c0`](https://github.com/PrismJS/prism/commit/cf764c0)]
2843
+ * __Previewer: Easing__ ([#773](https://github.com/PrismJS/prism/issues/773)) [[`513137c`](https://github.com/PrismJS/prism/commit/513137c), [`9207258`](https://github.com/PrismJS/prism/commit/9207258), [`4303c94`](https://github.com/PrismJS/prism/commit/4303c94)]
2844
+ * __Remove initial line feed__ [[`ed9f2b2`](https://github.com/PrismJS/prism/commit/ed9f2b2), [`b8d098e`](https://github.com/PrismJS/prism/commit/b8d098e)]
2845
+
2846
+ ### Updated plugins
2847
+
2848
+ * __Autolinker__:
2849
+ * Don't process all grammars on load, process each one in before-highlight. Should fix [#760](https://github.com/PrismJS/prism/issues/760) [[`a572495`](https://github.com/PrismJS/prism/commit/a572495)]
2850
+ * __Line Highlight__:
2851
+ * Run in `complete` hook [[`f237e67`](https://github.com/PrismJS/prism/commit/f237e67)]
2852
+ * Fixed position when font-size is odd ([#668](https://github.com/PrismJS/prism/issues/668)) [[`86bbd4c`](https://github.com/PrismJS/prism/commit/86bbd4c), [`8ed7ce3`](https://github.com/PrismJS/prism/commit/8ed7ce3)]
2853
+ * __Line Numbers__:
2854
+ * Run in `complete` hook [[`3f4d918`](https://github.com/PrismJS/prism/commit/3f4d918)]
2855
+ * Don't run if already exists [[`c89bbdb`](https://github.com/PrismJS/prism/commit/c89bbdb)]
2856
+ * Don't run if block is empty. Fix [#669](https://github.com/PrismJS/prism/issues/669) [[`ee463e8`](https://github.com/PrismJS/prism/commit/ee463e8)]
2857
+ * Correct calculation for number of lines (fix [#385](https://github.com/PrismJS/prism/issues/385)) [[`14f3f80`](https://github.com/PrismJS/prism/commit/14f3f80)]
2858
+ * Fix computation of line numbers for single-line code blocks. Fix [#721](https://github.com/PrismJS/prism/issues/721) [[`02b220e`](https://github.com/PrismJS/prism/commit/02b220e)]
2859
+ * Fixing word wrap on long code lines [[`56b3d29`](https://github.com/PrismJS/prism/commit/56b3d29)]
2860
+ * Fixing coy theme + line numbers plugin overflowing on long blocks of text ([#762](https://github.com/PrismJS/prism/issues/762)) [[`a0127eb`](https://github.com/PrismJS/prism/commit/a0127eb)]
2861
+ * __Show Language__:
2862
+ * Add gulp task to build languages map in Show language plugin (Fix [#671](https://github.com/PrismJS/prism/issues/671)) [[`39bd827`](https://github.com/PrismJS/prism/commit/39bd827)]
2863
+ * Add reset styles to prevent bug in Coy theme ([#703](https://github.com/PrismJS/prism/issues/703)) [[`08dd500`](https://github.com/PrismJS/prism/commit/08dd500)]
2864
+
2865
+ ### Other changes
2866
+
2867
+ * Fixed link to David Peach article ([#647](https://github.com/PrismJS/prism/issues/647)) [[`3f679f8`](https://github.com/PrismJS/prism/commit/3f679f8)]
2868
+ * Added `complete` hook, which runs even when no grammar is found [[`e58b6c0`](https://github.com/PrismJS/prism/commit/e58b6c0), [`fd54995`](https://github.com/PrismJS/prism/commit/fd54995)]
2869
+ * Added test suite runner ([#588](https://github.com/PrismJS/prism/issues/588)) [[`956cd85`](https://github.com/PrismJS/prism/commit/956cd85)]
2870
+ * Added tests for every components
2871
+ * Added `.gitattributes` to prevent line ending changes in test files [[`45ca8c8`](https://github.com/PrismJS/prism/commit/45ca8c8)]
2872
+ * Split plugins into 3 columns on Download page [[`a88936a`](https://github.com/PrismJS/prism/commit/a88936a)]
2873
+ * Removed comment in components.js to make it easier to parse as JSON ([#679](https://github.com/PrismJS/prism/issues/679)) [[`2cb1326`](https://github.com/PrismJS/prism/commit/2cb1326)]
2874
+ * Updated README.md [[`1388256`](https://github.com/PrismJS/prism/commit/1388256)]
2875
+ * Updated documentation since the example was not relevant any more [[`80aedb2`](https://github.com/PrismJS/prism/commit/80aedb2)]
2876
+ * Fixed inline style for Coy theme [[`52829b3`](https://github.com/PrismJS/prism/commit/52829b3)]
2877
+ * Prevent errors in nodeJS ([#754](https://github.com/PrismJS/prism/issues/754)) [[`9f5c93c`](https://github.com/PrismJS/prism/commit/9f5c93c), [`0356c58`](https://github.com/PrismJS/prism/commit/0356c58)]
2878
+ * Explicitly make the Worker close itself after highlighting, so that users have control on this behaviour when directly using Prism inside a Worker. Fix [#492](https://github.com/PrismJS/prism/issues/492) [[`e42a228`](https://github.com/PrismJS/prism/commit/e42a228)]
2879
+ * Added some language aliases: js for javascript, xml, html, mathml and svg for markup [[`2f9fe1e`](https://github.com/PrismJS/prism/commit/2f9fe1e)]
2880
+ * Download page: Add a "Select all" checkbox ([#561](https://github.com/PrismJS/prism/issues/561)) [[`9a9020b`](https://github.com/PrismJS/prism/commit/9a9020b)]
2881
+ * Download page: Don't add semicolon unless needed in generated code. Fix [#273](https://github.com/PrismJS/prism/issues/273) [[`5a5eec5`](https://github.com/PrismJS/prism/commit/5a5eec5)]
2882
+ * Add language counter on homepage [[`889cda5`](https://github.com/PrismJS/prism/commit/889cda5)]
2883
+ * Improve performance by doing more work in the worker [[`1316abc`](https://github.com/PrismJS/prism/commit/1316abc)]
2884
+ * Replace Typeplate with SitePoint on homepage. Fix [#774](https://github.com/PrismJS/prism/issues/774) [[`0c54308`](https://github.com/PrismJS/prism/commit/0c54308)]
2885
+ * Added basic `.editorconfig` [[`c48f55d`](https://github.com/PrismJS/prism/commit/c48f55d)]
2886
+
2887
+ ---
2888
+
2889
+ ## 1.0.1 (2015-07-26)
2890
+
2891
+ ### New components
2892
+
2893
+ * __Brainfuck__ ([#611](https://github.com/PrismJS/prism/issues/611)) [[`3ede718`](https://github.com/PrismJS/prism/commit/3ede718)]
2894
+ * __Keyman__ ([#609](https://github.com/PrismJS/prism/issues/609)) [[`2698f82`](https://github.com/PrismJS/prism/commit/2698f82), [`e9936c6`](https://github.com/PrismJS/prism/commit/e9936c6)]
2895
+ * __Makefile__ ([#610](https://github.com/PrismJS/prism/issues/610)) [[`3baa61c`](https://github.com/PrismJS/prism/commit/3baa61c)]
2896
+ * __Sass (Sass)__ (fix [#199](https://github.com/PrismJS/prism/issues/199)) [[`b081804`](https://github.com/PrismJS/prism/commit/b081804)]
2897
+ * __VHDL__ ([#595](https://github.com/PrismJS/prism/issues/595)) [[`43e6157`](https://github.com/PrismJS/prism/commit/43e6157)]
2898
+
2899
+ ### Updated components
2900
+
2901
+ * __ActionScript__:
2902
+ * Fix ! operator and add ++ and -- as whole operators [[`6bf0794`](https://github.com/PrismJS/prism/commit/6bf0794)]
2903
+ * Fix XML highlighting [[`90257b0`](https://github.com/PrismJS/prism/commit/90257b0)]
2904
+ * Update examples to add inline XML [[`2c1626a`](https://github.com/PrismJS/prism/commit/2c1626a), [`3987711`](https://github.com/PrismJS/prism/commit/3987711)]
2905
+ * __Apache Configuration__:
2906
+ * Don't include the spaces in directive-inline [[`e87efd8`](https://github.com/PrismJS/prism/commit/e87efd8)]
2907
+ * __AppleScript__:
2908
+ * Allow one level of nesting in block comments [[`65894c5`](https://github.com/PrismJS/prism/commit/65894c5)]
2909
+ * Removed duplicates between operators and keywords [[`1ec5a81`](https://github.com/PrismJS/prism/commit/1ec5a81)]
2910
+ * Removed duplicates between keywords and classes [[`e8d09f6`](https://github.com/PrismJS/prism/commit/e8d09f6)]
2911
+ * Move numbers up so they are not broken by operator pattern [[`66dac31`](https://github.com/PrismJS/prism/commit/66dac31)]
2912
+ * __ASP.NET__:
2913
+ * Prevent Markup tags from breaking ASP tags + fix MasterType directive [[`1f0a336`](https://github.com/PrismJS/prism/commit/1f0a336)]
2914
+ * __AutoHotkey__:
2915
+ * Allow tags (labels) to be highlighted at the end of the code [[`0a1fc4b`](https://github.com/PrismJS/prism/commit/0a1fc4b)]
2916
+ * Match all operators + add comma to punctuation [[`f0ccb1b`](https://github.com/PrismJS/prism/commit/f0ccb1b)]
2917
+ * Removed duplicates in keywords lists [[`fe0a068`](https://github.com/PrismJS/prism/commit/fe0a068)]
2918
+ * __Bash__:
2919
+ * Simplify comment regex [[`2700981`](https://github.com/PrismJS/prism/commit/2700981)]
2920
+ * Removed duplicates in keywords + removed unneeded parentheses [[`903b8a4`](https://github.com/PrismJS/prism/commit/903b8a4)]
2921
+ * __C__:
2922
+ * Removed string pattern (inherited from C-like) [[`dcce1a7`](https://github.com/PrismJS/prism/commit/dcce1a7)]
2923
+ * Better support for macro statements [[`4868635`](https://github.com/PrismJS/prism/commit/4868635)]
2924
+ * __C#__:
2925
+ * Fix preprocessor pattern [[`86311f5`](https://github.com/PrismJS/prism/commit/86311f5)]
2926
+ * __C++__:
2927
+ * Removed delete[] and new[] broken keywords [[`42fbeef`](https://github.com/PrismJS/prism/commit/42fbeef)]
2928
+ * __C-like__:
2929
+ * Removed unused 'ignore' pattern [[`b6535dd`](https://github.com/PrismJS/prism/commit/b6535dd)]
2930
+ * Use look-ahead instead of inside to match functions [[`d4194c9`](https://github.com/PrismJS/prism/commit/d4194c9)]
2931
+ * __CoffeeScript__:
2932
+ * Prevent strings from ending with a backslash [[`cb6b824`](https://github.com/PrismJS/prism/commit/cb6b824)]
2933
+ * __CSS__:
2934
+ * Highlight parentheses as punctuation [[`cd0273e`](https://github.com/PrismJS/prism/commit/cd0273e)]
2935
+ * Improved highlighting of at-rules [[`e254088`](https://github.com/PrismJS/prism/commit/e254088)]
2936
+ * Improved URL and strings [[`901812c`](https://github.com/PrismJS/prism/commit/901812c)]
2937
+ * Selector regexp should not include last spaces before brace [[`f2e2718`](https://github.com/PrismJS/prism/commit/f2e2718)]
2938
+ * Handle \r\n [[`15760e1`](https://github.com/PrismJS/prism/commit/15760e1)]
2939
+ * __Eiffel__:
2940
+ * Fix string patterns order + fix /= operator [[`7d1b8d7`](https://github.com/PrismJS/prism/commit/7d1b8d7)]
2941
+ * __Erlang__:
2942
+ * Fixed quoted functions, quoted atoms, variables and <= operator [[`fa286aa`](https://github.com/PrismJS/prism/commit/fa286aa)]
2943
+ * __Fortran__:
2944
+ * Improved pattern for comments inside strings [[`40ae215`](https://github.com/PrismJS/prism/commit/40ae215)]
2945
+ * Fixed order in keyword pattern [[`8a6d32d`](https://github.com/PrismJS/prism/commit/8a6d32d)]
2946
+ * __Handlebars__:
2947
+ * Support blocks with dashes ([#587](https://github.com/PrismJS/prism/issues/587)) [[`f409b13`](https://github.com/PrismJS/prism/commit/f409b13)]
2948
+ * __JavaScript__:
2949
+ * Added support for 'y' and 'u' ES6 JavaScript regex flags ([#596](https://github.com/PrismJS/prism/issues/596)) [[`5d99957`](https://github.com/PrismJS/prism/commit/5d99957)]
2950
+ * Added support for missing ES6 keywords in JavaScript ([#596](https://github.com/PrismJS/prism/issues/596)) [[`ca68b87`](https://github.com/PrismJS/prism/commit/ca68b87)]
2951
+ * Added `async` and `await` keywords ([#575](https://github.com/PrismJS/prism/issues/575)) [[`5458cec`](https://github.com/PrismJS/prism/commit/5458cec)]
2952
+ * Added support for Template strings + interpolation [[`04f72b1`](https://github.com/PrismJS/prism/commit/04f72b1)]
2953
+ * Added support for octal and binary numbers ([#597](https://github.com/PrismJS/prism/issues/597)) [[`a8aa058`](https://github.com/PrismJS/prism/commit/a8aa058)]
2954
+ * Improve regex performance of C-like strings and JS regexps [[`476cbf4`](https://github.com/PrismJS/prism/commit/476cbf4)]
2955
+ * __Markup__:
2956
+ * Allow non-ASCII chars in tag names and attributes (fix [#585](https://github.com/PrismJS/prism/issues/585)) [[`52fd55e`](https://github.com/PrismJS/prism/commit/52fd55e)]
2957
+ * Optimized tag's regexp so that it stops crashing on large unclosed tags [[`75452ba`](https://github.com/PrismJS/prism/commit/75452ba)]
2958
+ * Highlight single quotes in attr-value as punctuation [[`1ebcb8e`](https://github.com/PrismJS/prism/commit/1ebcb8e)]
2959
+ * Doctype and prolog can be multi-line [[`c19a238`](https://github.com/PrismJS/prism/commit/c19a238)]
2960
+ * __Python__:
2961
+ * Added highlighting for function declaration ([#601](https://github.com/PrismJS/prism/issues/601)) [[`a88aae8`](https://github.com/PrismJS/prism/commit/a88aae8)]
2962
+ * Fixed wrong highlighting of variables named a, b, c... f ([#601](https://github.com/PrismJS/prism/issues/601)) [[`a88aae8`](https://github.com/PrismJS/prism/commit/a88aae8)]
2963
+ * __Ruby__:
2964
+ * Added support for string interpolation [[`c36b123`](https://github.com/PrismJS/prism/commit/c36b123)]
2965
+ * __Scss__:
2966
+ * Fixed media queries highlighting [[`bf8e032`](https://github.com/PrismJS/prism/commit/bf8e032)]
2967
+ * Improved highlighting inside at-rules [[`eef4248`](https://github.com/PrismJS/prism/commit/eef4248)]
2968
+ * Match placeholders inside selectors (fix [#238](https://github.com/PrismJS/prism/issues/238)) [[`4e42e26`](https://github.com/PrismJS/prism/commit/4e42e26)]
2969
+ * __Swift__:
2970
+ * Update keywords list (fix [#625](https://github.com/PrismJS/prism/issues/625)) [[`88f44a7`](https://github.com/PrismJS/prism/commit/88f44a7)]
2971
+
2972
+ ### Updated plugins
2973
+
2974
+ * __File Highlight__:
2975
+ * Allow to specify the highlighting language. Fix [#607](https://github.com/PrismJS/prism/issues/607) [[`8030db9`](https://github.com/PrismJS/prism/commit/8030db9)]
2976
+ * __Line Highlight__:
2977
+ * Fixed incorrect height in IE9 ([#604](https://github.com/PrismJS/prism/issues/604)) [[`f1705eb`](https://github.com/PrismJS/prism/commit/f1705eb)]
2978
+ * Prevent errors in IE8 [[`5f133c8`](https://github.com/PrismJS/prism/commit/5f133c8)]
2979
+
2980
+ ### Other changes
2981
+
2982
+ * Removed moot `version` property from `bower.json` ([#594](https://github.com/PrismJS/prism/issues/594)) [[`4693499`](https://github.com/PrismJS/prism/commit/4693499)]
2983
+ * Added repository to `bower.json` ([#600](https://github.com/PrismJS/prism/issues/600)) [[`8e5ebcc`](https://github.com/PrismJS/prism/commit/8e5ebcc)]
2984
+ * Added `.DS_Store` to `.gitignore` [[`1707e4e`](https://github.com/PrismJS/prism/commit/1707e4e)]
2985
+ * Improve test drive page usability. Fix [#591](https://github.com/PrismJS/prism/issues/591) [[`fe60858`](https://github.com/PrismJS/prism/commit/fe60858)]
2986
+ * Fixed prism-core and prism-file-highlight to prevent errors in IE8 [[`5f133c8`](https://github.com/PrismJS/prism/commit/5f133c8)]
2987
+ * Add Ubuntu Mono font to font stack [[`ed9d7e3`](https://github.com/PrismJS/prism/commit/ed9d7e3)]
2988
+
2989
+ ---
2990
+
2991
+ ## 1.0.0 (2015-05-23)
2992
+
2993
+ * First release
2994
+ * Supported languages:
2995
+ * ActionScript
2996
+ * Apache Configuration
2997
+ * AppleScript
2998
+ * ASP.NET (C#)
2999
+ * AutoHotkey
3000
+ * Bash
3001
+ * C
3002
+ * C#
3003
+ * C++
3004
+ * C-like
3005
+ * CoffeeScript
3006
+ * CSS
3007
+ * CSS Extras
3008
+ * Dart
3009
+ * Eiffel
3010
+ * Erlang
3011
+ * F#
3012
+ * Fortran
3013
+ * Gherkin
3014
+ * Git
3015
+ * Go
3016
+ * Groovy
3017
+ * Haml
3018
+ * Handlebars
3019
+ * Haskell
3020
+ * HTTP
3021
+ * Ini
3022
+ * Jade
3023
+ * Java
3024
+ * JavaScript
3025
+ * Julia
3026
+ * LaTeX
3027
+ * Less
3028
+ * LOLCODE
3029
+ * Markdown
3030
+ * Markup
3031
+ * MATLAB
3032
+ * NASM
3033
+ * NSIS
3034
+ * Objective-C
3035
+ * Pascal
3036
+ * Perl
3037
+ * PHP
3038
+ * PHP Extras
3039
+ * PowerShell
3040
+ * Python
3041
+ * R
3042
+ * React JSX
3043
+ * reST
3044
+ * Rip
3045
+ * Ruby
3046
+ * Rust
3047
+ * SAS
3048
+ * Sass (Scss)
3049
+ * Scala
3050
+ * Scheme
3051
+ * Smalltalk
3052
+ * Smarty
3053
+ * SQL
3054
+ * Stylus
3055
+ * Swift
3056
+ * Twig
3057
+ * TypeScript
3058
+ * Wiki markup
3059
+ * YAML
3060
+ * Plugins:
3061
+ * Autolinker
3062
+ * File Highlight
3063
+ * Highlight Keywords
3064
+ * Line Highlight
3065
+ * Line Numbers
3066
+ * Show Invisibles
3067
+ * Show Language
3068
+ * WebPlatform Docs