@templmf/temp-solf-lmf 0.0.127 → 0.0.129

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 (2144) hide show
  1. package/esm.sh/AGENTS.md +42 -0
  2. package/esm.sh/CHANGELOG-CLI.md +53 -0
  3. package/esm.sh/CHANGELOG-SERVER.md +1138 -0
  4. package/esm.sh/CONTRIBUTING.md +62 -0
  5. package/esm.sh/Dockerfile +34 -0
  6. package/esm.sh/HOSTING.md +164 -0
  7. package/esm.sh/LICENSE +21 -0
  8. package/esm.sh/Makefile +22 -0
  9. package/esm.sh/README.md +420 -0
  10. package/esm.sh/cli/README.md +47 -0
  11. package/esm.sh/cli/cli.go +46 -0
  12. package/esm.sh/cli/command_add.go +531 -0
  13. package/esm.sh/cli/command_tidy.go +152 -0
  14. package/esm.sh/cli/npm/README.md +44 -0
  15. package/esm.sh/cli/npm/bin/esm.sh +73 -0
  16. package/esm.sh/cli/npm/install.mjs +82 -0
  17. package/esm.sh/cli/npm/package.json +6 -0
  18. package/esm.sh/cli/utils.go +81 -0
  19. package/esm.sh/cli/version.go +4 -0
  20. package/esm.sh/config.example.jsonc +129 -0
  21. package/esm.sh/config.json +33 -0
  22. package/esm.sh/go.mod +23 -0
  23. package/esm.sh/go.sum +41 -0
  24. package/esm.sh/internal/app_dir/app_dir.go +21 -0
  25. package/esm.sh/internal/deno/deno.go +177 -0
  26. package/esm.sh/internal/fetch/fetch.go +60 -0
  27. package/esm.sh/internal/importmap/importmap.go +627 -0
  28. package/esm.sh/internal/importmap/importmap_test.go +150 -0
  29. package/esm.sh/internal/importmap/meta.go +294 -0
  30. package/esm.sh/internal/importmap/scope.go +28 -0
  31. package/esm.sh/internal/jsonc/jsonc.go +81 -0
  32. package/esm.sh/internal/mime/mime.go +80 -0
  33. package/esm.sh/internal/npm/npm.go +343 -0
  34. package/esm.sh/internal/npm/npm_test.go +131 -0
  35. package/esm.sh/internal/npm/package_json.go +427 -0
  36. package/esm.sh/internal/npm_replacements/build.go +94 -0
  37. package/esm.sh/internal/npm_replacements/src/README.md +5 -0
  38. package/esm.sh/internal/npm_replacements/src/abort-controller/browser.mjs +3 -0
  39. package/esm.sh/internal/npm_replacements/src/abort-controller/index.mjs +3 -0
  40. package/esm.sh/internal/npm_replacements/src/abort-controller/polyfill.mjs +1 -0
  41. package/esm.sh/internal/npm_replacements/src/array-buffer-byte-length.mjs +1 -0
  42. package/esm.sh/internal/npm_replacements/src/array-every.mjs +1 -0
  43. package/esm.sh/internal/npm_replacements/src/array-includes.mjs +1 -0
  44. package/esm.sh/internal/npm_replacements/src/array-map.mjs +1 -0
  45. package/esm.sh/internal/npm_replacements/src/array.from.mjs +1 -0
  46. package/esm.sh/internal/npm_replacements/src/array.of.mjs +1 -0
  47. package/esm.sh/internal/npm_replacements/src/array.prototype.at.mjs +1 -0
  48. package/esm.sh/internal/npm_replacements/src/array.prototype.concat.mjs +1 -0
  49. package/esm.sh/internal/npm_replacements/src/array.prototype.copywithin.mjs +1 -0
  50. package/esm.sh/internal/npm_replacements/src/array.prototype.entries.mjs +1 -0
  51. package/esm.sh/internal/npm_replacements/src/array.prototype.every.mjs +1 -0
  52. package/esm.sh/internal/npm_replacements/src/array.prototype.fill.mjs +1 -0
  53. package/esm.sh/internal/npm_replacements/src/array.prototype.filter.mjs +1 -0
  54. package/esm.sh/internal/npm_replacements/src/array.prototype.find.mjs +1 -0
  55. package/esm.sh/internal/npm_replacements/src/array.prototype.findindex.mjs +1 -0
  56. package/esm.sh/internal/npm_replacements/src/array.prototype.findlast.mjs +1 -0
  57. package/esm.sh/internal/npm_replacements/src/array.prototype.findlastindex.mjs +1 -0
  58. package/esm.sh/internal/npm_replacements/src/array.prototype.flat.mjs +1 -0
  59. package/esm.sh/internal/npm_replacements/src/array.prototype.flatmap.mjs +1 -0
  60. package/esm.sh/internal/npm_replacements/src/array.prototype.foreach.mjs +1 -0
  61. package/esm.sh/internal/npm_replacements/src/array.prototype.includes.mjs +1 -0
  62. package/esm.sh/internal/npm_replacements/src/array.prototype.indexof.mjs +1 -0
  63. package/esm.sh/internal/npm_replacements/src/array.prototype.join.mjs +1 -0
  64. package/esm.sh/internal/npm_replacements/src/array.prototype.keys.mjs +1 -0
  65. package/esm.sh/internal/npm_replacements/src/array.prototype.lastindexof.mjs +1 -0
  66. package/esm.sh/internal/npm_replacements/src/array.prototype.map.mjs +1 -0
  67. package/esm.sh/internal/npm_replacements/src/array.prototype.push.mjs +1 -0
  68. package/esm.sh/internal/npm_replacements/src/array.prototype.reduce.mjs +1 -0
  69. package/esm.sh/internal/npm_replacements/src/array.prototype.reduceright.mjs +1 -0
  70. package/esm.sh/internal/npm_replacements/src/array.prototype.slice.mjs +1 -0
  71. package/esm.sh/internal/npm_replacements/src/array.prototype.some.mjs +1 -0
  72. package/esm.sh/internal/npm_replacements/src/array.prototype.splice.mjs +1 -0
  73. package/esm.sh/internal/npm_replacements/src/array.prototype.toreversed.mjs +1 -0
  74. package/esm.sh/internal/npm_replacements/src/array.prototype.tosorted.mjs +1 -0
  75. package/esm.sh/internal/npm_replacements/src/array.prototype.tospliced.mjs +1 -0
  76. package/esm.sh/internal/npm_replacements/src/array.prototype.unshift.mjs +1 -0
  77. package/esm.sh/internal/npm_replacements/src/array.prototype.values.mjs +1 -0
  78. package/esm.sh/internal/npm_replacements/src/array.prototype.with.mjs +1 -0
  79. package/esm.sh/internal/npm_replacements/src/arraybuffer.prototype.slice.mjs +1 -0
  80. package/esm.sh/internal/npm_replacements/src/call-bind.mjs +1 -0
  81. package/esm.sh/internal/npm_replacements/src/clone-regexp.mjs +26 -0
  82. package/esm.sh/internal/npm_replacements/src/concat-map.mjs +1 -0
  83. package/esm.sh/internal/npm_replacements/src/cross-fetch/index.mjs +2 -0
  84. package/esm.sh/internal/npm_replacements/src/cross-fetch/polyfill.mjs +1 -0
  85. package/esm.sh/internal/npm_replacements/src/data-view-buffer.mjs +1 -0
  86. package/esm.sh/internal/npm_replacements/src/data-view-byte-length.mjs +2 -0
  87. package/esm.sh/internal/npm_replacements/src/data-view-byte-offset.mjs +2 -0
  88. package/esm.sh/internal/npm_replacements/src/deep-extend.mjs +1 -0
  89. package/esm.sh/internal/npm_replacements/src/defaults.mjs +2 -0
  90. package/esm.sh/internal/npm_replacements/src/define-accessor-property.mjs +2 -0
  91. package/esm.sh/internal/npm_replacements/src/define-data-property.mjs +3 -0
  92. package/esm.sh/internal/npm_replacements/src/define-properties.mjs +2 -0
  93. package/esm.sh/internal/npm_replacements/src/define-property.mjs +1 -0
  94. package/esm.sh/internal/npm_replacements/src/es-aggregate-error.mjs +2 -0
  95. package/esm.sh/internal/npm_replacements/src/es-define-property.mjs +1 -0
  96. package/esm.sh/internal/npm_replacements/src/es-errors/eval.mjs +1 -0
  97. package/esm.sh/internal/npm_replacements/src/es-errors/index.mjs +1 -0
  98. package/esm.sh/internal/npm_replacements/src/es-errors/range.mjs +1 -0
  99. package/esm.sh/internal/npm_replacements/src/es-errors/ref.mjs +1 -0
  100. package/esm.sh/internal/npm_replacements/src/es-errors/syntax.mjs +1 -0
  101. package/esm.sh/internal/npm_replacements/src/es-errors/type.mjs +1 -0
  102. package/esm.sh/internal/npm_replacements/src/es-errors/uri.mjs +1 -0
  103. package/esm.sh/internal/npm_replacements/src/es-get-iterator.mjs +1 -0
  104. package/esm.sh/internal/npm_replacements/src/es-set-tostringtag.mjs +1 -0
  105. package/esm.sh/internal/npm_replacements/src/es-shim-unscopables.mjs +5 -0
  106. package/esm.sh/internal/npm_replacements/src/es6-object-assign.mjs +2 -0
  107. package/esm.sh/internal/npm_replacements/src/esm-env.mjs +3 -0
  108. package/esm.sh/internal/npm_replacements/src/esm-env_browser.mjs +3 -0
  109. package/esm.sh/internal/npm_replacements/src/esm-env_node.mjs +3 -0
  110. package/esm.sh/internal/npm_replacements/src/esm-env_node_dev.mjs +3 -0
  111. package/esm.sh/internal/npm_replacements/src/extend-shallow.mjs +2 -0
  112. package/esm.sh/internal/npm_replacements/src/filter-array.mjs +1 -0
  113. package/esm.sh/internal/npm_replacements/src/for-each.mjs +9 -0
  114. package/esm.sh/internal/npm_replacements/src/fsevents.mjs +14 -0
  115. package/esm.sh/internal/npm_replacements/src/function-bind.mjs +1 -0
  116. package/esm.sh/internal/npm_replacements/src/function.prototype.name.mjs +3 -0
  117. package/esm.sh/internal/npm_replacements/src/functions-have-names.mjs +2 -0
  118. package/esm.sh/internal/npm_replacements/src/get-symbol-description.mjs +2 -0
  119. package/esm.sh/internal/npm_replacements/src/global/console.mjs +1 -0
  120. package/esm.sh/internal/npm_replacements/src/global/document.mjs +1 -0
  121. package/esm.sh/internal/npm_replacements/src/global/index.mjs +1 -0
  122. package/esm.sh/internal/npm_replacements/src/global/process.mjs +1 -0
  123. package/esm.sh/internal/npm_replacements/src/global/window.mjs +1 -0
  124. package/esm.sh/internal/npm_replacements/src/globalthis.mjs +3 -0
  125. package/esm.sh/internal/npm_replacements/src/gopd.mjs +2 -0
  126. package/esm.sh/internal/npm_replacements/src/has-own-prop.mjs +1 -0
  127. package/esm.sh/internal/npm_replacements/src/has-own.mjs +1 -0
  128. package/esm.sh/internal/npm_replacements/src/has-property-descriptors.mjs +1 -0
  129. package/esm.sh/internal/npm_replacements/src/has-proto.mjs +1 -0
  130. package/esm.sh/internal/npm_replacements/src/has-symbols.mjs +1 -0
  131. package/esm.sh/internal/npm_replacements/src/has-tostringtag.mjs +1 -0
  132. package/esm.sh/internal/npm_replacements/src/has.mjs +2 -0
  133. package/esm.sh/internal/npm_replacements/src/hasown.mjs +1 -0
  134. package/esm.sh/internal/npm_replacements/src/indent-string.mjs +2 -0
  135. package/esm.sh/internal/npm_replacements/src/index-of.mjs +1 -0
  136. package/esm.sh/internal/npm_replacements/src/inherits.mjs +14 -0
  137. package/esm.sh/internal/npm_replacements/src/is-array-buffer.mjs +1 -0
  138. package/esm.sh/internal/npm_replacements/src/is-boolean-object.mjs +1 -0
  139. package/esm.sh/internal/npm_replacements/src/is-date-object.mjs +1 -0
  140. package/esm.sh/internal/npm_replacements/src/is-even.mjs +1 -0
  141. package/esm.sh/internal/npm_replacements/src/is-nan.mjs +1 -0
  142. package/esm.sh/internal/npm_replacements/src/is-negative-zero.mjs +1 -0
  143. package/esm.sh/internal/npm_replacements/src/is-npm.mjs +3 -0
  144. package/esm.sh/internal/npm_replacements/src/is-number-object.mjs +1 -0
  145. package/esm.sh/internal/npm_replacements/src/is-number.mjs +2 -0
  146. package/esm.sh/internal/npm_replacements/src/is-odd.mjs +1 -0
  147. package/esm.sh/internal/npm_replacements/src/is-plain-object.mjs +4 -0
  148. package/esm.sh/internal/npm_replacements/src/is-primitive.mjs +1 -0
  149. package/esm.sh/internal/npm_replacements/src/is-regexp.mjs +1 -0
  150. package/esm.sh/internal/npm_replacements/src/is-shared-array-buffer.mjs +1 -0
  151. package/esm.sh/internal/npm_replacements/src/is-string.mjs +1 -0
  152. package/esm.sh/internal/npm_replacements/src/is-whitespace.mjs +1 -0
  153. package/esm.sh/internal/npm_replacements/src/iterate-iterator.mjs +11 -0
  154. package/esm.sh/internal/npm_replacements/src/iterate-value.mjs +10 -0
  155. package/esm.sh/internal/npm_replacements/src/left-pad.mjs +1 -0
  156. package/esm.sh/internal/npm_replacements/src/node-fetch.mjs +18 -0
  157. package/esm.sh/internal/npm_replacements/src/node-fetch_deno.mjs +30 -0
  158. package/esm.sh/internal/npm_replacements/src/node.extend.mjs +5 -0
  159. package/esm.sh/internal/npm_replacements/src/object-assign.mjs +1 -0
  160. package/esm.sh/internal/npm_replacements/src/object-is.mjs +1 -0
  161. package/esm.sh/internal/npm_replacements/src/object-keys.mjs +1 -0
  162. package/esm.sh/internal/npm_replacements/src/object.assign.mjs +1 -0
  163. package/esm.sh/internal/npm_replacements/src/object.entries.mjs +1 -0
  164. package/esm.sh/internal/npm_replacements/src/object.fromentries.mjs +1 -0
  165. package/esm.sh/internal/npm_replacements/src/object.getownpropertydescriptors.mjs +1 -0
  166. package/esm.sh/internal/npm_replacements/src/object.getprototypeof.mjs +1 -0
  167. package/esm.sh/internal/npm_replacements/src/object.hasown.mjs +1 -0
  168. package/esm.sh/internal/npm_replacements/src/object.keys.mjs +1 -0
  169. package/esm.sh/internal/npm_replacements/src/object.values.mjs +1 -0
  170. package/esm.sh/internal/npm_replacements/src/pad-left.mjs +1 -0
  171. package/esm.sh/internal/npm_replacements/src/pad-right.mjs +1 -0
  172. package/esm.sh/internal/npm_replacements/src/promise.allsettled.mjs +2 -0
  173. package/esm.sh/internal/npm_replacements/src/promise.any.mjs +2 -0
  174. package/esm.sh/internal/npm_replacements/src/promise.prototype.finally.mjs +2 -0
  175. package/esm.sh/internal/npm_replacements/src/reflect.getprototypeof.mjs +2 -0
  176. package/esm.sh/internal/npm_replacements/src/reflect.ownkeys.mjs +2 -0
  177. package/esm.sh/internal/npm_replacements/src/regexp.prototype.flags.mjs +1 -0
  178. package/esm.sh/internal/npm_replacements/src/slash.mjs +1 -0
  179. package/esm.sh/internal/npm_replacements/src/string.prototype.at.mjs +1 -0
  180. package/esm.sh/internal/npm_replacements/src/string.prototype.codepointat.mjs +1 -0
  181. package/esm.sh/internal/npm_replacements/src/string.prototype.endswith.mjs +1 -0
  182. package/esm.sh/internal/npm_replacements/src/string.prototype.includes.mjs +1 -0
  183. package/esm.sh/internal/npm_replacements/src/string.prototype.iswellformed.mjs +1 -0
  184. package/esm.sh/internal/npm_replacements/src/string.prototype.lastindexof.mjs +1 -0
  185. package/esm.sh/internal/npm_replacements/src/string.prototype.matchall.mjs +1 -0
  186. package/esm.sh/internal/npm_replacements/src/string.prototype.padend.mjs +1 -0
  187. package/esm.sh/internal/npm_replacements/src/string.prototype.padstart.mjs +1 -0
  188. package/esm.sh/internal/npm_replacements/src/string.prototype.repeat.mjs +1 -0
  189. package/esm.sh/internal/npm_replacements/src/string.prototype.replaceall.mjs +1 -0
  190. package/esm.sh/internal/npm_replacements/src/string.prototype.split.mjs +1 -0
  191. package/esm.sh/internal/npm_replacements/src/string.prototype.startswith.mjs +1 -0
  192. package/esm.sh/internal/npm_replacements/src/string.prototype.substr.mjs +1 -0
  193. package/esm.sh/internal/npm_replacements/src/string.prototype.towellformed.mjs +1 -0
  194. package/esm.sh/internal/npm_replacements/src/string.prototype.trim.mjs +1 -0
  195. package/esm.sh/internal/npm_replacements/src/string.prototype.trimend.mjs +1 -0
  196. package/esm.sh/internal/npm_replacements/src/string.prototype.trimleft.mjs +1 -0
  197. package/esm.sh/internal/npm_replacements/src/string.prototype.trimright.mjs +1 -0
  198. package/esm.sh/internal/npm_replacements/src/string.prototype.trimstart.mjs +1 -0
  199. package/esm.sh/internal/npm_replacements/src/string.raw.mjs +1 -0
  200. package/esm.sh/internal/npm_replacements/src/symbol.prototype.description.mjs +2 -0
  201. package/esm.sh/internal/npm_replacements/src/typed-array-buffer.mjs +2 -0
  202. package/esm.sh/internal/npm_replacements/src/typed-array-byte-length.mjs +2 -0
  203. package/esm.sh/internal/npm_replacements/src/typed-array-byte-offset.mjs +2 -0
  204. package/esm.sh/internal/npm_replacements/src/typed-array-length.mjs +2 -0
  205. package/esm.sh/internal/npm_replacements/src/typedarray.prototype.slice.mjs +2 -0
  206. package/esm.sh/internal/npm_replacements/src/xtend.mjs +1 -0
  207. package/esm.sh/internal/storage/storage.go +46 -0
  208. package/esm.sh/internal/storage/storage_fs.go +190 -0
  209. package/esm.sh/internal/storage/storage_fs_test.go +163 -0
  210. package/esm.sh/internal/storage/storage_s3.go +463 -0
  211. package/esm.sh/internal/storage/storage_s3_test.go +142 -0
  212. package/esm.sh/internal/storage/storage_s3_utils.go +55 -0
  213. package/esm.sh/main +0 -0
  214. package/esm.sh/main.go +9 -0
  215. package/esm.sh/scripts/deploy-ci.sh +100 -0
  216. package/esm.sh/scripts/deploy-vm.sh +85 -0
  217. package/esm.sh/scripts/deploy.sh +141 -0
  218. package/esm.sh/server/build.go +1661 -0
  219. package/esm.sh/server/build_analyzer.go +210 -0
  220. package/esm.sh/server/build_args.go +294 -0
  221. package/esm.sh/server/build_args_test.go +52 -0
  222. package/esm.sh/server/build_meta.go +168 -0
  223. package/esm.sh/server/build_meta_test.go +35 -0
  224. package/esm.sh/server/build_queue.go +187 -0
  225. package/esm.sh/server/build_resolver.go +1447 -0
  226. package/esm.sh/server/build_rewriter.go +67 -0
  227. package/esm.sh/server/build_target.go +46 -0
  228. package/esm.sh/server/cache.go +136 -0
  229. package/esm.sh/server/cache_test.go +65 -0
  230. package/esm.sh/server/cjs_module_lexer.go +299 -0
  231. package/esm.sh/server/config.go +335 -0
  232. package/esm.sh/server/config_test.go +278 -0
  233. package/esm.sh/server/consts.go +146 -0
  234. package/esm.sh/server/db.go +13 -0
  235. package/esm.sh/server/db_bolt.go +50 -0
  236. package/esm.sh/server/debug.go +53 -0
  237. package/esm.sh/server/disk.go +67 -0
  238. package/esm.sh/server/dts_lexer.go +272 -0
  239. package/esm.sh/server/dts_lexer_test.go +96 -0
  240. package/esm.sh/server/dts_transform.go +281 -0
  241. package/esm.sh/server/embed/favicon.ico +0 -0
  242. package/esm.sh/server/embed/images/banner.svg +8 -0
  243. package/esm.sh/server/embed/images/cloudflare.svg +1 -0
  244. package/esm.sh/server/embed/images/fig-x-typescript-types.png +0 -0
  245. package/esm.sh/server/embed/index.html +392 -0
  246. package/esm.sh/server/embed/install.sh +109 -0
  247. package/esm.sh/server/embed/node-runtime.tgz +0 -0
  248. package/esm.sh/server/embed/tsx.ts +110 -0
  249. package/esm.sh/server/esmd/main.go +9 -0
  250. package/esm.sh/server/git.go +92 -0
  251. package/esm.sh/server/git_test.go +39 -0
  252. package/esm.sh/server/legacy_router.go +266 -0
  253. package/esm.sh/server/loader.go +97 -0
  254. package/esm.sh/server/loader_implements.go +121 -0
  255. package/esm.sh/server/npmrc.go +767 -0
  256. package/esm.sh/server/npmrc_test.go +101 -0
  257. package/esm.sh/server/path.go +400 -0
  258. package/esm.sh/server/path_test.go +46 -0
  259. package/esm.sh/server/release.go +25 -0
  260. package/esm.sh/server/router.go +1623 -0
  261. package/esm.sh/server/router_test.go +35 -0
  262. package/esm.sh/server/server.go +202 -0
  263. package/esm.sh/server/transform.go +231 -0
  264. package/esm.sh/server/unenv.go +221 -0
  265. package/esm.sh/server/utils.go +191 -0
  266. package/esm.sh/test/.template/deno.json +5 -0
  267. package/esm.sh/test/.template/test.ts +11 -0
  268. package/esm.sh/test/bad-url/test.ts +16 -0
  269. package/esm.sh/test/bootstrap.ts +153 -0
  270. package/esm.sh/test/build-args/alias.test.ts +11 -0
  271. package/esm.sh/test/build-args/bundle.test.ts +28 -0
  272. package/esm.sh/test/build-args/deps.test.ts +42 -0
  273. package/esm.sh/test/build-args/dev.test.ts +17 -0
  274. package/esm.sh/test/build-args/exports.test.ts +25 -0
  275. package/esm.sh/test/build-args/external.test.ts +113 -0
  276. package/esm.sh/test/build-args/package-css.test.ts +13 -0
  277. package/esm.sh/test/build-args/target.test.ts +67 -0
  278. package/esm.sh/test/build-args/web-worker.test.ts +44 -0
  279. package/esm.sh/test/builtin-scripts/test.ts +25 -0
  280. package/esm.sh/test/common/ajv.test.ts +13 -0
  281. package/esm.sh/test/common/axios.test.ts +8 -0
  282. package/esm.sh/test/common/esbuild.test.ts +8 -0
  283. package/esm.sh/test/common/graphgl.test.ts +24 -0
  284. package/esm.sh/test/common/html-to-react.tsx +14 -0
  285. package/esm.sh/test/common/io-ts.test.ts +28 -0
  286. package/esm.sh/test/common/jotail.test.ts +6 -0
  287. package/esm.sh/test/common/marked.test.ts +22 -0
  288. package/esm.sh/test/common/micromark.test.ts +31 -0
  289. package/esm.sh/test/common/misc.test.ts +15 -0
  290. package/esm.sh/test/common/prismjs.test.ts +14 -0
  291. package/esm.sh/test/common/rc-util.test.ts +10 -0
  292. package/esm.sh/test/common/sanitize-html.test.ts +15 -0
  293. package/esm.sh/test/common/terser.test.ts +10 -0
  294. package/esm.sh/test/common/unocss.test.ts +36 -0
  295. package/esm.sh/test/common/webtorrent.test.ts +7 -0
  296. package/esm.sh/test/cors/cors.test.ts +37 -0
  297. package/esm.sh/test/date-version/test.ts +227 -0
  298. package/esm.sh/test/deno/express.test.ts +30 -0
  299. package/esm.sh/test/deno/postcss.test.ts +41 -0
  300. package/esm.sh/test/dts/dts-header.test.ts +11 -0
  301. package/esm.sh/test/dts/types-only.test.ts +14 -0
  302. package/esm.sh/test/dts/types-versions.test.ts +14 -0
  303. package/esm.sh/test/empty-mjs-module/test.ts +25 -0
  304. package/esm.sh/test/fixed-url/test.ts +197 -0
  305. package/esm.sh/test/gh/fluentui-emoji.test.ts +10 -0
  306. package/esm.sh/test/gh/issue-1099.test.ts +8 -0
  307. package/esm.sh/test/gh/jsr.test.ts +8 -0
  308. package/esm.sh/test/gh/phospor-icons.test.tsx +12 -0
  309. package/esm.sh/test/gh/streamlit.test.ts +7 -0
  310. package/esm.sh/test/gh/tslib.test.ts +7 -0
  311. package/esm.sh/test/import-json/test.ts +51 -0
  312. package/esm.sh/test/issue-1046/test.ts +16 -0
  313. package/esm.sh/test/issue-1145/test.ts +19 -0
  314. package/esm.sh/test/issue-1161/test.ts +11 -0
  315. package/esm.sh/test/issue-1166/test.ts +12 -0
  316. package/esm.sh/test/issue-1178/test.ts +32 -0
  317. package/esm.sh/test/issue-1191/test.ts +28 -0
  318. package/esm.sh/test/issue-1199/test.ts +10 -0
  319. package/esm.sh/test/issue-1217/test.ts +29 -0
  320. package/esm.sh/test/issue-1233/test.ts +14 -0
  321. package/esm.sh/test/issue-1285/test.ts +12 -0
  322. package/esm.sh/test/issue-1367/test.ts +43 -0
  323. package/esm.sh/test/issue-165/test.ts +11 -0
  324. package/esm.sh/test/issue-362/test.ts +9 -0
  325. package/esm.sh/test/issue-363/test.ts +8 -0
  326. package/esm.sh/test/issue-381/test.ts +9 -0
  327. package/esm.sh/test/issue-389/test.ts +8 -0
  328. package/esm.sh/test/issue-392/test.ts +7 -0
  329. package/esm.sh/test/issue-400/test.ts +7 -0
  330. package/esm.sh/test/issue-410/test.ts +9 -0
  331. package/esm.sh/test/issue-411/test.ts +17 -0
  332. package/esm.sh/test/issue-417/test.ts +8 -0
  333. package/esm.sh/test/issue-420/deno.json +8 -0
  334. package/esm.sh/test/issue-420/test.ts +17 -0
  335. package/esm.sh/test/issue-422/test.ts +8 -0
  336. package/esm.sh/test/issue-454/test.ts +7 -0
  337. package/esm.sh/test/issue-464/test.ts +12 -0
  338. package/esm.sh/test/issue-483/test.ts +7 -0
  339. package/esm.sh/test/issue-497/test.ts +14 -0
  340. package/esm.sh/test/issue-502/test.ts +7 -0
  341. package/esm.sh/test/issue-503/test.ts +7 -0
  342. package/esm.sh/test/issue-512/test.ts +11 -0
  343. package/esm.sh/test/issue-520/test.ts +7 -0
  344. package/esm.sh/test/issue-521/test.ts +7 -0
  345. package/esm.sh/test/issue-527/test.ts +7 -0
  346. package/esm.sh/test/issue-553/test.ts +7 -0
  347. package/esm.sh/test/issue-557/test.ts +7 -0
  348. package/esm.sh/test/issue-562/test.ts +7 -0
  349. package/esm.sh/test/issue-566/test.ts +7 -0
  350. package/esm.sh/test/issue-572/test.ts +7 -0
  351. package/esm.sh/test/issue-575/test.ts +21 -0
  352. package/esm.sh/test/issue-576/test.ts +8 -0
  353. package/esm.sh/test/issue-577/test.ts +14 -0
  354. package/esm.sh/test/issue-578/test.ts +11 -0
  355. package/esm.sh/test/issue-580/test.ts +11 -0
  356. package/esm.sh/test/issue-581/test.ts +10 -0
  357. package/esm.sh/test/issue-583/test.ts +9 -0
  358. package/esm.sh/test/issue-588/test.ts +7 -0
  359. package/esm.sh/test/issue-589/test.ts +16 -0
  360. package/esm.sh/test/issue-591/test.ts +7 -0
  361. package/esm.sh/test/issue-592/test.ts +7 -0
  362. package/esm.sh/test/issue-593/test.ts +9 -0
  363. package/esm.sh/test/issue-594/test.ts +7 -0
  364. package/esm.sh/test/issue-596/test.ts +6 -0
  365. package/esm.sh/test/issue-599/test.ts +9 -0
  366. package/esm.sh/test/issue-601/test.ts +7 -0
  367. package/esm.sh/test/issue-602/test.ts +24 -0
  368. package/esm.sh/test/issue-606/test.ts +25 -0
  369. package/esm.sh/test/issue-611/test.ts +7 -0
  370. package/esm.sh/test/issue-620/test.ts +8 -0
  371. package/esm.sh/test/issue-627/test.ts +13 -0
  372. package/esm.sh/test/issue-628/test.ts +7 -0
  373. package/esm.sh/test/issue-629/test.ts +10 -0
  374. package/esm.sh/test/issue-633/test.ts +7 -0
  375. package/esm.sh/test/issue-638/test.ts +14 -0
  376. package/esm.sh/test/issue-639/test.ts +14 -0
  377. package/esm.sh/test/issue-640/test.ts +17 -0
  378. package/esm.sh/test/issue-642/test.ts +14 -0
  379. package/esm.sh/test/issue-649/test.ts +20 -0
  380. package/esm.sh/test/issue-659/test.ts +7 -0
  381. package/esm.sh/test/issue-671/test.ts +23 -0
  382. package/esm.sh/test/issue-691/test.ts +7 -0
  383. package/esm.sh/test/issue-705/test.ts +8 -0
  384. package/esm.sh/test/issue-711/test.ts +16 -0
  385. package/esm.sh/test/issue-724/test.ts +11 -0
  386. package/esm.sh/test/issue-728/test.ts +12 -0
  387. package/esm.sh/test/issue-732/test.ts +12 -0
  388. package/esm.sh/test/issue-741/test.ts +27 -0
  389. package/esm.sh/test/issue-743/test.ts +8 -0
  390. package/esm.sh/test/issue-750/test.ts +19 -0
  391. package/esm.sh/test/issue-754/test.ts +24 -0
  392. package/esm.sh/test/issue-761/test.ts +7 -0
  393. package/esm.sh/test/issue-763/test.ts +13 -0
  394. package/esm.sh/test/issue-765/test.ts +18 -0
  395. package/esm.sh/test/issue-787/test.ts +8 -0
  396. package/esm.sh/test/issue-791/test.ts +7 -0
  397. package/esm.sh/test/issue-808/test.ts +7 -0
  398. package/esm.sh/test/issue-817/deno.json +13 -0
  399. package/esm.sh/test/issue-817/test.ts +7 -0
  400. package/esm.sh/test/issue-840/test.ts +11 -0
  401. package/esm.sh/test/issue-847/deno.json +5 -0
  402. package/esm.sh/test/issue-847/test.ts +8 -0
  403. package/esm.sh/test/issue-888/test.ts +15 -0
  404. package/esm.sh/test/issue-907/test.ts +7 -0
  405. package/esm.sh/test/jsr/hono.test.ts +9 -0
  406. package/esm.sh/test/jsr/other.ts +6 -0
  407. package/esm.sh/test/jsr/std.test.ts +20 -0
  408. package/esm.sh/test/legacy-routes/test.ts +178 -0
  409. package/esm.sh/test/mdx/mdx.test.ts +28 -0
  410. package/esm.sh/test/meta/meta.test.ts +47 -0
  411. package/esm.sh/test/node-polyfill/browser-excluded.test.ts +21 -0
  412. package/esm.sh/test/node-polyfill/polyfill.test.ts +10 -0
  413. package/esm.sh/test/npm-replacements/test.ts +11 -0
  414. package/esm.sh/test/pkg.pr.new/test.ts +23 -0
  415. package/esm.sh/test/preact/deno.json +10 -0
  416. package/esm.sh/test/preact/swr.test.tsx +26 -0
  417. package/esm.sh/test/preact/test.tsx +32 -0
  418. package/esm.sh/test/raw/raw.test.ts +19 -0
  419. package/esm.sh/test/react-17/deno.json +8 -0
  420. package/esm.sh/test/react-17/test.tsx +17 -0
  421. package/esm.sh/test/react-18/deno.json +8 -0
  422. package/esm.sh/test/react-18/dev.test.tsx +17 -0
  423. package/esm.sh/test/react-18/ssr.test.tsx +17 -0
  424. package/esm.sh/test/react-18/stream-ssr.test.tsx +18 -0
  425. package/esm.sh/test/scoped-fork/test.ts +36 -0
  426. package/esm.sh/test/solid-js-1.5/deno.json +9 -0
  427. package/esm.sh/test/solid-js-1.5/test.ts +49 -0
  428. package/esm.sh/test/solid-js-1.6/deno.json +9 -0
  429. package/esm.sh/test/solid-js-1.6/test.ts +56 -0
  430. package/esm.sh/test/solid-js-refresh/browser.test.ts +27 -0
  431. package/esm.sh/test/splitting/splitting.test.ts +7 -0
  432. package/esm.sh/test/svelte-4/svelte-compiler.test.ts +49 -0
  433. package/esm.sh/test/svelte-4/svelte-runtime.test.ts +16 -0
  434. package/esm.sh/test/svelte-5/svelte-compiler.test.ts +48 -0
  435. package/esm.sh/test/svelte-5/svelte-runtime.test.ts +7 -0
  436. package/esm.sh/test/transform/transform.test.ts +59 -0
  437. package/esm.sh/test/typescript/test.ts +21 -0
  438. package/esm.sh/test/valtown/gh.test.ts +9 -0
  439. package/esm.sh/test/valtown/test.ts +9 -0
  440. package/esm.sh/test/vue/sfc-compiler.test.ts +21 -0
  441. package/esm.sh/test/vue/ssr.test.ts +15 -0
  442. package/esm.sh/test/vue/transfrom-sfc-on-fly.test.ts +14 -0
  443. package/esm.sh/web/README.md +94 -0
  444. package/esm.sh/web/debug.go +11 -0
  445. package/esm.sh/web/embed.go +6 -0
  446. package/esm.sh/web/handler.go +1044 -0
  447. package/esm.sh/web/internal/hmr.js +169 -0
  448. package/esm.sh/web/internal/loader.js +168 -0
  449. package/esm.sh/web/internal/prefresh.js +53 -0
  450. package/esm.sh/web/internal/refresh.js +26 -0
  451. package/esm.sh/web/internal/vdr.js +19 -0
  452. package/esm.sh/web/release.go +8 -0
  453. package/esm.sh/web/utils.go +71 -0
  454. package/esm.sh/web/worker.go +166 -0
  455. package/esm.sh/~/.esmd/bin/cjs-module-lexer-1.0.8 +0 -0
  456. package/esm.sh/~/.esmd/log/server-20260609.log +18 -0
  457. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/README.md +15 -0
  458. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/canary.d.ts +129 -0
  459. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/compiler-runtime.d.ts +4 -0
  460. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/experimental.d.ts +184 -0
  461. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/global.d.ts +166 -0
  462. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/index.d.ts +4369 -0
  463. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/jsx-dev-runtime.d.ts +33 -0
  464. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/jsx-runtime.d.ts +24 -0
  465. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/package.json +210 -0
  466. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/ts5.0/canary.d.ts +129 -0
  467. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/ts5.0/experimental.d.ts +184 -0
  468. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/ts5.0/global.d.ts +166 -0
  469. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/ts5.0/index.d.ts +4356 -0
  470. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/ts5.0/jsx-dev-runtime.d.ts +33 -0
  471. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/ts5.0/jsx-runtime.d.ts +24 -0
  472. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/README.md +13 -0
  473. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.js +1972 -0
  474. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.prod.js +1822 -0
  475. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts +1450 -0
  476. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.esm-browser.js +12857 -0
  477. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.esm-browser.prod.js +7 -0
  478. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.esm-bundler.js +2011 -0
  479. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.global.js +12910 -0
  480. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.global.prod.js +7 -0
  481. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/index.js +7 -0
  482. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/package.json +60 -0
  483. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/CHANGES.md +3340 -0
  484. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/README.md +468 -0
  485. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/SECURITY.md +19 -0
  486. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/SUPPORTED_LANGUAGES.md +264 -0
  487. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/VERSION_10_UPGRADE.md +58 -0
  488. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/VERSION_11_UPGRADE.md +203 -0
  489. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/common.d.ts +3 -0
  490. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/common.js +4 -0
  491. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/core.d.ts +3 -0
  492. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/core.js +4 -0
  493. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/index.js +4 -0
  494. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/1c.js +537 -0
  495. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/1c.js.js +11 -0
  496. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/abnf.js +82 -0
  497. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/abnf.js.js +11 -0
  498. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/accesslog.js +92 -0
  499. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/accesslog.js.js +11 -0
  500. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/actionscript.js +153 -0
  501. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/actionscript.js.js +11 -0
  502. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ada.js +265 -0
  503. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ada.js.js +11 -0
  504. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/angelscript.js +178 -0
  505. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/angelscript.js.js +11 -0
  506. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/apache.js +101 -0
  507. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/apache.js.js +11 -0
  508. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/applescript.js +149 -0
  509. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/applescript.js.js +11 -0
  510. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/arcade.js +361 -0
  511. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/arcade.js.js +11 -0
  512. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/arduino.js +970 -0
  513. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/arduino.js.js +11 -0
  514. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/armasm.js +124 -0
  515. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/armasm.js.js +11 -0
  516. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/asciidoc.js +261 -0
  517. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/asciidoc.js.js +11 -0
  518. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/aspectj.js +230 -0
  519. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/aspectj.js.js +11 -0
  520. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/autohotkey.js +75 -0
  521. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/autohotkey.js.js +11 -0
  522. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/autoit.js +178 -0
  523. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/autoit.js.js +11 -0
  524. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/avrasm.js +78 -0
  525. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/avrasm.js.js +11 -0
  526. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/awk.js +67 -0
  527. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/awk.js.js +11 -0
  528. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/axapta.js +188 -0
  529. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/axapta.js.js +11 -0
  530. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/bash.js +391 -0
  531. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/bash.js.js +11 -0
  532. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/basic.js +229 -0
  533. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/basic.js.js +11 -0
  534. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/bnf.js +38 -0
  535. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/bnf.js.js +11 -0
  536. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/brainfuck.js +54 -0
  537. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/brainfuck.js.js +11 -0
  538. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/c.js +318 -0
  539. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/c.js.js +11 -0
  540. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cal.js +159 -0
  541. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cal.js.js +11 -0
  542. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/capnproto.js +99 -0
  543. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/capnproto.js.js +11 -0
  544. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ceylon.js +139 -0
  545. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ceylon.js.js +11 -0
  546. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/clean.js +67 -0
  547. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/clean.js.js +11 -0
  548. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/clojure-repl.js +27 -0
  549. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/clojure-repl.js.js +11 -0
  550. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/clojure.js +184 -0
  551. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/clojure.js.js +11 -0
  552. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cmake.js +63 -0
  553. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cmake.js.js +11 -0
  554. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/coffeescript.js +366 -0
  555. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/coffeescript.js.js +11 -0
  556. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/coq.js +445 -0
  557. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/coq.js.js +11 -0
  558. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cos.js +140 -0
  559. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cos.js.js +11 -0
  560. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cpp.js +568 -0
  561. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cpp.js.js +11 -0
  562. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/crmsh.js +100 -0
  563. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/crmsh.js.js +11 -0
  564. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/crystal.js +311 -0
  565. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/crystal.js.js +11 -0
  566. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/csharp.js +400 -0
  567. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/csharp.js.js +11 -0
  568. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/csp.js +57 -0
  569. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/csp.js.js +11 -0
  570. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/css.js +738 -0
  571. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/css.js.js +11 -0
  572. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/d.js +271 -0
  573. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/d.js.js +11 -0
  574. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dart.js +262 -0
  575. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dart.js.js +11 -0
  576. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/delphi.js +230 -0
  577. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/delphi.js.js +11 -0
  578. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/diff.js +62 -0
  579. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/diff.js.js +11 -0
  580. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/django.js +75 -0
  581. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/django.js.js +11 -0
  582. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dns.js +78 -0
  583. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dns.js.js +11 -0
  584. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dockerfile.js +44 -0
  585. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dockerfile.js.js +11 -0
  586. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dos.js +166 -0
  587. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dos.js.js +11 -0
  588. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dsconfig.js +66 -0
  589. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dsconfig.js.js +11 -0
  590. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dts.js +157 -0
  591. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dts.js.js +11 -0
  592. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dust.js +47 -0
  593. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dust.js.js +11 -0
  594. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ebnf.js +53 -0
  595. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ebnf.js.js +11 -0
  596. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/elixir.js +279 -0
  597. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/elixir.js.js +11 -0
  598. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/elm.js +143 -0
  599. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/elm.js.js +11 -0
  600. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/erb.js +29 -0
  601. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/erb.js.js +11 -0
  602. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/erlang-repl.js +54 -0
  603. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/erlang-repl.js.js +11 -0
  604. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/erlang.js +191 -0
  605. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/erlang.js.js +11 -0
  606. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/excel.js +544 -0
  607. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/excel.js.js +11 -0
  608. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/fix.js +39 -0
  609. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/fix.js.js +11 -0
  610. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/flix.js +79 -0
  611. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/flix.js.js +11 -0
  612. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/fortran.js +573 -0
  613. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/fortran.js.js +11 -0
  614. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/fsharp.js +627 -0
  615. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/fsharp.js.js +11 -0
  616. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gams.js +181 -0
  617. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gams.js.js +11 -0
  618. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gauss.js +306 -0
  619. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gauss.js.js +11 -0
  620. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gcode.js +80 -0
  621. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gcode.js.js +11 -0
  622. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gherkin.js +49 -0
  623. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gherkin.js.js +11 -0
  624. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/glsl.js +128 -0
  625. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/glsl.js.js +11 -0
  626. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gml.js +2816 -0
  627. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gml.js.js +11 -0
  628. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/go.js +141 -0
  629. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/go.js.js +11 -0
  630. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/golo.js +80 -0
  631. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/golo.js.js +11 -0
  632. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gradle.js +189 -0
  633. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gradle.js.js +11 -0
  634. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/graphql.js +78 -0
  635. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/graphql.js.js +11 -0
  636. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/groovy.js +189 -0
  637. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/groovy.js.js +11 -0
  638. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/haml.js +113 -0
  639. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/haml.js.js +11 -0
  640. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/handlebars.js +258 -0
  641. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/handlebars.js.js +11 -0
  642. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/haskell.js +217 -0
  643. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/haskell.js.js +11 -0
  644. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/haxe.js +166 -0
  645. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/haxe.js.js +11 -0
  646. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/hsp.js +59 -0
  647. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/hsp.js.js +11 -0
  648. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/http.js +97 -0
  649. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/http.js.js +11 -0
  650. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/hy.js +137 -0
  651. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/hy.js.js +11 -0
  652. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/inform7.js +69 -0
  653. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/inform7.js.js +11 -0
  654. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ini.js +121 -0
  655. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ini.js.js +11 -0
  656. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/irpf90.js +107 -0
  657. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/irpf90.js.js +11 -0
  658. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/isbl.js +3205 -0
  659. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/isbl.js.js +11 -0
  660. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/java.js +289 -0
  661. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/java.js.js +11 -0
  662. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/javascript.js +766 -0
  663. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/javascript.js.js +11 -0
  664. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/jboss-cli.js +63 -0
  665. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/jboss-cli.js.js +11 -0
  666. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/json.js +53 -0
  667. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/json.js.js +11 -0
  668. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/julia-repl.js +50 -0
  669. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/julia-repl.js.js +11 -0
  670. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/julia.js +441 -0
  671. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/julia.js.js +11 -0
  672. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/kotlin.js +286 -0
  673. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/kotlin.js.js +11 -0
  674. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lasso.js +170 -0
  675. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lasso.js.js +11 -0
  676. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/latex.js +278 -0
  677. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/latex.js.js +11 -0
  678. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ldif.js +31 -0
  679. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ldif.js.js +11 -0
  680. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/leaf.js +97 -0
  681. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/leaf.js.js +11 -0
  682. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/less.js +839 -0
  683. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/less.js.js +11 -0
  684. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lisp.js +139 -0
  685. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lisp.js.js +11 -0
  686. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/livecodeserver.js +173 -0
  687. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/livecodeserver.js.js +11 -0
  688. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/livescript.js +378 -0
  689. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/livescript.js.js +11 -0
  690. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/llvm.js +132 -0
  691. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/llvm.js.js +11 -0
  692. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lsl.js +76 -0
  693. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lsl.js.js +11 -0
  694. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lua.js +80 -0
  695. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lua.js.js +11 -0
  696. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/makefile.js +86 -0
  697. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/makefile.js.js +11 -0
  698. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/markdown.js +241 -0
  699. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/markdown.js.js +11 -0
  700. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mathematica.js +7359 -0
  701. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mathematica.js.js +11 -0
  702. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/matlab.js +107 -0
  703. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/matlab.js.js +11 -0
  704. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/maxima.js +414 -0
  705. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/maxima.js.js +11 -0
  706. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mel.js +235 -0
  707. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mel.js.js +11 -0
  708. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mercury.js +107 -0
  709. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mercury.js.js +11 -0
  710. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mipsasm.js +104 -0
  711. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mipsasm.js.js +11 -0
  712. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mizar.js +27 -0
  713. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mizar.js.js +11 -0
  714. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mojolicious.js +36 -0
  715. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mojolicious.js.js +11 -0
  716. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/monkey.js +183 -0
  717. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/monkey.js.js +11 -0
  718. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/moonscript.js +141 -0
  719. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/moonscript.js.js +11 -0
  720. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/n1ql.js +364 -0
  721. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/n1ql.js.js +11 -0
  722. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nestedtext.js +83 -0
  723. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nestedtext.js.js +11 -0
  724. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nginx.js +153 -0
  725. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nginx.js.js +11 -0
  726. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nim.js +185 -0
  727. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nim.js.js +11 -0
  728. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nix.js +94 -0
  729. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nix.js.js +11 -0
  730. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/node-repl.js +33 -0
  731. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/node-repl.js.js +11 -0
  732. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nsis.js +556 -0
  733. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nsis.js.js +11 -0
  734. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/objectivec.js +253 -0
  735. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/objectivec.js.js +11 -0
  736. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ocaml.js +83 -0
  737. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ocaml.js.js +11 -0
  738. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/openscad.js +77 -0
  739. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/openscad.js.js +11 -0
  740. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/oxygene.js +86 -0
  741. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/oxygene.js.js +11 -0
  742. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/parser3.js +55 -0
  743. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/parser3.js.js +11 -0
  744. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/perl.js +471 -0
  745. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/perl.js.js +11 -0
  746. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/pf.js +60 -0
  747. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/pf.js.js +11 -0
  748. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/pgsql.js +524 -0
  749. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/pgsql.js.js +11 -0
  750. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/php-template.js +54 -0
  751. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/php-template.js.js +11 -0
  752. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/php.js +613 -0
  753. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/php.js.js +11 -0
  754. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/plaintext.js +19 -0
  755. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/plaintext.js.js +11 -0
  756. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/pony.js +89 -0
  757. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/pony.js.js +11 -0
  758. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/powershell.js +316 -0
  759. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/powershell.js.js +11 -0
  760. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/processing.js +434 -0
  761. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/processing.js.js +11 -0
  762. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/profile.js +43 -0
  763. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/profile.js.js +11 -0
  764. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/prolog.js +96 -0
  765. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/prolog.js.js +11 -0
  766. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/properties.js +68 -0
  767. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/properties.js.js +11 -0
  768. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/protobuf.js +79 -0
  769. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/protobuf.js.js +11 -0
  770. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/puppet.js +146 -0
  771. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/puppet.js.js +11 -0
  772. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/purebasic.js +99 -0
  773. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/purebasic.js.js +11 -0
  774. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/python-repl.js +32 -0
  775. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/python-repl.js.js +11 -0
  776. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/python.js +434 -0
  777. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/python.js.js +11 -0
  778. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/q.js +37 -0
  779. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/q.js.js +11 -0
  780. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/qml.js +189 -0
  781. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/qml.js.js +11 -0
  782. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/r.js +257 -0
  783. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/r.js.js +11 -0
  784. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/reasonml.js +142 -0
  785. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/reasonml.js.js +11 -0
  786. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/rib.js +37 -0
  787. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/rib.js.js +11 -0
  788. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/roboconf.js +82 -0
  789. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/roboconf.js.js +11 -0
  790. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/routeros.js +163 -0
  791. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/routeros.js.js +11 -0
  792. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/rsl.js +149 -0
  793. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/rsl.js.js +11 -0
  794. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ruby.js +448 -0
  795. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ruby.js.js +11 -0
  796. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ruleslanguage.js +76 -0
  797. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ruleslanguage.js.js +11 -0
  798. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/rust.js +305 -0
  799. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/rust.js.js +11 -0
  800. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sas.js +556 -0
  801. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sas.js.js +11 -0
  802. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scala.js +214 -0
  803. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scala.js.js +11 -0
  804. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scheme.js +196 -0
  805. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scheme.js.js +11 -0
  806. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scilab.js +73 -0
  807. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scilab.js.js +11 -0
  808. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scss.js +728 -0
  809. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scss.js.js +11 -0
  810. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/shell.js +33 -0
  811. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/shell.js.js +11 -0
  812. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/smali.js +125 -0
  813. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/smali.js.js +11 -0
  814. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/smalltalk.js +68 -0
  815. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/smalltalk.js.js +11 -0
  816. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sml.js +75 -0
  817. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sml.js.js +11 -0
  818. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sqf.js +2662 -0
  819. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sqf.js.js +11 -0
  820. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sql.js +682 -0
  821. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sql.js.js +11 -0
  822. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/stan.js +521 -0
  823. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/stan.js.js +11 -0
  824. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/stata.js +53 -0
  825. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/stata.js.js +11 -0
  826. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/step21.js +66 -0
  827. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/step21.js.js +11 -0
  828. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/stylus.js +788 -0
  829. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/stylus.js.js +11 -0
  830. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/subunit.js +43 -0
  831. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/subunit.js.js +11 -0
  832. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/swift.js +920 -0
  833. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/swift.js.js +11 -0
  834. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/taggerscript.js +58 -0
  835. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/taggerscript.js.js +11 -0
  836. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/tap.js +47 -0
  837. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/tap.js.js +11 -0
  838. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/tcl.js +190 -0
  839. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/tcl.js.js +11 -0
  840. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/thrift.js +77 -0
  841. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/thrift.js.js +11 -0
  842. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/tp.js +171 -0
  843. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/tp.js.js +11 -0
  844. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/twig.js +260 -0
  845. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/twig.js.js +11 -0
  846. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/typescript.js +880 -0
  847. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/typescript.js.js +11 -0
  848. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vala.js +60 -0
  849. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vala.js.js +11 -0
  850. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vbnet.js +157 -0
  851. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vbnet.js.js +11 -0
  852. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vbscript-html.js +24 -0
  853. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vbscript-html.js.js +11 -0
  854. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vbscript.js +220 -0
  855. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vbscript.js.js +11 -0
  856. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/verilog.js +549 -0
  857. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/verilog.js.js +11 -0
  858. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vhdl.js +215 -0
  859. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vhdl.js.js +11 -0
  860. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vim.js +129 -0
  861. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vim.js.js +11 -0
  862. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/wasm.js +139 -0
  863. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/wasm.js.js +11 -0
  864. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/wren.js +302 -0
  865. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/wren.js.js +11 -0
  866. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/x86asm.js +153 -0
  867. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/x86asm.js.js +11 -0
  868. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/xl.js +205 -0
  869. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/xl.js.js +11 -0
  870. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/xml.js +241 -0
  871. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/xml.js.js +11 -0
  872. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/xquery.js +360 -0
  873. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/xquery.js.js +11 -0
  874. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/yaml.js +194 -0
  875. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/yaml.js.js +11 -0
  876. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/zephir.js +128 -0
  877. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/zephir.js.js +11 -0
  878. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/package.json +1 -0
  879. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/utils/regex.js +155 -0
  880. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/common.d.ts +3 -0
  881. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/common.js +42 -0
  882. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/core.d.ts +3 -0
  883. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/core.js +2597 -0
  884. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/index.js +198 -0
  885. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/1c.js +537 -0
  886. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/1c.js.js +10 -0
  887. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/abnf.js +82 -0
  888. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/abnf.js.js +10 -0
  889. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/accesslog.js +92 -0
  890. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/accesslog.js.js +10 -0
  891. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/actionscript.js +153 -0
  892. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/actionscript.js.js +10 -0
  893. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ada.js +265 -0
  894. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ada.js.js +10 -0
  895. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/angelscript.js +178 -0
  896. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/angelscript.js.js +10 -0
  897. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/apache.js +101 -0
  898. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/apache.js.js +10 -0
  899. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/applescript.js +149 -0
  900. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/applescript.js.js +10 -0
  901. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/arcade.js +361 -0
  902. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/arcade.js.js +10 -0
  903. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/arduino.js +970 -0
  904. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/arduino.js.js +10 -0
  905. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/armasm.js +124 -0
  906. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/armasm.js.js +10 -0
  907. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/asciidoc.js +261 -0
  908. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/asciidoc.js.js +10 -0
  909. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/aspectj.js +230 -0
  910. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/aspectj.js.js +10 -0
  911. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/autohotkey.js +75 -0
  912. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/autohotkey.js.js +10 -0
  913. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/autoit.js +178 -0
  914. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/autoit.js.js +10 -0
  915. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/avrasm.js +78 -0
  916. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/avrasm.js.js +10 -0
  917. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/awk.js +67 -0
  918. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/awk.js.js +10 -0
  919. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/axapta.js +188 -0
  920. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/axapta.js.js +10 -0
  921. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/bash.js +391 -0
  922. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/bash.js.js +10 -0
  923. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/basic.js +229 -0
  924. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/basic.js.js +10 -0
  925. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/bnf.js +38 -0
  926. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/bnf.js.js +10 -0
  927. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/brainfuck.js +54 -0
  928. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/brainfuck.js.js +10 -0
  929. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/c.js +318 -0
  930. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/c.js.js +10 -0
  931. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cal.js +159 -0
  932. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cal.js.js +10 -0
  933. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/capnproto.js +99 -0
  934. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/capnproto.js.js +10 -0
  935. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ceylon.js +139 -0
  936. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ceylon.js.js +10 -0
  937. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clean.js +67 -0
  938. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clean.js.js +10 -0
  939. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clojure-repl.js +27 -0
  940. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clojure-repl.js.js +10 -0
  941. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clojure.js +184 -0
  942. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clojure.js.js +10 -0
  943. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cmake.js +63 -0
  944. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cmake.js.js +10 -0
  945. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/coffeescript.js +366 -0
  946. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/coffeescript.js.js +10 -0
  947. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/coq.js +445 -0
  948. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/coq.js.js +10 -0
  949. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cos.js +140 -0
  950. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cos.js.js +10 -0
  951. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cpp.js +568 -0
  952. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cpp.js.js +10 -0
  953. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/crmsh.js +100 -0
  954. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/crmsh.js.js +10 -0
  955. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/crystal.js +311 -0
  956. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/crystal.js.js +10 -0
  957. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/csharp.js +400 -0
  958. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/csharp.js.js +10 -0
  959. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/csp.js +57 -0
  960. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/csp.js.js +10 -0
  961. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/css.js +738 -0
  962. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/css.js.js +10 -0
  963. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/d.js +271 -0
  964. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/d.js.js +10 -0
  965. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dart.js +262 -0
  966. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dart.js.js +10 -0
  967. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/delphi.js +230 -0
  968. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/delphi.js.js +10 -0
  969. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/diff.js +62 -0
  970. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/diff.js.js +10 -0
  971. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/django.js +75 -0
  972. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/django.js.js +10 -0
  973. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dns.js +78 -0
  974. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dns.js.js +10 -0
  975. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dockerfile.js +44 -0
  976. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dockerfile.js.js +10 -0
  977. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dos.js +166 -0
  978. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dos.js.js +10 -0
  979. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dsconfig.js +66 -0
  980. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dsconfig.js.js +10 -0
  981. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dts.js +157 -0
  982. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dts.js.js +10 -0
  983. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dust.js +47 -0
  984. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dust.js.js +10 -0
  985. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ebnf.js +53 -0
  986. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ebnf.js.js +10 -0
  987. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/elixir.js +279 -0
  988. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/elixir.js.js +10 -0
  989. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/elm.js +143 -0
  990. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/elm.js.js +10 -0
  991. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erb.js +29 -0
  992. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erb.js.js +10 -0
  993. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erlang-repl.js +54 -0
  994. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erlang-repl.js.js +10 -0
  995. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erlang.js +191 -0
  996. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erlang.js.js +10 -0
  997. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/excel.js +544 -0
  998. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/excel.js.js +10 -0
  999. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fix.js +39 -0
  1000. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fix.js.js +10 -0
  1001. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/flix.js +79 -0
  1002. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/flix.js.js +10 -0
  1003. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fortran.js +573 -0
  1004. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fortran.js.js +10 -0
  1005. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fsharp.js +627 -0
  1006. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fsharp.js.js +10 -0
  1007. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gams.js +181 -0
  1008. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gams.js.js +10 -0
  1009. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gauss.js +306 -0
  1010. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gauss.js.js +10 -0
  1011. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gcode.js +80 -0
  1012. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gcode.js.js +10 -0
  1013. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gherkin.js +49 -0
  1014. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gherkin.js.js +10 -0
  1015. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/glsl.js +128 -0
  1016. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/glsl.js.js +10 -0
  1017. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gml.js +2816 -0
  1018. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gml.js.js +10 -0
  1019. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/go.js +141 -0
  1020. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/go.js.js +10 -0
  1021. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/golo.js +80 -0
  1022. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/golo.js.js +10 -0
  1023. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gradle.js +189 -0
  1024. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gradle.js.js +10 -0
  1025. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/graphql.js +78 -0
  1026. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/graphql.js.js +10 -0
  1027. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/groovy.js +189 -0
  1028. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/groovy.js.js +10 -0
  1029. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haml.js +113 -0
  1030. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haml.js.js +10 -0
  1031. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/handlebars.js +258 -0
  1032. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/handlebars.js.js +10 -0
  1033. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haskell.js +217 -0
  1034. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haskell.js.js +10 -0
  1035. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haxe.js +166 -0
  1036. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haxe.js.js +10 -0
  1037. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/hsp.js +59 -0
  1038. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/hsp.js.js +10 -0
  1039. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/http.js +97 -0
  1040. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/http.js.js +10 -0
  1041. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/hy.js +137 -0
  1042. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/hy.js.js +10 -0
  1043. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/inform7.js +69 -0
  1044. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/inform7.js.js +10 -0
  1045. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ini.js +121 -0
  1046. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ini.js.js +10 -0
  1047. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/irpf90.js +107 -0
  1048. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/irpf90.js.js +10 -0
  1049. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/isbl.js +3205 -0
  1050. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/isbl.js.js +10 -0
  1051. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/java.js +289 -0
  1052. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/java.js.js +10 -0
  1053. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/javascript.js +766 -0
  1054. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/javascript.js.js +10 -0
  1055. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/jboss-cli.js +63 -0
  1056. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/jboss-cli.js.js +10 -0
  1057. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/json.js +53 -0
  1058. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/json.js.js +10 -0
  1059. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/julia-repl.js +50 -0
  1060. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/julia-repl.js.js +10 -0
  1061. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/julia.js +441 -0
  1062. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/julia.js.js +10 -0
  1063. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/kotlin.js +286 -0
  1064. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/kotlin.js.js +10 -0
  1065. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lasso.js +170 -0
  1066. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lasso.js.js +10 -0
  1067. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/latex.js +278 -0
  1068. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/latex.js.js +10 -0
  1069. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ldif.js +31 -0
  1070. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ldif.js.js +10 -0
  1071. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/leaf.js +97 -0
  1072. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/leaf.js.js +10 -0
  1073. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/less.js +839 -0
  1074. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/less.js.js +10 -0
  1075. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lisp.js +139 -0
  1076. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lisp.js.js +10 -0
  1077. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/livecodeserver.js +173 -0
  1078. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/livecodeserver.js.js +10 -0
  1079. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/livescript.js +378 -0
  1080. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/livescript.js.js +10 -0
  1081. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/llvm.js +132 -0
  1082. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/llvm.js.js +10 -0
  1083. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lsl.js +76 -0
  1084. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lsl.js.js +10 -0
  1085. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lua.js +80 -0
  1086. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lua.js.js +10 -0
  1087. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/makefile.js +86 -0
  1088. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/makefile.js.js +10 -0
  1089. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/markdown.js +241 -0
  1090. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/markdown.js.js +10 -0
  1091. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mathematica.js +7359 -0
  1092. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mathematica.js.js +10 -0
  1093. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/matlab.js +107 -0
  1094. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/matlab.js.js +10 -0
  1095. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/maxima.js +414 -0
  1096. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/maxima.js.js +10 -0
  1097. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mel.js +235 -0
  1098. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mel.js.js +10 -0
  1099. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mercury.js +107 -0
  1100. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mercury.js.js +10 -0
  1101. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mipsasm.js +104 -0
  1102. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mipsasm.js.js +10 -0
  1103. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mizar.js +27 -0
  1104. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mizar.js.js +10 -0
  1105. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mojolicious.js +36 -0
  1106. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mojolicious.js.js +10 -0
  1107. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/monkey.js +183 -0
  1108. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/monkey.js.js +10 -0
  1109. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/moonscript.js +141 -0
  1110. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/moonscript.js.js +10 -0
  1111. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/n1ql.js +364 -0
  1112. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/n1ql.js.js +10 -0
  1113. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nestedtext.js +83 -0
  1114. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nestedtext.js.js +10 -0
  1115. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nginx.js +153 -0
  1116. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nginx.js.js +10 -0
  1117. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nim.js +185 -0
  1118. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nim.js.js +10 -0
  1119. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nix.js +94 -0
  1120. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nix.js.js +10 -0
  1121. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/node-repl.js +33 -0
  1122. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/node-repl.js.js +10 -0
  1123. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nsis.js +556 -0
  1124. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nsis.js.js +10 -0
  1125. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/objectivec.js +253 -0
  1126. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/objectivec.js.js +10 -0
  1127. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ocaml.js +83 -0
  1128. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ocaml.js.js +10 -0
  1129. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/openscad.js +77 -0
  1130. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/openscad.js.js +10 -0
  1131. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/oxygene.js +86 -0
  1132. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/oxygene.js.js +10 -0
  1133. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/parser3.js +55 -0
  1134. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/parser3.js.js +10 -0
  1135. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/perl.js +471 -0
  1136. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/perl.js.js +10 -0
  1137. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pf.js +60 -0
  1138. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pf.js.js +10 -0
  1139. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pgsql.js +524 -0
  1140. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pgsql.js.js +10 -0
  1141. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/php-template.js +54 -0
  1142. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/php-template.js.js +10 -0
  1143. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/php.js +613 -0
  1144. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/php.js.js +10 -0
  1145. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/plaintext.js +19 -0
  1146. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/plaintext.js.js +10 -0
  1147. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pony.js +89 -0
  1148. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pony.js.js +10 -0
  1149. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/powershell.js +316 -0
  1150. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/powershell.js.js +10 -0
  1151. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/processing.js +434 -0
  1152. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/processing.js.js +10 -0
  1153. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/profile.js +43 -0
  1154. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/profile.js.js +10 -0
  1155. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/prolog.js +96 -0
  1156. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/prolog.js.js +10 -0
  1157. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/properties.js +68 -0
  1158. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/properties.js.js +10 -0
  1159. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/protobuf.js +79 -0
  1160. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/protobuf.js.js +10 -0
  1161. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/puppet.js +146 -0
  1162. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/puppet.js.js +10 -0
  1163. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/purebasic.js +99 -0
  1164. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/purebasic.js.js +10 -0
  1165. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/python-repl.js +32 -0
  1166. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/python-repl.js.js +10 -0
  1167. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/python.js +434 -0
  1168. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/python.js.js +10 -0
  1169. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/q.js +37 -0
  1170. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/q.js.js +10 -0
  1171. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/qml.js +189 -0
  1172. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/qml.js.js +10 -0
  1173. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/r.js +257 -0
  1174. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/r.js.js +10 -0
  1175. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/reasonml.js +142 -0
  1176. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/reasonml.js.js +10 -0
  1177. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rib.js +37 -0
  1178. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rib.js.js +10 -0
  1179. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/roboconf.js +82 -0
  1180. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/roboconf.js.js +10 -0
  1181. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/routeros.js +163 -0
  1182. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/routeros.js.js +10 -0
  1183. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rsl.js +149 -0
  1184. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rsl.js.js +10 -0
  1185. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ruby.js +448 -0
  1186. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ruby.js.js +10 -0
  1187. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ruleslanguage.js +76 -0
  1188. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ruleslanguage.js.js +10 -0
  1189. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rust.js +305 -0
  1190. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rust.js.js +10 -0
  1191. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sas.js +556 -0
  1192. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sas.js.js +10 -0
  1193. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scala.js +214 -0
  1194. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scala.js.js +10 -0
  1195. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scheme.js +196 -0
  1196. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scheme.js.js +10 -0
  1197. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scilab.js +73 -0
  1198. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scilab.js.js +10 -0
  1199. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scss.js +728 -0
  1200. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scss.js.js +10 -0
  1201. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/shell.js +33 -0
  1202. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/shell.js.js +10 -0
  1203. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/smali.js +125 -0
  1204. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/smali.js.js +10 -0
  1205. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/smalltalk.js +68 -0
  1206. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/smalltalk.js.js +10 -0
  1207. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sml.js +75 -0
  1208. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sml.js.js +10 -0
  1209. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sqf.js +2662 -0
  1210. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sqf.js.js +10 -0
  1211. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sql.js +682 -0
  1212. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sql.js.js +10 -0
  1213. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stan.js +521 -0
  1214. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stan.js.js +10 -0
  1215. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stata.js +53 -0
  1216. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stata.js.js +10 -0
  1217. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/step21.js +66 -0
  1218. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/step21.js.js +10 -0
  1219. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stylus.js +788 -0
  1220. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stylus.js.js +10 -0
  1221. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/subunit.js +43 -0
  1222. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/subunit.js.js +10 -0
  1223. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/swift.js +920 -0
  1224. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/swift.js.js +10 -0
  1225. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/taggerscript.js +58 -0
  1226. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/taggerscript.js.js +10 -0
  1227. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tap.js +47 -0
  1228. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tap.js.js +10 -0
  1229. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tcl.js +190 -0
  1230. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tcl.js.js +10 -0
  1231. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/thrift.js +77 -0
  1232. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/thrift.js.js +10 -0
  1233. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tp.js +171 -0
  1234. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tp.js.js +10 -0
  1235. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/twig.js +260 -0
  1236. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/twig.js.js +10 -0
  1237. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/typescript.js +880 -0
  1238. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/typescript.js.js +10 -0
  1239. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vala.js +60 -0
  1240. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vala.js.js +10 -0
  1241. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbnet.js +157 -0
  1242. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbnet.js.js +10 -0
  1243. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbscript-html.js +24 -0
  1244. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbscript-html.js.js +10 -0
  1245. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbscript.js +220 -0
  1246. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbscript.js.js +10 -0
  1247. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/verilog.js +549 -0
  1248. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/verilog.js.js +10 -0
  1249. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vhdl.js +215 -0
  1250. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vhdl.js.js +10 -0
  1251. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vim.js +129 -0
  1252. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vim.js.js +10 -0
  1253. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/wasm.js +139 -0
  1254. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/wasm.js.js +10 -0
  1255. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/wren.js +302 -0
  1256. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/wren.js.js +10 -0
  1257. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/x86asm.js +153 -0
  1258. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/x86asm.js.js +10 -0
  1259. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xl.js +205 -0
  1260. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xl.js.js +10 -0
  1261. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xml.js +241 -0
  1262. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xml.js.js +10 -0
  1263. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xquery.js +360 -0
  1264. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xquery.js.js +10 -0
  1265. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/yaml.js +194 -0
  1266. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/yaml.js.js +10 -0
  1267. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/zephir.js +128 -0
  1268. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/zephir.js.js +10 -0
  1269. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/package.json +119 -0
  1270. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/a11y-dark.scss +94 -0
  1271. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/a11y-light.scss +94 -0
  1272. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/agate.scss +127 -0
  1273. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/an-old-hope.scss +75 -0
  1274. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/androidstudio.scss +60 -0
  1275. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/arduino-light.scss +78 -0
  1276. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/arta.scss +66 -0
  1277. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/ascetic.scss +45 -0
  1278. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/atom-one-dark-reasonable.scss +105 -0
  1279. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/atom-one-dark.scss +90 -0
  1280. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/atom-one-light.scss +90 -0
  1281. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/3024.scss +163 -0
  1282. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/apathy.scss +163 -0
  1283. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/apprentice.scss +163 -0
  1284. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ashes.scss +163 -0
  1285. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-cave-light.scss +163 -0
  1286. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-cave.scss +163 -0
  1287. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-dune-light.scss +163 -0
  1288. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-dune.scss +163 -0
  1289. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-estuary-light.scss +163 -0
  1290. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-estuary.scss +163 -0
  1291. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-forest-light.scss +163 -0
  1292. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-forest.scss +163 -0
  1293. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-heath-light.scss +163 -0
  1294. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-heath.scss +163 -0
  1295. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-lakeside-light.scss +163 -0
  1296. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-lakeside.scss +163 -0
  1297. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-plateau-light.scss +163 -0
  1298. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-plateau.scss +163 -0
  1299. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-savanna-light.scss +163 -0
  1300. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-savanna.scss +163 -0
  1301. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-seaside-light.scss +163 -0
  1302. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-seaside.scss +163 -0
  1303. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-sulphurpool-light.scss +163 -0
  1304. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-sulphurpool.scss +163 -0
  1305. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atlas.scss +163 -0
  1306. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/bespin.scss +163 -0
  1307. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-bathory.scss +163 -0
  1308. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-burzum.scss +163 -0
  1309. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-dark-funeral.scss +163 -0
  1310. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-gorgoroth.scss +163 -0
  1311. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-immortal.scss +163 -0
  1312. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-khold.scss +163 -0
  1313. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-marduk.scss +163 -0
  1314. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-mayhem.scss +163 -0
  1315. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-nile.scss +163 -0
  1316. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-venom.scss +163 -0
  1317. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal.scss +163 -0
  1318. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/brewer.scss +163 -0
  1319. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/bright.scss +163 -0
  1320. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/brogrammer.scss +163 -0
  1321. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/brush-trees-dark.scss +163 -0
  1322. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/brush-trees.scss +163 -0
  1323. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/chalk.scss +163 -0
  1324. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/circus.scss +163 -0
  1325. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/classic-dark.scss +163 -0
  1326. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/classic-light.scss +163 -0
  1327. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/codeschool.scss +163 -0
  1328. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/colors.scss +163 -0
  1329. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/cupcake.scss +163 -0
  1330. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/cupertino.scss +163 -0
  1331. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/danqing.scss +163 -0
  1332. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/darcula.scss +163 -0
  1333. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/dark-violet.scss +163 -0
  1334. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/darkmoss.scss +163 -0
  1335. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/darktooth.scss +163 -0
  1336. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/decaf.scss +163 -0
  1337. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/default-dark.scss +163 -0
  1338. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/default-light.scss +163 -0
  1339. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/dirtysea.scss +163 -0
  1340. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/dracula.scss +163 -0
  1341. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/edge-dark.scss +163 -0
  1342. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/edge-light.scss +163 -0
  1343. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/eighties.scss +163 -0
  1344. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/embers.scss +163 -0
  1345. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/equilibrium-dark.scss +163 -0
  1346. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/equilibrium-gray-dark.scss +163 -0
  1347. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/equilibrium-gray-light.scss +163 -0
  1348. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/equilibrium-light.scss +163 -0
  1349. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/espresso.scss +163 -0
  1350. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/eva-dim.scss +163 -0
  1351. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/eva.scss +163 -0
  1352. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/flat.scss +163 -0
  1353. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/framer.scss +163 -0
  1354. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/fruit-soda.scss +163 -0
  1355. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gigavolt.scss +163 -0
  1356. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/github.scss +163 -0
  1357. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/google-dark.scss +163 -0
  1358. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/google-light.scss +163 -0
  1359. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/grayscale-dark.scss +163 -0
  1360. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/grayscale-light.scss +163 -0
  1361. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/green-screen.scss +163 -0
  1362. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-dark-hard.scss +163 -0
  1363. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-dark-medium.scss +163 -0
  1364. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-dark-pale.scss +163 -0
  1365. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-dark-soft.scss +163 -0
  1366. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-light-hard.scss +163 -0
  1367. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-light-medium.scss +163 -0
  1368. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-light-soft.scss +163 -0
  1369. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/hardcore.scss +163 -0
  1370. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/harmonic16-dark.scss +163 -0
  1371. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/harmonic16-light.scss +163 -0
  1372. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/heetch-dark.scss +163 -0
  1373. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/heetch-light.scss +163 -0
  1374. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/helios.scss +163 -0
  1375. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/hopscotch.scss +163 -0
  1376. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/horizon-dark.scss +163 -0
  1377. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/horizon-light.scss +163 -0
  1378. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/humanoid-dark.scss +163 -0
  1379. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/humanoid-light.scss +163 -0
  1380. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ia-dark.scss +163 -0
  1381. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ia-light.scss +163 -0
  1382. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/icy-dark.scss +163 -0
  1383. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ir-black.scss +163 -0
  1384. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/isotope.scss +163 -0
  1385. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/kimber.scss +163 -0
  1386. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/london-tube.scss +163 -0
  1387. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/macintosh.scss +163 -0
  1388. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/marrakesh.scss +163 -0
  1389. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/materia.scss +163 -0
  1390. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/material-darker.scss +163 -0
  1391. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/material-lighter.scss +163 -0
  1392. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/material-palenight.scss +163 -0
  1393. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/material-vivid.scss +163 -0
  1394. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/material.scss +163 -0
  1395. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/mellow-purple.scss +163 -0
  1396. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/mexico-light.scss +163 -0
  1397. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/mocha.scss +163 -0
  1398. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/monokai.scss +163 -0
  1399. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/nebula.scss +163 -0
  1400. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/nord.scss +163 -0
  1401. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/nova.scss +163 -0
  1402. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ocean.scss +163 -0
  1403. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/oceanicnext.scss +163 -0
  1404. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/one-light.scss +163 -0
  1405. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/onedark.scss +163 -0
  1406. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/outrun-dark.scss +163 -0
  1407. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/papercolor-dark.scss +163 -0
  1408. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/papercolor-light.scss +163 -0
  1409. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/paraiso.scss +163 -0
  1410. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/pasque.scss +163 -0
  1411. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/phd.scss +163 -0
  1412. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/pico.scss +163 -0
  1413. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/pop.scss +163 -0
  1414. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/porple.scss +163 -0
  1415. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/qualia.scss +163 -0
  1416. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/railscasts.scss +163 -0
  1417. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/rebecca.scss +163 -0
  1418. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ros-pine-dawn.scss +163 -0
  1419. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ros-pine-moon.scss +163 -0
  1420. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ros-pine.scss +163 -0
  1421. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/sagelight.scss +163 -0
  1422. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/sandcastle.scss +163 -0
  1423. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/seti-ui.scss +163 -0
  1424. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/shapeshifter.scss +163 -0
  1425. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/silk-dark.scss +163 -0
  1426. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/silk-light.scss +163 -0
  1427. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/snazzy.scss +163 -0
  1428. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/solar-flare-light.scss +163 -0
  1429. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/solar-flare.scss +163 -0
  1430. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/solarized-dark.scss +163 -0
  1431. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/solarized-light.scss +163 -0
  1432. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/spacemacs.scss +163 -0
  1433. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/summercamp.scss +163 -0
  1434. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/summerfruit-dark.scss +163 -0
  1435. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/summerfruit-light.scss +163 -0
  1436. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/synth-midnight-terminal-dark.scss +163 -0
  1437. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/synth-midnight-terminal-light.scss +163 -0
  1438. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/tango.scss +163 -0
  1439. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/tender.scss +163 -0
  1440. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/tomorrow-night.scss +163 -0
  1441. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/tomorrow.scss +163 -0
  1442. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/twilight.scss +163 -0
  1443. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/unikitty-dark.scss +163 -0
  1444. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/unikitty-light.scss +163 -0
  1445. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/vulcan.scss +163 -0
  1446. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-10-light.scss +163 -0
  1447. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-10.scss +163 -0
  1448. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-95-light.scss +163 -0
  1449. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-95.scss +163 -0
  1450. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-high-contrast-light.scss +163 -0
  1451. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-high-contrast.scss +163 -0
  1452. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-nt-light.scss +163 -0
  1453. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-nt.scss +163 -0
  1454. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/woodland.scss +163 -0
  1455. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/xcode-dusk.scss +163 -0
  1456. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/zenburn.scss +163 -0
  1457. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/brown-paper.scss +63 -0
  1458. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/codepen-embed.scss +57 -0
  1459. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/color-brewer.scss +66 -0
  1460. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/dark.scss +62 -0
  1461. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/default.scss +117 -0
  1462. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/devibeans.scss +90 -0
  1463. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/docco.scss +83 -0
  1464. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/far.scss +67 -0
  1465. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/felipec.scss +94 -0
  1466. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/foundation.scss +80 -0
  1467. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/github-dark-dimmed.scss +117 -0
  1468. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/github-dark.scss +118 -0
  1469. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/github.scss +118 -0
  1470. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/gml.scss +72 -0
  1471. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/googlecode.scss +79 -0
  1472. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/gradient-dark.scss +90 -0
  1473. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/gradient-light.scss +90 -0
  1474. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/grayscale.scss +89 -0
  1475. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/hybrid.scss +88 -0
  1476. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/idea.scss +86 -0
  1477. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/intellij-light.scss +107 -0
  1478. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/ir-black.scss +66 -0
  1479. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/isbl-editor-dark.scss +94 -0
  1480. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/isbl-editor-light.scss +93 -0
  1481. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/kimbie-dark.scss +69 -0
  1482. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/kimbie-light.scss +69 -0
  1483. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/lightfair.scss +81 -0
  1484. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/lioshi.scss +76 -0
  1485. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/magula.scss +66 -0
  1486. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/mono-blue.scss +56 -0
  1487. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/monokai-sublime.scss +76 -0
  1488. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/monokai.scss +68 -0
  1489. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/night-owl.scss +174 -0
  1490. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/nnfx-dark.scss +104 -0
  1491. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/nnfx-light.scss +104 -0
  1492. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/nord.scss +275 -0
  1493. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/obsidian.scss +79 -0
  1494. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/panda-syntax-dark.scss +92 -0
  1495. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/panda-syntax-light.scss +89 -0
  1496. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/paraiso-dark.scss +67 -0
  1497. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/paraiso-light.scss +67 -0
  1498. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/pojoaque.scss +76 -0
  1499. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/purebasic.scss +103 -0
  1500. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/qtcreator-dark.scss +76 -0
  1501. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/qtcreator-light.scss +74 -0
  1502. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/rainbow.scss +77 -0
  1503. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/routeros.scss +86 -0
  1504. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/school-book.scss +62 -0
  1505. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/shades-of-purple.scss +84 -0
  1506. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/srcery.scss +89 -0
  1507. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/stackoverflow-dark.scss +117 -0
  1508. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/stackoverflow-light.scss +117 -0
  1509. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/sunburst.scss +89 -0
  1510. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/tokyo-night-dark.scss +114 -0
  1511. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/tokyo-night-light.scss +114 -0
  1512. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/tomorrow-night-blue.scss +69 -0
  1513. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/tomorrow-night-bright.scss +68 -0
  1514. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/vs.scss +63 -0
  1515. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/vs2015.scss +100 -0
  1516. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/xcode.scss +90 -0
  1517. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/xt256.scss +79 -0
  1518. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/a11y-dark.css +94 -0
  1519. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/a11y-dark.min.css +7 -0
  1520. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/a11y-light.css +94 -0
  1521. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/a11y-light.min.css +7 -0
  1522. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/agate.css +127 -0
  1523. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/agate.min.css +20 -0
  1524. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/an-old-hope.css +75 -0
  1525. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/an-old-hope.min.css +9 -0
  1526. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/androidstudio.css +60 -0
  1527. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/androidstudio.min.css +1 -0
  1528. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/arduino-light.css +78 -0
  1529. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/arduino-light.min.css +1 -0
  1530. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/arta.css +66 -0
  1531. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/arta.min.css +1 -0
  1532. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/ascetic.css +45 -0
  1533. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/ascetic.min.css +1 -0
  1534. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/atom-one-dark-reasonable.css +105 -0
  1535. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/atom-one-dark-reasonable.min.css +1 -0
  1536. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/atom-one-dark.css +90 -0
  1537. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/atom-one-dark.min.css +1 -0
  1538. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/atom-one-light.css +90 -0
  1539. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/atom-one-light.min.css +1 -0
  1540. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/3024.css +163 -0
  1541. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/3024.min.css +7 -0
  1542. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/apathy.css +163 -0
  1543. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/apathy.min.css +7 -0
  1544. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/apprentice.css +163 -0
  1545. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/apprentice.min.css +7 -0
  1546. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ashes.css +163 -0
  1547. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ashes.min.css +7 -0
  1548. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-cave-light.css +163 -0
  1549. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-cave-light.min.css +7 -0
  1550. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-cave.css +163 -0
  1551. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-cave.min.css +7 -0
  1552. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-dune-light.css +163 -0
  1553. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-dune-light.min.css +7 -0
  1554. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-dune.css +163 -0
  1555. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-dune.min.css +7 -0
  1556. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-estuary-light.css +163 -0
  1557. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-estuary-light.min.css +7 -0
  1558. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-estuary.css +163 -0
  1559. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-estuary.min.css +7 -0
  1560. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-forest-light.css +163 -0
  1561. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-forest-light.min.css +7 -0
  1562. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-forest.css +163 -0
  1563. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-forest.min.css +7 -0
  1564. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-heath-light.css +163 -0
  1565. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-heath-light.min.css +7 -0
  1566. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-heath.css +163 -0
  1567. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-heath.min.css +7 -0
  1568. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-lakeside-light.css +163 -0
  1569. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-lakeside-light.min.css +7 -0
  1570. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-lakeside.css +163 -0
  1571. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-lakeside.min.css +7 -0
  1572. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-plateau-light.css +163 -0
  1573. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-plateau-light.min.css +7 -0
  1574. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-plateau.css +163 -0
  1575. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-plateau.min.css +7 -0
  1576. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-savanna-light.css +163 -0
  1577. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-savanna-light.min.css +7 -0
  1578. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-savanna.css +163 -0
  1579. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-savanna.min.css +7 -0
  1580. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-seaside-light.css +163 -0
  1581. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-seaside-light.min.css +7 -0
  1582. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-seaside.css +163 -0
  1583. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-seaside.min.css +7 -0
  1584. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-sulphurpool-light.css +163 -0
  1585. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-sulphurpool-light.min.css +7 -0
  1586. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-sulphurpool.css +163 -0
  1587. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-sulphurpool.min.css +7 -0
  1588. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atlas.css +163 -0
  1589. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atlas.min.css +7 -0
  1590. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/bespin.css +163 -0
  1591. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/bespin.min.css +7 -0
  1592. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-bathory.css +163 -0
  1593. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-bathory.min.css +7 -0
  1594. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-burzum.css +163 -0
  1595. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-burzum.min.css +7 -0
  1596. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-dark-funeral.css +163 -0
  1597. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-dark-funeral.min.css +7 -0
  1598. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-gorgoroth.css +163 -0
  1599. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-gorgoroth.min.css +7 -0
  1600. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-immortal.css +163 -0
  1601. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-immortal.min.css +7 -0
  1602. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-khold.css +163 -0
  1603. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-khold.min.css +7 -0
  1604. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-marduk.css +163 -0
  1605. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-marduk.min.css +7 -0
  1606. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-mayhem.css +163 -0
  1607. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-mayhem.min.css +7 -0
  1608. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-nile.css +163 -0
  1609. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-nile.min.css +7 -0
  1610. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-venom.css +163 -0
  1611. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-venom.min.css +7 -0
  1612. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal.css +163 -0
  1613. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal.min.css +7 -0
  1614. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brewer.css +163 -0
  1615. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brewer.min.css +7 -0
  1616. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/bright.css +163 -0
  1617. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/bright.min.css +7 -0
  1618. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brogrammer.css +163 -0
  1619. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brogrammer.min.css +7 -0
  1620. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brush-trees-dark.css +163 -0
  1621. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brush-trees-dark.min.css +7 -0
  1622. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brush-trees.css +163 -0
  1623. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brush-trees.min.css +7 -0
  1624. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/chalk.css +163 -0
  1625. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/chalk.min.css +7 -0
  1626. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/circus.css +163 -0
  1627. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/circus.min.css +7 -0
  1628. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/classic-dark.css +163 -0
  1629. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/classic-dark.min.css +7 -0
  1630. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/classic-light.css +163 -0
  1631. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/classic-light.min.css +7 -0
  1632. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/codeschool.css +163 -0
  1633. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/codeschool.min.css +7 -0
  1634. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/colors.css +163 -0
  1635. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/colors.min.css +7 -0
  1636. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/cupcake.css +163 -0
  1637. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/cupcake.min.css +7 -0
  1638. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/cupertino.css +163 -0
  1639. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/cupertino.min.css +7 -0
  1640. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/danqing.css +163 -0
  1641. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/danqing.min.css +7 -0
  1642. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/darcula.css +163 -0
  1643. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/darcula.min.css +7 -0
  1644. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/dark-violet.css +163 -0
  1645. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/dark-violet.min.css +7 -0
  1646. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/darkmoss.css +163 -0
  1647. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/darkmoss.min.css +7 -0
  1648. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/darktooth.css +163 -0
  1649. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/darktooth.min.css +7 -0
  1650. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/decaf.css +163 -0
  1651. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/decaf.min.css +7 -0
  1652. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/default-dark.css +163 -0
  1653. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/default-dark.min.css +7 -0
  1654. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/default-light.css +163 -0
  1655. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/default-light.min.css +7 -0
  1656. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/dirtysea.css +163 -0
  1657. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/dirtysea.min.css +7 -0
  1658. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/dracula.css +163 -0
  1659. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/dracula.min.css +7 -0
  1660. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/edge-dark.css +163 -0
  1661. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/edge-dark.min.css +7 -0
  1662. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/edge-light.css +163 -0
  1663. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/edge-light.min.css +7 -0
  1664. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/eighties.css +163 -0
  1665. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/eighties.min.css +7 -0
  1666. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/embers.css +163 -0
  1667. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/embers.min.css +7 -0
  1668. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-dark.css +163 -0
  1669. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-dark.min.css +7 -0
  1670. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-gray-dark.css +163 -0
  1671. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-gray-dark.min.css +7 -0
  1672. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-gray-light.css +163 -0
  1673. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-gray-light.min.css +7 -0
  1674. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-light.css +163 -0
  1675. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-light.min.css +7 -0
  1676. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/espresso.css +163 -0
  1677. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/espresso.min.css +7 -0
  1678. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/eva-dim.css +163 -0
  1679. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/eva-dim.min.css +7 -0
  1680. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/eva.css +163 -0
  1681. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/eva.min.css +7 -0
  1682. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/flat.css +163 -0
  1683. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/flat.min.css +7 -0
  1684. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/framer.css +163 -0
  1685. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/framer.min.css +7 -0
  1686. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/fruit-soda.css +163 -0
  1687. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/fruit-soda.min.css +7 -0
  1688. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gigavolt.css +163 -0
  1689. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gigavolt.min.css +7 -0
  1690. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/github.css +163 -0
  1691. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/github.min.css +7 -0
  1692. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/google-dark.css +163 -0
  1693. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/google-dark.min.css +7 -0
  1694. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/google-light.css +163 -0
  1695. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/google-light.min.css +7 -0
  1696. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/grayscale-dark.css +163 -0
  1697. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/grayscale-dark.min.css +7 -0
  1698. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/grayscale-light.css +163 -0
  1699. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/grayscale-light.min.css +7 -0
  1700. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/green-screen.css +163 -0
  1701. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/green-screen.min.css +7 -0
  1702. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-hard.css +163 -0
  1703. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-hard.min.css +7 -0
  1704. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-medium.css +163 -0
  1705. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-medium.min.css +7 -0
  1706. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-pale.css +163 -0
  1707. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-pale.min.css +7 -0
  1708. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-soft.css +163 -0
  1709. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-soft.min.css +7 -0
  1710. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-light-hard.css +163 -0
  1711. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-light-hard.min.css +7 -0
  1712. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-light-medium.css +163 -0
  1713. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-light-medium.min.css +7 -0
  1714. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-light-soft.css +163 -0
  1715. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-light-soft.min.css +7 -0
  1716. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/hardcore.css +163 -0
  1717. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/hardcore.min.css +7 -0
  1718. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/harmonic16-dark.css +163 -0
  1719. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/harmonic16-dark.min.css +7 -0
  1720. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/harmonic16-light.css +163 -0
  1721. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/harmonic16-light.min.css +7 -0
  1722. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/heetch-dark.css +163 -0
  1723. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/heetch-dark.min.css +7 -0
  1724. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/heetch-light.css +163 -0
  1725. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/heetch-light.min.css +7 -0
  1726. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/helios.css +163 -0
  1727. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/helios.min.css +7 -0
  1728. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/hopscotch.css +163 -0
  1729. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/hopscotch.min.css +7 -0
  1730. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/horizon-dark.css +163 -0
  1731. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/horizon-dark.min.css +7 -0
  1732. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/horizon-light.css +163 -0
  1733. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/horizon-light.min.css +7 -0
  1734. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/humanoid-dark.css +163 -0
  1735. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/humanoid-dark.min.css +7 -0
  1736. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/humanoid-light.css +163 -0
  1737. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/humanoid-light.min.css +7 -0
  1738. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ia-dark.css +163 -0
  1739. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ia-dark.min.css +7 -0
  1740. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ia-light.css +163 -0
  1741. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ia-light.min.css +7 -0
  1742. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/icy-dark.css +163 -0
  1743. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/icy-dark.min.css +7 -0
  1744. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ir-black.css +163 -0
  1745. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ir-black.min.css +7 -0
  1746. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/isotope.css +163 -0
  1747. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/isotope.min.css +7 -0
  1748. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/kimber.css +163 -0
  1749. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/kimber.min.css +7 -0
  1750. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/london-tube.css +163 -0
  1751. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/london-tube.min.css +7 -0
  1752. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/macintosh.css +163 -0
  1753. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/macintosh.min.css +7 -0
  1754. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/marrakesh.css +163 -0
  1755. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/marrakesh.min.css +7 -0
  1756. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/materia.css +163 -0
  1757. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/materia.min.css +7 -0
  1758. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-darker.css +163 -0
  1759. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-darker.min.css +7 -0
  1760. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-lighter.css +163 -0
  1761. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-lighter.min.css +7 -0
  1762. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-palenight.css +163 -0
  1763. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-palenight.min.css +7 -0
  1764. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-vivid.css +163 -0
  1765. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-vivid.min.css +7 -0
  1766. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material.css +163 -0
  1767. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material.min.css +7 -0
  1768. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/mellow-purple.css +163 -0
  1769. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/mellow-purple.min.css +7 -0
  1770. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/mexico-light.css +163 -0
  1771. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/mexico-light.min.css +7 -0
  1772. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/mocha.css +163 -0
  1773. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/mocha.min.css +7 -0
  1774. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/monokai.css +163 -0
  1775. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/monokai.min.css +7 -0
  1776. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/nebula.css +163 -0
  1777. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/nebula.min.css +7 -0
  1778. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/nord.css +163 -0
  1779. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/nord.min.css +7 -0
  1780. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/nova.css +163 -0
  1781. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/nova.min.css +7 -0
  1782. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ocean.css +163 -0
  1783. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ocean.min.css +7 -0
  1784. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/oceanicnext.css +163 -0
  1785. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/oceanicnext.min.css +7 -0
  1786. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/one-light.css +163 -0
  1787. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/one-light.min.css +7 -0
  1788. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/onedark.css +163 -0
  1789. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/onedark.min.css +7 -0
  1790. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/outrun-dark.css +163 -0
  1791. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/outrun-dark.min.css +7 -0
  1792. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/papercolor-dark.css +163 -0
  1793. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/papercolor-dark.min.css +7 -0
  1794. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/papercolor-light.css +163 -0
  1795. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/papercolor-light.min.css +7 -0
  1796. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/paraiso.css +163 -0
  1797. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/paraiso.min.css +7 -0
  1798. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/pasque.css +163 -0
  1799. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/pasque.min.css +7 -0
  1800. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/phd.css +163 -0
  1801. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/phd.min.css +7 -0
  1802. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/pico.css +163 -0
  1803. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/pico.min.css +7 -0
  1804. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/pop.css +163 -0
  1805. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/pop.min.css +7 -0
  1806. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/porple.css +163 -0
  1807. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/porple.min.css +7 -0
  1808. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/qualia.css +163 -0
  1809. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/qualia.min.css +7 -0
  1810. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/railscasts.css +163 -0
  1811. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/railscasts.min.css +7 -0
  1812. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/rebecca.css +163 -0
  1813. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/rebecca.min.css +7 -0
  1814. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ros-pine-dawn.css +163 -0
  1815. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ros-pine-dawn.min.css +7 -0
  1816. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ros-pine-moon.css +163 -0
  1817. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ros-pine-moon.min.css +7 -0
  1818. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ros-pine.css +163 -0
  1819. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ros-pine.min.css +7 -0
  1820. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/sagelight.css +163 -0
  1821. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/sagelight.min.css +7 -0
  1822. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/sandcastle.css +163 -0
  1823. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/sandcastle.min.css +7 -0
  1824. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/seti-ui.css +163 -0
  1825. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/seti-ui.min.css +7 -0
  1826. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/shapeshifter.css +163 -0
  1827. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/shapeshifter.min.css +7 -0
  1828. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/silk-dark.css +163 -0
  1829. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/silk-dark.min.css +7 -0
  1830. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/silk-light.css +163 -0
  1831. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/silk-light.min.css +7 -0
  1832. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/snazzy.css +163 -0
  1833. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/snazzy.min.css +7 -0
  1834. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solar-flare-light.css +163 -0
  1835. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solar-flare-light.min.css +7 -0
  1836. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solar-flare.css +163 -0
  1837. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solar-flare.min.css +7 -0
  1838. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solarized-dark.css +163 -0
  1839. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solarized-dark.min.css +7 -0
  1840. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solarized-light.css +163 -0
  1841. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solarized-light.min.css +7 -0
  1842. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/spacemacs.css +163 -0
  1843. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/spacemacs.min.css +7 -0
  1844. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/summercamp.css +163 -0
  1845. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/summercamp.min.css +7 -0
  1846. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/summerfruit-dark.css +163 -0
  1847. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/summerfruit-dark.min.css +7 -0
  1848. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/summerfruit-light.css +163 -0
  1849. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/summerfruit-light.min.css +7 -0
  1850. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/synth-midnight-terminal-dark.css +163 -0
  1851. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/synth-midnight-terminal-dark.min.css +7 -0
  1852. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/synth-midnight-terminal-light.css +163 -0
  1853. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/synth-midnight-terminal-light.min.css +7 -0
  1854. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tango.css +163 -0
  1855. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tango.min.css +7 -0
  1856. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tender.css +163 -0
  1857. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tender.min.css +7 -0
  1858. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tomorrow-night.css +163 -0
  1859. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tomorrow-night.min.css +7 -0
  1860. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tomorrow.css +163 -0
  1861. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tomorrow.min.css +7 -0
  1862. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/twilight.css +163 -0
  1863. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/twilight.min.css +7 -0
  1864. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/unikitty-dark.css +163 -0
  1865. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/unikitty-dark.min.css +7 -0
  1866. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/unikitty-light.css +163 -0
  1867. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/unikitty-light.min.css +7 -0
  1868. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/vulcan.css +163 -0
  1869. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/vulcan.min.css +7 -0
  1870. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-10-light.css +163 -0
  1871. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-10-light.min.css +7 -0
  1872. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-10.css +163 -0
  1873. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-10.min.css +7 -0
  1874. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-95-light.css +163 -0
  1875. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-95-light.min.css +7 -0
  1876. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-95.css +163 -0
  1877. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-95.min.css +7 -0
  1878. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-high-contrast-light.css +163 -0
  1879. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-high-contrast-light.min.css +7 -0
  1880. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-high-contrast.css +163 -0
  1881. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-high-contrast.min.css +7 -0
  1882. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-nt-light.css +163 -0
  1883. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-nt-light.min.css +7 -0
  1884. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-nt.css +163 -0
  1885. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-nt.min.css +7 -0
  1886. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/woodland.css +163 -0
  1887. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/woodland.min.css +7 -0
  1888. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/xcode-dusk.css +163 -0
  1889. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/xcode-dusk.min.css +7 -0
  1890. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/zenburn.css +163 -0
  1891. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/zenburn.min.css +7 -0
  1892. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/brown-paper.css +63 -0
  1893. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/brown-paper.min.css +1 -0
  1894. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/brown-papersq.png +0 -0
  1895. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/codepen-embed.css +57 -0
  1896. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/codepen-embed.min.css +1 -0
  1897. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/color-brewer.css +66 -0
  1898. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/color-brewer.min.css +1 -0
  1899. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/dark.css +62 -0
  1900. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/dark.min.css +1 -0
  1901. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/default.css +117 -0
  1902. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/default.min.css +9 -0
  1903. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/devibeans.css +90 -0
  1904. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/devibeans.min.css +7 -0
  1905. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/docco.css +83 -0
  1906. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/docco.min.css +1 -0
  1907. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/far.css +67 -0
  1908. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/far.min.css +1 -0
  1909. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/felipec.css +94 -0
  1910. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/felipec.min.css +7 -0
  1911. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/foundation.css +80 -0
  1912. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/foundation.min.css +1 -0
  1913. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/github-dark-dimmed.css +117 -0
  1914. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/github-dark-dimmed.min.css +9 -0
  1915. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/github-dark.css +118 -0
  1916. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/github-dark.min.css +10 -0
  1917. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/github.css +118 -0
  1918. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/github.min.css +10 -0
  1919. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/gml.css +72 -0
  1920. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/gml.min.css +1 -0
  1921. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/googlecode.css +79 -0
  1922. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/googlecode.min.css +1 -0
  1923. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/gradient-dark.css +90 -0
  1924. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/gradient-dark.min.css +1 -0
  1925. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/gradient-light.css +90 -0
  1926. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/gradient-light.min.css +1 -0
  1927. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/grayscale.css +89 -0
  1928. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/grayscale.min.css +1 -0
  1929. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/hybrid.css +88 -0
  1930. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/hybrid.min.css +1 -0
  1931. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/idea.css +86 -0
  1932. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/idea.min.css +1 -0
  1933. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/intellij-light.css +107 -0
  1934. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/intellij-light.min.css +1 -0
  1935. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/ir-black.css +66 -0
  1936. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/ir-black.min.css +1 -0
  1937. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/isbl-editor-dark.css +94 -0
  1938. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/isbl-editor-dark.min.css +1 -0
  1939. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/isbl-editor-light.css +93 -0
  1940. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/isbl-editor-light.min.css +1 -0
  1941. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/kimbie-dark.css +69 -0
  1942. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/kimbie-dark.min.css +1 -0
  1943. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/kimbie-light.css +69 -0
  1944. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/kimbie-light.min.css +1 -0
  1945. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/lightfair.css +81 -0
  1946. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/lightfair.min.css +1 -0
  1947. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/lioshi.css +76 -0
  1948. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/lioshi.min.css +1 -0
  1949. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/magula.css +66 -0
  1950. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/magula.min.css +1 -0
  1951. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/mono-blue.css +56 -0
  1952. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/mono-blue.min.css +1 -0
  1953. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/monokai-sublime.css +76 -0
  1954. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/monokai-sublime.min.css +1 -0
  1955. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/monokai.css +68 -0
  1956. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/monokai.min.css +1 -0
  1957. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/night-owl.css +174 -0
  1958. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/night-owl.min.css +1 -0
  1959. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/nnfx-dark.css +104 -0
  1960. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/nnfx-dark.min.css +10 -0
  1961. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/nnfx-light.css +104 -0
  1962. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/nnfx-light.min.css +10 -0
  1963. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/nord.css +275 -0
  1964. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/nord.min.css +1 -0
  1965. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/obsidian.css +79 -0
  1966. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/obsidian.min.css +1 -0
  1967. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/panda-syntax-dark.css +92 -0
  1968. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/panda-syntax-dark.min.css +1 -0
  1969. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/panda-syntax-light.css +89 -0
  1970. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/panda-syntax-light.min.css +1 -0
  1971. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/paraiso-dark.css +67 -0
  1972. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/paraiso-dark.min.css +1 -0
  1973. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/paraiso-light.css +67 -0
  1974. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/paraiso-light.min.css +1 -0
  1975. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/pojoaque.css +76 -0
  1976. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/pojoaque.jpg +0 -0
  1977. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/pojoaque.min.css +1 -0
  1978. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/purebasic.css +103 -0
  1979. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/purebasic.min.css +1 -0
  1980. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/qtcreator-dark.css +76 -0
  1981. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/qtcreator-dark.min.css +1 -0
  1982. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/qtcreator-light.css +74 -0
  1983. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/qtcreator-light.min.css +1 -0
  1984. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/rainbow.css +77 -0
  1985. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/rainbow.min.css +1 -0
  1986. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/routeros.css +86 -0
  1987. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/routeros.min.css +1 -0
  1988. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/school-book.css +62 -0
  1989. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/school-book.min.css +1 -0
  1990. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/shades-of-purple.css +84 -0
  1991. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/shades-of-purple.min.css +1 -0
  1992. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/srcery.css +89 -0
  1993. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/srcery.min.css +1 -0
  1994. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/stackoverflow-dark.css +117 -0
  1995. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/stackoverflow-dark.min.css +13 -0
  1996. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/stackoverflow-light.css +117 -0
  1997. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/stackoverflow-light.min.css +13 -0
  1998. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/sunburst.css +89 -0
  1999. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/sunburst.min.css +1 -0
  2000. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tokyo-night-dark.css +114 -0
  2001. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tokyo-night-dark.min.css +8 -0
  2002. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tokyo-night-light.css +114 -0
  2003. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tokyo-night-light.min.css +8 -0
  2004. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tomorrow-night-blue.css +69 -0
  2005. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tomorrow-night-blue.min.css +1 -0
  2006. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tomorrow-night-bright.css +68 -0
  2007. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tomorrow-night-bright.min.css +1 -0
  2008. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/vs.css +63 -0
  2009. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/vs.min.css +1 -0
  2010. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/vs2015.css +100 -0
  2011. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/vs2015.min.css +1 -0
  2012. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/xcode.css +90 -0
  2013. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/xcode.min.css +1 -0
  2014. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/xt256.css +79 -0
  2015. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/xt256.min.css +1 -0
  2016. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/types/index.d.ts +272 -0
  2017. package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/README.md +256 -0
  2018. package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/index.js +62 -0
  2019. package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/md4w-fast.wasm +0 -0
  2020. package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/md4w-small.wasm +0 -0
  2021. package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/md4w.d.ts +209 -0
  2022. package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/md4w.js +248 -0
  2023. package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/unwasm.js +8 -0
  2024. package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/workerd.js +12 -0
  2025. package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/package.json +32 -0
  2026. package/esm.sh/~/.esmd/npm/react@19.2.4/.cjs-module-lexer/N9KEuYxp93L_UmfSNWRJbsFK_rM.json +1 -0
  2027. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/README.md +37 -0
  2028. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-compiler-runtime.development.js +24 -0
  2029. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
  2030. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-compiler-runtime.profiling.js +16 -0
  2031. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-dev-runtime.development.js +338 -0
  2032. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
  2033. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js +14 -0
  2034. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js +370 -0
  2035. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js +40 -0
  2036. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-runtime.development.js +352 -0
  2037. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
  2038. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-runtime.profiling.js +34 -0
  2039. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-runtime.react-server.development.js +370 -0
  2040. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-runtime.react-server.production.js +40 -0
  2041. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react.development.js +1284 -0
  2042. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react.production.js +542 -0
  2043. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react.react-server.development.js +848 -0
  2044. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react.react-server.production.js +423 -0
  2045. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/compiler-runtime.js +14 -0
  2046. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/index.js +7 -0
  2047. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/jsx-dev-runtime.js +7 -0
  2048. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/jsx-dev-runtime.react-server.js +7 -0
  2049. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/jsx-runtime.js +7 -0
  2050. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/jsx-runtime.react-server.js +7 -0
  2051. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/package.json +51 -0
  2052. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/react.react-server.js +7 -0
  2053. package/esm.sh/~/.esmd/npm/react@19.2.4/reveal_index.js +1 -0
  2054. package/esm.sh/~/.esmd/npm/react@19.2.4/splitting.txt +1 -0
  2055. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/README.md +37 -0
  2056. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-compiler-runtime.development.js +24 -0
  2057. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
  2058. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-compiler-runtime.profiling.js +16 -0
  2059. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-dev-runtime.development.js +338 -0
  2060. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
  2061. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js +14 -0
  2062. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js +370 -0
  2063. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js +40 -0
  2064. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-runtime.development.js +352 -0
  2065. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
  2066. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-runtime.profiling.js +34 -0
  2067. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-runtime.react-server.development.js +370 -0
  2068. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-runtime.react-server.production.js +40 -0
  2069. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react.development.js +1284 -0
  2070. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react.production.js +542 -0
  2071. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react.react-server.development.js +848 -0
  2072. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react.react-server.production.js +423 -0
  2073. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/compiler-runtime.js +14 -0
  2074. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/index.js +7 -0
  2075. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/jsx-dev-runtime.js +7 -0
  2076. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/jsx-dev-runtime.react-server.js +7 -0
  2077. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/jsx-runtime.js +7 -0
  2078. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/jsx-runtime.react-server.js +7 -0
  2079. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/package.json +51 -0
  2080. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/react.react-server.js +7 -0
  2081. package/esm.sh/~/.esmd/npm/react@19.2.7/splitting.txt +1 -0
  2082. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/README.md +58 -0
  2083. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/index.browser.js +1 -0
  2084. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/index.browser.mjs +1 -0
  2085. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/index.d.mts +1 -0
  2086. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/index.d.ts +1 -0
  2087. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/index.js +3 -0
  2088. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/index.mjs +3 -0
  2089. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/package.json +4 -0
  2090. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/register-ts.js +3 -0
  2091. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.cjs.js +80 -0
  2092. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.cjs.prod.js +66 -0
  2093. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.d.mts +7 -0
  2094. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.d.ts +7 -0
  2095. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.esm-browser.js +18771 -0
  2096. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.esm-browser.prod.js +13 -0
  2097. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.esm-bundler.js +71 -0
  2098. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.global.js +18651 -0
  2099. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.global.prod.js +13 -0
  2100. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.runtime.esm-browser.js +12880 -0
  2101. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.runtime.esm-browser.prod.js +7 -0
  2102. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.runtime.esm-bundler.js +26 -0
  2103. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.runtime.global.js +12934 -0
  2104. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.runtime.global.prod.js +7 -0
  2105. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/index.js +7 -0
  2106. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/index.mjs +1 -0
  2107. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/jsx-runtime/index.d.ts +25 -0
  2108. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/jsx-runtime/index.js +15 -0
  2109. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/jsx-runtime/index.mjs +12 -0
  2110. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/jsx-runtime/package.json +5 -0
  2111. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/jsx.d.ts +22 -0
  2112. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/package.json +112 -0
  2113. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/server-renderer/index.d.mts +1 -0
  2114. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/server-renderer/index.d.ts +1 -0
  2115. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/server-renderer/index.js +1 -0
  2116. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/server-renderer/index.mjs +1 -0
  2117. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/server-renderer/package.json +4 -0
  2118. package/esm.sh/~/.esmd/npm/vue@3.5.35/splitting.txt +1 -0
  2119. package/esm.sh/~/.esmd/storage/meta/0ccf259ebde077a12d90e293b1b57c71c6a7e5681b3d370701d8b837374c471d +3 -0
  2120. package/esm.sh/~/.esmd/storage/meta/2ff07cad0d49c3918c0d7e540f7c3a4de6365f0fa900d2571abdd3d0c6f752ad +5 -0
  2121. package/esm.sh/~/.esmd/storage/meta/4ed866cb0ae082373db4adbc9a767ed1f72aaab7ce2617c1a26306b2243fb906 +3 -0
  2122. package/esm.sh/~/.esmd/storage/meta/632c0342785a7316482a17aab04f0c39418d947fce8e7bb029e14c2e71fcfcf4 +5 -0
  2123. package/esm.sh/~/.esmd/storage/meta/76592bfc53893b8e9a350b84dcbc221b3f579ee5dedfdde8246f32339dc2e1aa +3 -0
  2124. package/esm.sh/~/.esmd/storage/meta/94595f12b0002bcf04f539ef3d8f0b6b4354211e0d8c600a7d89febd3674fef7 +4 -0
  2125. package/esm.sh/~/.esmd/storage/meta/c0b76f9c9eb165371fa7d6c0f45305fa8b9f0f5ce643c18f5c3141b8922204ad +3 -0
  2126. package/esm.sh/~/.esmd/storage/meta/d03278ae19ef7972f5b610bd42fc0203f6179d7eace0f621c787127d8edf810e +4 -0
  2127. package/esm.sh/~/.esmd/storage/modules/@vue/runtime-dom@3.5.35/es2022/runtime-dom.mjs +12 -0
  2128. package/esm.sh/~/.esmd/storage/modules/@vue/runtime-dom@3.5.35/es2022/runtime-dom.mjs.map +1 -0
  2129. package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/core.mjs +4 -0
  2130. package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/core.mjs.map +1 -0
  2131. package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/languages/javascript.mjs +3 -0
  2132. package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/languages/javascript.mjs.map +1 -0
  2133. package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/languages/json.mjs +3 -0
  2134. package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/languages/json.mjs.map +1 -0
  2135. package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/languages/xml.mjs +3 -0
  2136. package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/languages/xml.mjs.map +1 -0
  2137. package/esm.sh/~/.esmd/storage/modules/md4w@0.2.7/es2022/md4w.mjs +4 -0
  2138. package/esm.sh/~/.esmd/storage/modules/md4w@0.2.7/es2022/md4w.mjs.map +1 -0
  2139. package/esm.sh/~/.esmd/storage/modules/react@19.2.4/es2022/react.mjs +16 -0
  2140. package/esm.sh/~/.esmd/storage/modules/react@19.2.4/es2022/react.mjs.map +1 -0
  2141. package/esm.sh/~/.esmd/storage/modules/vue@3.5.35/es2022/vue.mjs +12 -0
  2142. package/esm.sh/~/.esmd/storage/modules/vue@3.5.35/es2022/vue.mjs.map +1 -0
  2143. package/package.json +1 -1
  2144. package/chrome-devtools-mcp.skill +0 -0
@@ -0,0 +1,3340 @@
1
+ ## Version 11.9.0
2
+
3
+ CAVEATS / POTENTIALLY BREAKING CHANGES
4
+
5
+ - Drops support for Node 14.x, which is no longer supported by Node.js.
6
+ - In the `node` build `styles/*.css` files now ship un-minified
7
+ with minified counterparts as: `styles/*.min.css` [mvorisek][]
8
+ (this makes things consistent with our `cdn` builds)
9
+
10
+ Parser:
11
+
12
+ - (enh) prevent re-highlighting of an element [joshgoebel][]
13
+ - (chore) Remove discontinued badges from README [Bradley Mackey][]
14
+ - (chore) Fix build size report [Bradley Mackey][]
15
+
16
+ New Grammars:
17
+
18
+ - added 3rd party Iptables grammar to SUPPORTED_LANGUAGES [Checconio][]
19
+ - added 3rd party x86asmatt grammar to SUPPORTED_LANGUAGES [gondow][]
20
+ - added 3rd party riscv64 grammar to SUPPORTED_LANGUAGES [aana-h2][]
21
+ - added 3rd party Ballerina grammar to SUPPORTED_LANGUAGES [Yasith Deelaka][]
22
+
23
+ Core Grammars:
24
+
25
+ - fix(rust) added negative-lookahead for callable keywords `if` `while` `for` [Omar Hussein][]
26
+ - enh(armasm) added `x0-x30` and `w0-w30` ARMv8 registers [Nicholas Thompson][]
27
+ - enh(haxe) added `final`, `is`, `macro` keywords and `$` identifiers [Robert Borghese][]
28
+ - enh(haxe) support numeric separators and suffixes [Robert Borghese][]
29
+ - fix(haxe) fixed metadata arguments and support non-colon syntax [Robert Borghese][]
30
+ - fix(haxe) differentiate `abstract` declaration from keyword [Robert Borghese][]
31
+ - fix(bash) do not delimit a string by an escaped apostrophe [hancar][]
32
+ - enh(swift) support `macro` keyword [Bradley Mackey][]
33
+ - enh(swift) support parameter pack keywords [Bradley Mackey][]
34
+ - enh(swift) regex literal support [Bradley Mackey][]
35
+ - enh(swift) `@unchecked` and `@Sendable` support [Bradley Mackey][]
36
+ - enh(scala) add using directives support `//> using foo bar` [Jamie Thompson][]
37
+ - fix(scala) fixed comments in constructor arguments not being properly highlighted [Isaac Nonato][]
38
+ - enh(swift) ownership modifiers support [Bradley Mackey][]
39
+ - enh(nsis) Add `!assert` compiler flag [idleberg][]
40
+ - fix(haskell) do not treat double dashes inside infix operators as comments [Zlondrej][]
41
+ - enh(rust) added `eprintln!` macro [qoheniac][]
42
+ - enh(leaf) update syntax to 4.0 [Samuel Bishop][]
43
+ - fix(reasonml) simplify syntax and align it with ocaml [jchavarri][]
44
+ - fix(swift) `warn_unqualified_access` is an attribute [Bradley Mackey][]
45
+ - enh(swift) macro attributes are highlighted as keywords [Bradley Mackey][]
46
+ - enh(stan) updated for version 2.33 (#3859) [Brian Ward][]
47
+ - fix(css) added '_' css variable detection [Md Saad Akhtar][]
48
+ - enh(groovy) add `record` and `var` as keywords [Guillaume Laforge][]
49
+
50
+ Developer Tool:
51
+
52
+ - (chore) Update dev tool to use the new `highlight` API. [Shah Shabbir Ahmmed][]
53
+ - (enh) Auto-update the highlighted output when the language dropdown changes. [Shah Shabbir Ahmmed][]
54
+
55
+ [Robert Borghese]: https://github.com/RobertBorghese
56
+ [Isaac Nonato]: https://github.com/isaacnonato
57
+ [Shah Shabbir Ahmmed]: https://github.com/shabbir23ah
58
+ [Josh Goebel]: https://github.com/joshgoebel
59
+ [Checconio]: https://github.com/Checconio
60
+ [Bradley Mackey]: https://github.com/bradleymackey
61
+ [mvorisek]: https://github.com/mvorisek
62
+ [qoheniac]: https://github.com/qoheniac
63
+ [Samuel Bishop]: https://github.com/dannflor
64
+ [gondow]: https://github.com/gondow
65
+ [jchavarri]: https://github.com/jchavarri
66
+ [aana-h2]: https://github.com/aana-h2
67
+ [Nicholas Thompson]: https://github.com/NAThompson
68
+ [Yasith Deelaka]: https://github.com/YasithD
69
+ [Brian Ward]: https://github.com/WardBrian
70
+ [Md Saad Akhtar]: https://github.com/akhtarmdsaad
71
+ [Guillaume Laforge]: https://github.com/glaforge
72
+
73
+
74
+ ## Version 11.8.0
75
+
76
+ Parser engine:
77
+
78
+ - added a function to default export to generate a fresh highlighter instance to be used by extensions [WisamMechano][]
79
+ - added BETA `__emitTokens` key to grammars to allow then to direct their own parsing, only using Highlight.js for the HTML rendering [Josh Goebel][]
80
+ - (enh) add `removePlugin` api [faga295][]
81
+ - (fix) typo in language name of `JavaScript` [Cyrus Kao][]
82
+
83
+ New Grammars:
84
+
85
+ - added 3rd party Lang grammar to SUPPORTED_LANGUAGES [AdamRaichu][]
86
+ - added 3rd party C3 grammar to SUPPORTED_LANGUAGES [aliaegik][]
87
+
88
+ Core Grammars:
89
+
90
+ - enh(sql) support `_` in variable names [joshgoebel][]
91
+ - enh(mathematica) update keywords list to 13.2.1 [arnoudbuzing][]
92
+ - enh(protobuf) add `proto` alias for Protobuf [dimitropoulos][]
93
+ - enh(sqf) latest changes in Arma 3 v2.11 [Leopard20][]
94
+ - enh(js/ts) Added support for GraphQL tagged template strings [Ali Ukani][]
95
+ - enh(javascript) add sessionStorage to list of built-in variables [Jeroen van Vianen][]
96
+ - enh(http) Add support for HTTP/3 [Rijenkii][]
97
+ - added 3rd party Motoko grammar to SUPPORTED_LANGUAGES [rvanasa][]
98
+ - added 3rd party Candid grammar to SUPPORTED_LANGUAGES [rvanasa][]
99
+ - fix(haskell) Added support for characters [CrystalSplitter][]
100
+ - enh(dart) Add `base`, `interface`, `sealed`, and `when` keywords [Sam Rawlins][]
101
+ - enh(php) detect newer more flexible NOWdoc syntax (#3679) [Timur Kamaev][]
102
+ - enh(python) improve autodetection of code with type hinting any function's return type (making the `->` operator legal) [Keyacom][]
103
+ - enh(bash) add `select` and `until` as keywords
104
+
105
+ [arnoudbuzing]: https://github.com/arnoudbuzing
106
+ [aliaegik]: https://github.com/aliaegik
107
+ [Josh Goebel]: https://github.com/joshgoebel
108
+ [Timur Kamaev]: https://github.com/doiftrue
109
+ [Leopard20]: https://github.com/Leopard20/
110
+ [WisamMechano]: https://github.com/wisammechano
111
+ [faga295]: https://github.com/faga295
112
+ [AdamRaichu]: https://github.com/AdamRaichu
113
+ [Ali Ukani]: https://github.com/ali
114
+ [Jeroen van Vianen]: https://github.com/morinel
115
+ [Rijenkii]: https://github.com/rijenkii
116
+ [faga295]: https://github.com/faga295
117
+ [rvanasa]: https://github.com/rvanasa
118
+ [CrystalSplitter]: https://github.com/CrystalSplitter
119
+ [Sam Rawlins]: https://github.com/srawlins
120
+ [Keyacom]: https://github.com/Keyacom
121
+ [Boris Verkhovskiy]: https://github.com/verhovsky
122
+ [Cyrus Kao]: https://github.com/CyrusKao
123
+ [Zlondrej]: https://github.com/zlondrej
124
+
125
+
126
+ ## Version 11.7.0
127
+
128
+ New Grammars:
129
+
130
+ - added 3rd party LookML grammar to SUPPORTED_LANGUAGES [Josh Temple][]
131
+ - added 3rd party FunC grammar to SUPPORTED_LANGUAGES [Nikita Sobolev][]
132
+ - Added 3rd party Flix grammar to SUPPORTED_LANGUAGES [The Flix Organisation][]
133
+ - Added 3rd party RVT grammar to SUPPORTED_LANGUAGES [Sopitive][]
134
+
135
+ Grammars:
136
+
137
+ - enh(scheme) add `scm` alias for Scheme [matyklug18][]
138
+ - fix(typescript) patterns like `<T =` are not JSX [Josh Goebel][]
139
+ - fix(bash) recognize the `((` keyword [Nick Chambers][]
140
+ - enh(Ruby) misc improvements (kws, class names, etc) [Josh Goebel][]
141
+ - fix(js) do not flag `import()` as a function, rather a keyword [nathnolt][]
142
+ - fix(bash) recognize the `((` keyword [Nick Chambers][]
143
+ - fix(nix) support escaped dollar signs in strings [h7x4][]
144
+ - enh(cmake) support bracket comments [Hirse][]
145
+ - enh(java) add yield keyword to java [MBoegers][]
146
+ - enh(java) add permits keyword to java [MBoegers][]
147
+ - fix(javascript/typescript) correct identifier matching when using numbers [Lachlan Heywood][]
148
+
149
+ Improvements:
150
+
151
+ - Documentation typo fix by [Eddymens][]
152
+
153
+ [matyklug18]: https://github.com/matyklug18
154
+ [Josh Goebel]: https://github.com/joshgoebel
155
+ [Josh Temple]: https://github.com/joshtemple
156
+ [nathnolt]: https://github.com/nathnolt
157
+ [Nick Chambers]: https://github.com/uplime
158
+ [h7x4]: https://github.com/h7x4
159
+ [Hirse]: https://github.com/Hirse
160
+ [The Flix Organisation]: https://github.com/flix
161
+ [MBoegers]: https://github.com/MBoegers
162
+ [Lachlan Heywood]: https://github.com/lachieh
163
+ [Eddymens]: https://github.com/eddymens
164
+ [Sopitive]: https://github.com/Sopitive
165
+
166
+
167
+ ## Version 11.6.0
168
+
169
+ Supported Node.js versions:
170
+
171
+ - (chore) Drops support for Node 12.x, which is no longer supported by Node.js.
172
+
173
+
174
+ Default build changes:
175
+
176
+ - add `wasm` to default `:common` build (#3526) [Josh Goebel][]
177
+ - add `graphql` to default `:common` build (#3526) [Josh Goebel][]
178
+
179
+
180
+ Grammars:
181
+ - fix(json) changed null/booleans from `keyword` to `literal` [shikhar13012001][]
182
+ - enh(gml) reorganized and added additional keywords [Bluecoreg][]
183
+ - enh(csharp) Added support for the new `scoped` keyword in C# (#3571) [David Pine][]
184
+ - enh(scala) add `transparent` keyword [Matt Bovel][]
185
+ - fix(rust) highlight types immediately preceeding `::` (#3540) [Josh Goebel][]
186
+ - Added 3rd party Apex grammar to SUPPORTED_LANGUAGES (#3546) [David Schach][]
187
+ - fix(rust) recognize `include_bytes!` macro (#3541) [Serial-ATA][]
188
+ - fix(java) do not intepret `==` as a variable declaration [Mousetail][]
189
+ - enh(swift) add SE-0335 existential `any` keyword (#3515) [Bradley Mackey][]
190
+ - enh(swift) add support for `distributed` keyword [Marcus Ortiz][]
191
+ - enh(xml) recognize Unicode letters instead of only ASCII letters in XML element and attribute names (#3256)[Martin Honnen][]
192
+ - Added 3rd party Toit grammar to SUPPORTED_LANGUAGES [Serzhan Nasredin][]
193
+ - Use substring() instead of deprecated substr() [Tobias Buschor][]
194
+ - Added 3rd party Oak grammar to SUPPORTED_LANGUAGES [Tim Smith][]
195
+ - enh(python) add `match` and `case` keywords [Avrumy Lunger][]
196
+ - Added 3rd party COBOL grammar to SUPPORTED_LANGUAGES [Gabriel Gonçalves][]
197
+
198
+ [shikhar13012001]: https://github.com/shikhar13012001
199
+ [Bluecoreg]: https://github.com/Bluecoreg
200
+ [Matt Bovel]: https://github.com/mbovel
201
+ [David Schach]: https://github.com/dschach
202
+ [Serial-ATA]: https://github.com/Serial-ATA
203
+ [Bradley Mackey]: https://github.com/bradleymackey
204
+ [Marcus Ortiz]: https://github.com/mportiz08
205
+ [Martin Honnen]: https://github.com/martin-honnen
206
+ [Serzhan Nasredin]: https://github.com/snxx-lppxx
207
+ [Tobias Buschor]: https://github.com/nuxodin/
208
+ [Tim Smith]: https://github.com/timlabs
209
+ [Avrumy Lunger]: https://github.com/vrumger
210
+ [Mousetail]: https://github.com/mousetail
211
+ [Gabriel Gonçalves]: https://github.com/KTSnowy
212
+ [Nikita Sobolev]: https://github.com/sobolevn
213
+
214
+ ## Version 11.5.0
215
+
216
+ Themes:
217
+ - Added `Tokyo-Night-dark` theme [Henri Vandersleyen][]
218
+ - Added `Tokyo-Night-light` theme [Henri Vandersleyen][]
219
+ - Added `panda-syntax-dark` theme [Annmarie Switzer][]
220
+ - Added `panda-syntax-light` theme [Annmarie Switzer][]
221
+
222
+ New Grammars:
223
+
224
+ - Added GraphQL to SUPPORTED_LANGUAGES [John Foster][]
225
+ - Added Macaulay2 to SUPPORTED_LANGUAGES [Doug Torrance][]
226
+
227
+ Grammars:
228
+
229
+ - enh(ruby) lots of small Ruby cleanups/improvements [Josh Goebel][]
230
+ - enh(objectivec) add `type` and `variable.language` scopes [Josh Goebel][]
231
+ - enh(xml) support processing instructions (#3492) [Josh Goebel][]
232
+ - enh(ruby ) better support multi-line IRB prompts
233
+ - enh(bash) improved keyword `$pattern` (numbers allowed in command names) [Martin Mattel][]
234
+ - add `meta.prompt` scope for REPL prompts, etc [Josh Goebel][]
235
+ - fix(markdown) Handle `***Hello world***` without breaking [Josh Goebel][]
236
+ - enh(php) add support for PHP Attributes [Wojciech Kania][]
237
+ - fix(java) prevent false positive variable init on `else` [Josh Goebel][]
238
+ - enh(php) named arguments [Wojciech Kania][]
239
+ - fix(php) PHP constants [Wojciech Kania][]
240
+ - fix(angelscript) incomplete int8, int16, int32, int64 highlighting [Melissa Geels][]
241
+ - enh(ts) modify TypeScript-specific keywords and types list [anydonym][]
242
+ - fix(brainfuck) fix highlighting of initial ++/-- [Christina Hanson][]
243
+ - fix(llvm) escaping in strings and number formats [Flakebi][]
244
+ - enh(elixir) recognize references to modules [Mark Ericksen][]
245
+ - enh(css): add support for more properties [Nicolaos Skimas][]
246
+
247
+ [Martin Mattel]: https://github.com/mmattel
248
+ [John Foster]: https://github.com/jf990
249
+ [Wojciech Kania]: https://github.com/wkania
250
+ [Melissa Geels]: https://github.com/codecat
251
+ [anydonym]: https://github.com/anydonym
252
+ [henri Vandersleyen]: https://github.com/Vanderscycle
253
+ [Christina Hanson]: https://github.com/LyricLy
254
+ [Flakebi]: https://github.com/Flakebi
255
+ [Josh Goebel]: https://github.com/joshgoebel
256
+ [Mark Ericksen]: https://github.com/brainlid
257
+ [Nicolaos Skimas]: https://github.com/dev-nicolaos
258
+ [Doug Torrance]: https://github.com/d-torrance
259
+ [Annmarie Switzer]: https://github.com/annmarie-switzer
260
+
261
+
262
+ ## Version 11.4.0
263
+
264
+ New Language:
265
+
266
+ - Added 3rd party Pine Script grammar to SUPPORTED_LANGUAGES [Jeylani B][]
267
+ - Added 3rd party cURL grammar to SUPPORTED_LANGUAGES [highlightjs-curl](https://github.com/highlightjs/highlightjs-curl)
268
+
269
+ Themes:
270
+
271
+ - `Default` is now much closer WCAG AA (contrast) (#3402) [Josh Goebel]
272
+ - `Dark` now meets WCAG AA (contrast) (#3402) [Josh Goebel]
273
+ - Added `intellij-light` theme [Pegasis]
274
+ - Added `felipec` theme [Felipe Contreras]
275
+
276
+ These changes should be for the better and should not be super noticeable but if you're super picky about your colors you may want to intervene here or copy over the older themes from 11.3 or prior.
277
+
278
+ Grammars:
279
+
280
+ - enh(twig) update keywords list for symfony (#3453) [Matthieu Lempereur][]
281
+ - enh(arcade) updated to ArcGIS Arcade version 1.16 [John Foster][]
282
+ - enh(php) Left and right-side of double colon [Wojciech Kania][]
283
+ - enh(php) add PHP constants [Wojciech Kania][]
284
+ - enh(php) add PHP 8.1 keywords [Wojciech Kania][]
285
+ - fix(cpp) fix `vector<<` template false positive (#3437) [Josh Goebel][]
286
+ - enh(php) support First-class Callable Syntax (#3427) [Wojciech Kania][]
287
+ - enh(php) support class constructor call (#3427) [Wojciech Kania][]
288
+ - enh(php) support function invoke (#3427) [Wojciech Kania][]
289
+ - enh(php) Switch highlighter to partially case-insensitive (#3427) [Wojciech Kania][]
290
+ - enh(php) improve `namespace` and `use` highlighting (#3427) [Josh Goebel][]
291
+ - enh(php) `$this` is a `variable.language` now (#3427) [Josh Goebel][]
292
+ - enh(php) add `__COMPILER_HALT_OFFSET__` (#3427) [Josh Goebel][]
293
+ - enh(js/ts) fix => async function title highlights (#3405) [Josh Goebel][]
294
+ - enh(twig) update keywords list (#3415) [Matthieu Lempereur][]
295
+ - fix(python) def, class keywords detected mid-identifier (#3381) [Josh Goebel][]
296
+ - fix(python) Fix recognition of numeric literals followed by keywords without whitespace (#2985) [Richard Gibson][]
297
+ - enh(swift) add SE-0290 unavailability condition (#3382) [Bradley Mackey][]
298
+ - fix(fsharp) Highlight operators, match type names only in type annotations, support quoted identifiers, and other smaller fixes. [Melvyn Laïly][]
299
+ - enh(java) add `sealed` and `non-sealed` keywords (#3386) [Bradley Mackey][]
300
+ - enh(js/ts) improve `CLASS_REFERENCE` (#3411) [Josh Goebel][]
301
+ - enh(nsis) Update defines pattern to allow `!` (#3417) [idleberg][]
302
+ - enh(nsis) Update language strings pattern to allow `!` (#3420) [idleberg][]
303
+ - fix(stan) Updated for Stan 2.28 and other misc. improvements (#3410)
304
+ - enh(nsis) Update variables pattern (#3416) [idleberg][]
305
+ - fix(clojure) Several issues with Clojure highlighting (#3397) [Björn Ebbinghaus][]
306
+ - fix(clojure) `comment` macro catches more than it should (#3395)
307
+ - fix(clojure) `$` in symbol breaks highlighting
308
+ - fix(clojure) Add complete regex for number detection
309
+ - enh(clojure) Add character mode for character literals
310
+ - fix(clojure) Inconsistent namespaced map highlighting
311
+ - enh(clojure) Add `regex` mode to regex literal
312
+ - fix(clojure) Remove inconsistent/broken highlighting for metadata
313
+ - enh(clojure) Add `punctuation` mode for commas.
314
+ - fix(julia) Enable the `jldoctest` alias (#3432) [Fons van der Plas][]
315
+
316
+ Developer Tools:
317
+
318
+ - (chore) add gzip size compression report (#3400) [Bradley Mackey][]
319
+
320
+ Themes:
321
+
322
+ - Modified background color in css for Gradient Light and Gradient Dark themes [Samia Ali][]
323
+
324
+ [John Foster]: https://github.com/jf990
325
+ [Pegasis]: https://github.com/PegasisForever
326
+ [Wojciech Kania]: https://github.com/wkania
327
+ [Jeylani B]: https://github.com/jeyllani
328
+ [Richard Gibson]: https://github.com/gibson042
329
+ [Bradley Mackey]: https://github.com/bradleymackey
330
+ [Melvyn Laïly]: https://github.com/mlaily
331
+ [Björn Ebbinghaus]: https://github.com/MrEbbinghaus
332
+ [Josh Goebel]: https://github.com/joshgoebel
333
+ [Samia Ali]: https://github.com/samiaab1990
334
+ [Matthieu Lempereur]: https://github.com/MrYamous
335
+ [idleberg]: https://github.com/idleberg
336
+ [Fons van der Plas]: https://github.com/fonsp
337
+ [Felipe Contreras]: https://github.com/felipec
338
+
339
+ ## Version 11.3.1
340
+
341
+ Build:
342
+
343
+ - (fix) Grammar CDN modules not generated correctly. (#3363) [Josh Goebel][]
344
+
345
+ [Josh Goebel]: https://github.com/joshgoebel
346
+
347
+
348
+ ## Version 11.3.0
349
+
350
+ Build:
351
+
352
+ - add `HighlightJS` named export (#3295) [Josh Goebel][]
353
+ - add `.default` named export to CJS builds (#3333) [Josh Goebel][]
354
+
355
+ Parser:
356
+
357
+ - add first rough performance testing script (#3280) [Austin Schick][]
358
+ - add `throwUnescapedHTML` to warn against potential HTML injection [Josh Goebel][]
359
+ - expose `regex` helper functions via `hljs` injection [Josh Goebel][]
360
+ - concat
361
+ - lookahead
362
+ - either
363
+ - optional
364
+ - anyNumberOfTimes
365
+
366
+ Grammars:
367
+
368
+ - fix(ts) some complex types would classify as JSX (#3278) [Josh Goebel][]
369
+ - fix(js/ts) less false positives for `class X extends Y` (#3278) [Josh Goebel][]
370
+ - enh(css): add properties from several W3C (Candidate) Recommendations (#3308)
371
+ - fix(js/ts) `Float32Array` highlighted incorrectly (#3353) [Josh Goebel][]
372
+ - fix(css) single-colon psuedo-elements no longer break highlighting (#3240) [Josh Goebel][]
373
+ - fix(scss) single-colon psuedo-elements no longer break highlighting (#3240) [Josh Goebel][]
374
+ - enh(fsharp) rewrite most of the grammar, with many improvements [Melvyn Laïly][]
375
+ - enh(go) better type highlighting, add `error` type [Josh Goebel][]
376
+ - fix(js/ts) regex inside `SUBST` is no longer highlighted [Josh Goebel][]
377
+ - fix(python) added support for unicode identifiers (#3280) [Austin Schick][]
378
+ - enh(css/less/stylus/scss) improve consistency of function dispatch (#3301) [Josh Goebel][]
379
+ - enh(css/less/stylus/scss) detect block comments more fully (#3301) [Josh Goebel][]
380
+ - fix(cpp) switch is a keyword (#3312) [Josh Goebel][]
381
+ - fix(cpp) fix `xor_eq` keyword highlighting. [Denis Kovalchuk][]
382
+ - enh(c,cpp) highlight type modifiers as type (#3316) [Josh Goebel][]
383
+ - enh(css/less/stylus/scss) add support for CSS Grid properties [monochromer][]
384
+ - enh(java) add support for Java Text Block (#3322) [Teletha][]
385
+ - enh(scala) add missing `do` and `then` keyword (#3323) [Nicolas Stucki][]
386
+ - enh(scala) add missing `enum`, `export` and `given` keywords (#3328) [Nicolas Stucki][]
387
+ - enh(scala) remove symbol syntax and fix quoted code syntax (#3324) [Nicolas Stucki][]
388
+ - enh(scala) add Scala 3 `extension` soft keyword (#3326) [Nicolas Stucki][]
389
+ - enh(scala) add Scala 3 `end` soft keyword (#3327) [Nicolas Stucki][]
390
+ - enh(scala) add `inline` soft keyword (#3329) [Nicolas Stucki][]
391
+ - enh(scala) add `using` soft keyword (#3330) [Nicolas Stucki][]
392
+ - enh(fsharp) added `f#` alias (#3337) [Bahnschrift][]
393
+ - enh(bash) added gnu core utilities (#3342) [katzeprior][]
394
+ - enh(nsis) add new NSIS commands (#3351) [idleberg][]
395
+ - fix(nsis) set `case_insensitive` to `true` (#3351) [idleberg][]
396
+ - fix(css/less/stylus/scss) highlight single-colon psuedo-elements properly (#3240) [zsoltlengyelit][]
397
+ - fix(css) add css hex color alpha support (#3360) [ierehon1905][]
398
+
399
+ [Austin Schick]: https://github.com/austin-schick
400
+ [Josh Goebel]: https://github.com/joshgoebel
401
+ [Denis Kovalchuk]: https://github.com/deniskovalchuk
402
+ [monochromer]: https://github.com/monochromer
403
+ [Teletha]: https://github.com/teletha
404
+ [Nicolas Stucki]: https://github.com/nicolasstucki
405
+ [Bahnschrift]: https://github.com/Bahnschrift
406
+ [Melvyn Laïly]: https://github.com/mlaily
407
+ [katzeprior]: https://github.com/katzeprior
408
+ [zsoltlengyelit]: github.com/zsoltlengyelit
409
+ [Syb Wartna]:https://github.com/waarissyb
410
+ [idleberg]: https://github.com/idleberg
411
+ [ierehon1905]: https://github.com/ierehon1905
412
+
413
+
414
+ ## Version 11.2.0
415
+
416
+ Build:
417
+
418
+ - fix: run Node build CSS files thru CSS processor also (#3284) [Josh Goebel][]
419
+
420
+ Parser:
421
+
422
+ - fix(csharp) Fix assignments flagging as functions [Josh Goebel][]
423
+ - fix(types) Fix some type definition issues (#3274) [Josh Goebel][]
424
+ - fix(verilog) Fix directive handling (#3283) [Josh Goebel][]
425
+ - fix(verilog) Fix binary number false positives on `_` (#3283) [Josh Goebel][]
426
+ - enh(verilog) `__FILE__` and `__LINE__` constants (#3283) [Josh Goebel][]
427
+ - enh(verilog) tighten keyword regex (#3283) [Josh Goebel][]
428
+
429
+
430
+ Grammars:
431
+
432
+ - enh(swift) Add `isolated`/`nonisolated` keywords (#3296) [Bradley Mackey][]
433
+
434
+ New Languages:
435
+
436
+ - Added 3rd party X# grammar to SUPPORTED_LANGUAGES [Patrick Kruselburger][]
437
+ - Added 3rd party MKB grammar to SUPPORTED_LANGUAGES (#3297) [Dereavy][]
438
+
439
+ [Josh Goebel]: https://github.com/joshgoebel
440
+ [Patrick Kruselburger]: https://github.com/PatrickKru
441
+ [Bradley Mackey]: https://github.com/bradleymackey
442
+ [Dereavy]: https://github.com/dereavy
443
+
444
+
445
+ ## Version 11.1.0
446
+
447
+ Grammars:
448
+
449
+ - fix(csharp) add missing `catch` keyword (#3251) [Konrad Rudolph][]
450
+ - add additional keywords to csp.js (#3244) [Elijah Conners][]
451
+ - feat(css) handle css variables syntax (#3239) [Thanos Karagiannis][]
452
+ - fix(markdown) Images with empty alt or links with empty text (#3233) [Josh Goebel][]
453
+ - enh(powershell) added `pwsh` alias (#3236) [tebeco][]
454
+ - fix(r) fix bug highlighting examples in doc comments [Konrad Rudolph][]
455
+ - fix(python) identifiers starting with underscore not highlighted (#3221) [Antoine Lambert][]
456
+ - enh(clojure) added `edn` alias (#3213) [Stel Abrego][]
457
+ - enh(elixir) much improved regular expression sigil support (#3207) [Josh Goebel][]
458
+ - enh(elixir) updated list of keywords (#3212) [Angelika Tyborska][]
459
+ - fix(elixir) fixed number detection when numbers start with a zero (#3212) [Angelika Tyborska][]
460
+ - fix(ps1) Flag highlighted incorrectly (#3167) [Pankaj Patil][]
461
+ - fix(latex) Allow wider syntax for magic comments (#3243) [Benedikt Wilde][]
462
+ - fix(js/ts) Constants may include numbers [Josh Goebel][]
463
+
464
+ [Stel Abrego]: https://github.com/stelcodes
465
+ [Josh Goebel]: https://github.com/joshgoebel
466
+ [Antoine Lambert]: https://github.com/anlambert
467
+ [Elijah Conners]: https://github.com/elijahepepe
468
+ [Angelika Tyborska]: https://github.com/angelikatyborska
469
+ [Konrad Rudolph]: https://github.com/klmr
470
+ [tebeco]: https://github.com/tebeco
471
+ [Pankaj Patil]: https://github.com/patil2099
472
+ [Benedikt Wilde]: https://github.com/schtandard
473
+ [Thanos Karagiannis]: https://github.com/thanoskrg
474
+
475
+
476
+ ## Version 11.0.0
477
+
478
+ **This is a major release.** As such it contains breaking changes which may require action from users. Please read [VERSION_11_UPGRADE.md](https://github.com/highlightjs/highlight.js/blob/main/VERSION_11_UPGRADE.md) for a detailed summary of all breaking changes.
479
+
480
+ ### Potentially breaking changes
481
+
482
+ Unless otherwise attributed items below are thanks to [Josh Goebel][] (ref: [#2558](https://github.com/highlightjs/highlight.js/issues/2558)).
483
+
484
+ *The below list should only be considered to be a high-level summary.*
485
+
486
+ Deprecations / Removals / API Changes:
487
+
488
+ - `initHighlighting()` and `initHighlightingOnLoad()` deprecated. **Use `highlightAll()`.**
489
+ - `highlightBlock(el)` deprecated. **Use `highlightElement(el)`**
490
+ - `before:highlightBlock` & `after:highlightBlock` callbacks deprecated. **Use equivalent `highlightElement` callbacks.**
491
+ - `highlight(languageName, code, ignoreIllegals, continuation)` signature deprecated. **Use `highlight(code, {language, ignoreIllegals})`.**
492
+ - Deprecated `highlight()` signature no longer supports `continuation` argument.
493
+ - `tabReplace` option removed. Consider a plugin.
494
+ - `useBR` option removed. Consider a plugin or CSS.
495
+ - `requireLanguage()` removed. **Use `getLanguage()`.**
496
+ - `endSameAsBegin` mode key removed. **Use `hljs.END_SAME_AS_BEGIN`.**
497
+ - `lexemes` mode key removed. **Use `keywords.$pattern`.**
498
+ - The return values/keys of some APIs have changed slightly.
499
+
500
+ Security:
501
+
502
+ - HTML auto-passthru has been removed. Consider a plugin.
503
+ - Unescaped HTML is now stripped (for security). A warning is logged to the console. (#3057) [Josh Goebel][]
504
+
505
+ Themes:
506
+
507
+ - The default padding of all themes increases (0.5em => 1em).
508
+ - `schoolbook` has been updated to remove the lined background.
509
+ - `github` updated to better match modern GitHub (#1616) [Jan Pilzer][]
510
+ - `github-gist` has been removed in favor of `github` [Jan Pilzer][]
511
+ - Base16 named themes have been updated to their "canonical" versions
512
+ - `nnfx` updated for v11 xml styles and improved css support
513
+
514
+ Language Grammars:
515
+
516
+ - Default CDN build drops support for several languages.
517
+ - Some language grammar files have been removed.
518
+ - Some redundant language aliases have been removed.
519
+
520
+ ### Other changes
521
+
522
+ Parser:
523
+
524
+ - enh(vala) improve language detection for Vala (#3195) [Konrad Rudolph][]
525
+ - enh(r) add support for operators, fix number highlighting bug (#3194, #3195) [Konrad Rudolph][]
526
+ - enh(parser) add `beginScope` and `endScope` to allow separate scoping begin and end (#3159) [Josh Goebel][]
527
+ - enh(parsed) `endScope` now supports multi-class matchers as well (#3159) [Josh Goebel][]
528
+ - enh(parser) `highlightElement` now always tags blocks with a consistent `language-[name]` class [Josh Goebel][]
529
+ - subLanguage `span` tags now also always have the `language-` prefix added
530
+ - enh(parser) support multi-class matchers (#3081) [Josh Goebel][]
531
+ - enh(parser) Detect comments based on english like text, rather than keyword list [Josh Goebel][]
532
+ - adds `title.class.inherited` sub-scope support [Josh Goebel][]
533
+ - adds `title.class` sub-scope support (#3078) [Josh Goebel][]
534
+ - adds `title.function` sub-scope support (#3078) [Josh Goebel][]
535
+ - adds `beforeMatch` compiler extension (#3078) [Josh Goebel][]
536
+ - adds `cssSelector ` configuration option (#3180) [James Edington][]
537
+
538
+ Grammars:
539
+
540
+ - enh(all) `.meta-keyword` => `.meta .keyword` (nested scopes) (#3167) [Josh Goebel][]
541
+ - enh(all) `.meta-string` => `.meta .string` (nested scopes) (#3167) [Josh Goebel][]
542
+ - enh(swift) add `actor` keyword (#3171) [Bradley Mackey][]
543
+ - enh(crystal) highlight variables (#3154) [Josh Goebel][]
544
+ - fix(ruby) Heredoc without interpolation (#3154) [Josh Goebel][]
545
+ - enh(swift) add `@resultBuilder` attribute (#3151) [Bradley Mackey][]
546
+ - enh(processing) added `pde` alias (#3142) [Dylan McBean][]
547
+ - enh(thrift) Use proper scope for types [Josh Goebel][]
548
+ - enh(java) Simplified class-like matcher (#3078) [Josh Goebel][]
549
+ - enh(cpp) Simplified class-like matcher (#3078) [Josh Goebel][]
550
+ - enh(rust) Simplified class-like matcher (#3078) [Josh Goebel][]
551
+ - enh(actionscript) Simplified class-like matcher (#3078) [Josh Goebel][]
552
+ - enh(arcade) `function.title` => `title.function` (#3078) [Josh Goebel][]
553
+ - enh(autoit) `function.title` => `title.function` (#3078) [Josh Goebel][]
554
+ - enh(c) `function.title` => `title.function` (#3078) [Josh Goebel][]
555
+ - enh(rust) support function invoke and `impl` (#3078) [Josh Goebel][]
556
+ - chore(properties) disable auto-detection #3102 [Josh Goebel][]
557
+ - fix(properties) fix incorrect handling of non-alphanumeric keys #3102 [Egor Rogov][]
558
+ - enh(java) support functions with nested template types (#2641) [Josh Goebel][]
559
+ - enh(java) highlight types and literals separate from keywords (#3074) [Josh Goebel][]
560
+ - enh(shell) add alias ShellSession [Ryan Mulligan][]
561
+ - enh(shell) consider one space after prompt as part of prompt [Ryan Mulligan][]
562
+ - fix(nginx) fix bug with $ and @ variables [Josh Goebel][]
563
+ - enh(nginx) improving highlighting of some sections [Josh Goebel][]
564
+ - fix(vim) variable names may not be zero length [Josh Goebel][]
565
+ - enh(sqf) Updated keywords to Arma 3 v2.02 (#3084) [R3voA3][]
566
+ - enh(sqf) Refactored function regex to match CBA component func naming scheme (#3181) [JonBons][]
567
+ - enh(nim) highlight types properly (not as built-ins) [Josh Goebel][]
568
+ - (chore) throttle deprecation messages (#3092) [Mihkel Eidast][]
569
+ - enh(c) Update keyword list for C11/C18 (#3010) [Josh Goebel][]
570
+ - enh(parser) highlight object properties (#3072) [Josh Goebel][]
571
+ - enh(javascript/typescript) highlight object properties (#3072) [Josh Goebel][]
572
+ - enh(haskell) add support for BinaryLiterals (#3150) [Martijn Bastiaan][]
573
+ - enh(haskell) add support for NumericUnderscores (#3150) [Martijn Bastiaan][]
574
+ - enh(haskell) add support for HexFloatLiterals (#3150) [Martijn Bastiaan][]
575
+ - fix(c,cpp) allow declaring multiple functions and (for C++) parenthetical initializers (#3155) [Erik Demaine][]
576
+ - enh(rust) highlight raw byte string literals correctly (#3173) [Nico Abram][]
577
+ - fix(cpp) fix detection of common functions that are function templates (#3178) [Kris van Rens][]
578
+ - enh(cpp) add various keywords and commonly used types for hinting (#3178) [Kris van Rens][]
579
+ - enh(cpp) cleanup reserved keywords and type lists (#3178) [Kris van Rens][]
580
+
581
+ New Languages:
582
+
583
+ - Added 3rd party Glimmer grammar to SUPPORTED_LANGUAGES(#3123) [NullVoxPopuli][]
584
+ - Added Wren support [Josh Goebel][]
585
+ - Added NestedText support [Josh Goebel][]
586
+ - Added WebAssembly language grammar [Josh Goebel][]
587
+ - Added 3rd party Splunk search processing language grammar to SUPPORTED_LANGUAGES (#3090) [Wei Su][]
588
+ - Added 3rd party ZenScript grammar to SUPPORTED_LANGUAGES(#3106) [Jared Luboff][]
589
+ - Added 3rd party Papyrus grammar to SUPPORTED_LANGUAGES(#3125) [Mike Watling][]
590
+
591
+ Theme Improvements:
592
+
593
+ - Added all official Base16 themes (over 150 new themes) [Josh Goebel][]
594
+ - chore(themes) remove `builtin-name` CSS class (#3119) [Josh Goebel][]
595
+ - chore(theme) Update GitHub theme css to match GitHub's current styling (#1616) [Jan Pilzer][]
596
+ - chore(theme) Update Srcery theme css to match its Emacs implementation [Chen Bin][]
597
+
598
+ New Themes:
599
+
600
+ - DeviBeans Dark by [Farzad Sadeghi][]
601
+ - GitHub Dark and GitHub Dark Dimmed [Jan Pilzer][]
602
+
603
+ Dev Improvements:
604
+
605
+ - (chore) greatly improve match scope visualization in dev tool (#3126) [NullVoxPopuli][]
606
+ - (fix) CSS used for devtool needed an adjustment to fix too wide of content (#3133) [NullVoxPopuli][]
607
+
608
+ [Farzad Sadeghi]: https://github.com/terminaldweller
609
+ [Martijn Bastiaan]: https://github.com/martijnbastiaan
610
+ [Bradley Mackey]: https://github.com/bradleymackey
611
+ [Dylan McBean]: https://github.com/DylanMcBean
612
+ [Josh Goebel]: https://github.com/joshgoebel
613
+ [Ryan Mulligan]: https://github.com/ryantm
614
+ [R3voA3]: https://github.com/R3voA3
615
+ [JonBons]: https://github.com/JonBons
616
+ [Wei Su]: https://github.com/swsoyee
617
+ [Jared Luboff]: https://github.com/jaredlll08
618
+ [NullVoxPopuli]: https://github.com/NullVoxPopuli
619
+ [Mike Watling]: https://github.com/Pickysaurus
620
+ [Nico Abram]: https://github.com/nico-abram
621
+ [James Edington]: http://www.ishygddt.xyz/
622
+ [Jan Pilzer]: https://github.com/Hirse
623
+ [Kris van Rens]: https://github.com/krisvanrens
624
+
625
+
626
+ ## Version 10.7.1
627
+
628
+ - fix(parser) Resolves issues with TypeScript types [Josh Goebel][]
629
+
630
+ ### Version 10.7.0
631
+
632
+ Parser:
633
+
634
+ - keywords now have a maximum # of times they provide relevance (#3129) [Josh Goebel][]
635
+ - enh(api) add `unregisterLanguage` method (#3009) [Antoine du Hamel][]
636
+ - enh: Make alias registration case insensitive (#3026) [David Ostrovsky][]
637
+ - fix(parser) `highlightAll()` now works if the library is lazy loaded [Josh Goebel][]
638
+
639
+ New Languages:
640
+
641
+ - Added 3rd party RiScript grammar to SUPPORTED_LANGUAGES (#2988) [John C][]
642
+ - Added 3rd party HLSL grammar to SUPPORTED_LANGUAGES (#3002) [Stef Levesque][]
643
+ - Added 3rd party Q# grammar to SUPPORTED_LANGUAGES(#3006) [Vyron Vasileiadis][]
644
+
645
+ Language grammar improvements:
646
+
647
+ - enh(js/ts) class references (CamelCase) are highlighted (#3169) [Josh Goebel][]
648
+ - enh(js/ts) constants (ALL_CAPS) are highlighted (#3169) [Josh Goebel][]
649
+ - enh(js/ts) highlights function invokation (#3169) [Josh Goebel][]
650
+ - enh(js/ts) functions assigned to variables are now highlighted `title.function` (#3169) [Josh Goebel][]
651
+ - enh(parser) smarter detection of comments (#2827) [Josh Goebel][]
652
+ - fix(python) allow keywords immediately following numbers (#2985) [Josh Goebel][]
653
+ - fix(xml) char immediately following tag close mis-highlighted (#3044) [Josh Goebel][]
654
+ - fix(ruby) fix `defined?()` mis-highlighted as `def` (#3025) [Josh Goebel][]
655
+ - fix(c) comments after `#include <str>` blocks (#3041) [Josh Goebel][]
656
+ - fix(cpp) comments after `#include <str>` blocks (#3041) [Josh Goebel][]
657
+ - enh(cpp) Highlight all function dispatches (#3005) [Josh Goebel][]
658
+ - enh(python) support type hints and better type support (#2972) [Josh Goebel][]
659
+ - enh(gml) Add additional GML 2.3 keywords (#2984) [xDGameStudios][]
660
+ - fix(cpp) constructor support for initializers (#3001) [Josh Goebel][]
661
+ - enh(php) Add `trait` to class-like naming patterns (#2997) [Ayesh][]
662
+ - enh(php) Add `Stringable`, `UnhandledMatchError`, and `WeakMap` classes/interfaces (#2997) [Ayesh][]
663
+ - enh(php) Add `mixed` to list of keywords (#2997) [Ayesh][]
664
+ - enh(php) Add support binary, octal, hex and scientific numerals with underscore separator support (#2997) [Ayesh][]
665
+ - enh(php) Add support for Enums (#3004) [Ayesh][]
666
+ - enh(ecmascript) Add built-in types [Vaibhav Chanana][]
667
+ - enh(kotlin) Add `kts` as an alias for Kotlin (#3021) [Vaibhav Chanana][]
668
+ - enh(css) Add `font-smoothing` to attributes list for CSS (#3027) [AndyKIron][]
669
+ - fix(python) Highlight `print` and `exec` as a builtin (#1468) [Samuel Colvin][]
670
+ - fix(csharp) Fix unit being highlighted instead of uint (#3046) [Spacehamster][]
671
+ - enh(swift) add async/await keywords (#3048) [Bradley Mackey][]
672
+
673
+ Deprecations:
674
+
675
+ - `highlight(languageName, code, ignoreIllegals, continuation)` deprecated as of 10.7
676
+ - Please use the newer API which takes `code` and then accepts options as an object
677
+ - IE: `highlight(code, {language, ignoreIllegals})`
678
+ - `continuation` is for internal use only and no longer supported
679
+ - `highlightBlock(el)` deprecated as of 10.7.
680
+ - Please use `highlightElement(el)` instead.
681
+ - Plugin callbacks renamed `before/after:highlightBlock` => `before/after:highlightElement`
682
+ - Plugin callback now takes `el` vs `block` attribute
683
+ - The old API and callbacks will be supported until v12.
684
+
685
+
686
+ [Stef Levesque]: https://github.com/stef-levesque
687
+ [Josh Goebel]: https://github.com/joshgoebel
688
+ [John Cheung]: https://github.com/Real-John-Cheung
689
+ [xDGameStudios]: https://github.com/xDGameStudios
690
+ [Ayesh]: https://github.com/Ayesh
691
+ [Vyron Vasileiadis]: https://github.com/fedonman
692
+ [Antoine du Hamel]: https://github.com/aduh95
693
+ [Vaibhav Chanana]: https://github.com/il3ven
694
+ [David Ostrovsky]: https://github.com/davido
695
+ [AndyKIron]: https://github.com/AndyKIron
696
+ [Samuel Colvin]: https://github.com/samuelcolvin
697
+
698
+ ## Version 10.6.0
699
+
700
+ New Languages:
701
+
702
+ - Added 3rd party Laravel Blade grammar to SUPPORTED_LANGUAGES (#2944) [Michael Newton][]
703
+
704
+ Language grammar improvements:
705
+
706
+ - enh(scala) fix triple quoted strings (#2987) [Josh Goebel][]
707
+ - enh(perl) Much improved regex detection (#2960) [Josh Goebel][]
708
+ - enh(swift) Improved highlighting for operator and precedencegroup declarations. (#2938) [Steven Van Impe][]
709
+ - fix(xml) Support single-character namespaces. (#2957) [Jan Pilzer][]
710
+ - enh(ruby) Support for character literals (#2950) [Vaibhav Chanana][]
711
+ - enh(powershell) Add three VALID_VERBS and update the reference link (#2981) [davidhcefx][]
712
+ - fix(php) Highlighting of anonymous functions without {} block [Vaibhav Chanana][]
713
+
714
+ Grammar Deprecations:
715
+
716
+ - Deprecate `c-like`, though you should not be using it directly anyways.
717
+ - will be removed in v11.
718
+ - `c` and `cpp` are now wholly unique grammars that will diverge over time
719
+
720
+ Parser:
721
+
722
+ - new simpler `highlightAll()` API (#2962) [Josh Goebel][]
723
+ - this should be a drop-in replacement for both `initHighlighting()` and `initHighlightingOnLoad()`
724
+ - note: it does not prevent itself from being called multiple times (as the previous API did)
725
+ - `beginKeyword` no longer bestows double relevance (#2953) [Josh Goebel][]
726
+ - allow `keywords` to be an array of strings [Josh Goebel][]
727
+ - add `modes.MATCH_NOTHING_RE` that will never match
728
+ - This can be used with `end` to hold a mode open (it must then be ended with `endsParent` in one of it's children modes) [Josh Goebel][]
729
+
730
+ Deprecations:
731
+
732
+ - `initHighlighting()` and `initHighlightingOnLoad()` deprecated.
733
+ - Please use the new `highlightAll()` API instead.
734
+ - Deprecated as of 10.6.
735
+ - These will both be aliases to `highlightAll` in v11.
736
+
737
+ [Michael Newton]: https://github.com/miken32
738
+ [Steven Van Impe]: https://github.com/svanimpe/
739
+ [Josh Goebel]: https://github.com/joshgoebel
740
+ [Vaibhav Chanana]: https://github.com/il3ven
741
+ [davidhcefx]: https://github.com/davidhcefx
742
+ [Jan Pilzer]: https://github.com/Hirse
743
+
744
+
745
+ ## Version 10.5.0
746
+
747
+ Build:
748
+
749
+ - Add Subresource Integrity digest lists to `cdn-assets` [Josh Goebel][]
750
+ - R and VB.net grammars now ship in our default build (`:common`) [Josh Goebel][]
751
+
752
+ Parser:
753
+
754
+ - add `match` as sugar for simple `begin` only matches (#2834) [Josh Goebel][]
755
+ - allow `illegal` to also be an array of regex (#2834) [Josh Goebel][]
756
+ - add `compilerExtensions` allows grammers to influence mode compilation (#2834) [Josh Goebel][]
757
+ - some internal pieces are now simple compiler extensions
758
+
759
+ New Languages:
760
+
761
+ - Added 3rd party Red & Rebol grammar to SUPPORTED_LANGUAGES (#2872) [Oldes Huhuman][]
762
+
763
+ Language grammar improvements:
764
+
765
+ - enh: CSS grammars now share common foundation, keywords, etc. (#2937) [Josh Goebel][]
766
+ - enh(css): many consistency improvements
767
+ - enh(scss): many consistency improvements
768
+ - enh(stylus): many consistency improvements
769
+ - enh(less): many consistency improvements
770
+ - enh(cpp): Support C++ pack expansion in function arguments [Martin Dørum][]
771
+ - enh(makefile): Add `make` as an alias (#2883) [tripleee][]
772
+ - enh(swift) Improved grammar for strings (#2819) [Steven Van Impe][]
773
+ - enh(swift) Grammar improvements (#2908) [Steven Van Impe][]
774
+ - New grammar for keywords and built-ins
775
+ - Added support for operator highlighting
776
+ - New grammar for attributes
777
+ - Added support for quoted identifiers, implicit parameters, and property wrapper projections
778
+ - Support for more complex expressions in string interpolation
779
+ - enh(swift) Improved highlighting for types and generic arguments (#2920) [Steven Van Impe][]
780
+ - enh(swift) Improved highlighting for functions, initializers, and subscripts (#2930) [Steven Van Impe][]
781
+ - fix(http) avoid recursive sublanguage and tighten rules (#2893) [Josh Goebel][]
782
+ - fix(asciidoc): Handle section titles level 5 (#2868) [Vaibhav Chanana][]
783
+ - fix(asciidoc): Support unconstrained emphasis syntax (#2869) [Guillaume Grossetie][]
784
+ - enh(scheme) Allow `[]` for argument lists (#2913) [Josh Goebel][]
785
+ - enh(vb) Large rework of VB.net grammar (#2808) [Jan Pilzer][]
786
+ - Adds support for Date data types, see (#2775)
787
+ - Adds support for `REM` comments and fixes `'''` doctags (#2875) (#2851)
788
+ - Custom number mode to support VB.net specific number flags
789
+ - Hex (&H), Oct (&O), and binary (&B) prefixes
790
+ - Separating digits with underscores: 90_946
791
+ - Type suffixes: 123UI (unsigned integer)
792
+ - Improves directives detection and adds support for `Enable`, `Disable`, and `Then` keywords
793
+ - Adds more markup tests
794
+ - fix(javascript) Empty block-comments break highlighting (#2896) [Jan Pilzer][]
795
+ - enh(dart) Fix empty block-comments from breaking highlighting (#2898) [Jan Pilzer][]
796
+ - enh(dart) Fix empty doc-comment eating next line [Jan Pilzer][]
797
+ - enh(asciidoc) Adds support for unconstrained bold syntax (#2869) [Guillaume Grossetie][]
798
+ - enh(c-like) Incorrect highlighting for interger suffix (#2919) [Vaibhav Chanana][]
799
+ - enh(properties) Correctly handle trailing backslash (#2922) [Vaibhav Chanana][]
800
+
801
+ Recent Deprecations:
802
+
803
+ - HTML "merging" is deprecated. (#2873) [Josh Goebel][]
804
+ - HTML inside `<pre>` blocks will no longer be magically merged back into the
805
+ highlighted code's HTML result - it will instead be silently removed.
806
+ - Consider [using a plugin][htmlPlugin] if you truly need this functionality
807
+ - Deprecated as of 10.5.0 - will be removed in v11.
808
+ - `tabReplace` option deprecated. (#2873) [Josh Goebel][]
809
+ - **Consider:** Use the CSS `tab-size` property, or simply pre-process the
810
+ text yourself before rendering the initial HTML
811
+ - otherwise, [use a plugin][tabPlugin]
812
+ - Deprecated as of 10.5.0 - will be removed in v11.
813
+ - `useBR` option deprecated. (#2559) [Josh Goebel][]
814
+ - **Recommended:** You really should just use the HTML `<pre>` tag
815
+ - or perhaps try CSS `white-space: pre;`
816
+ - otherwise, [use a plugin][brPlugin]
817
+ - Deprecated as of 10.3.0 - will be removed in v11.
818
+ - `requireLanguage` API is deprecated, will be removed in v11.0.
819
+ - **Consider:** Use `getLanguage` (with custom error handling) or built-time dependencies.
820
+ - See [Library API](https://highlightjs.readthedocs.io/en/latest/api.html#requirelanguage-name) for more information.
821
+ - Deprecated as of 10.4.0 - will be removed in v11.
822
+
823
+ [htmlPlugin]: https://github.com/highlightjs/highlight.js/issues/2889
824
+ [tabPlugin]: https://github.com/highlightjs/highlight.js/issues/2874
825
+ [brPlugin]: https://github.com/highlightjs/highlight.js/issues/2559
826
+
827
+ [Martin Dørum]: https://github.com/mortie
828
+ [Jan Pilzer]: https://github.com/Hirse
829
+ [Oldes Huhuman]: https://github.com/Oldes
830
+ [Josh Goebel]: https://github.com/joshgoebel
831
+ [tripleee]: https://github.com/tripleee
832
+ [Steven Van Impe]: https://github.com/svanimpe/
833
+ [Vaibhav Chanana]: https://github.com/il3ven
834
+ [Guillaume Grossetie]: https://github.com/mogztter
835
+
836
+
837
+ ## Version 10.4.1 (tentative)
838
+
839
+ Security
840
+
841
+ - (fix) Exponential backtracking fixes for: [Josh Goebel][]
842
+ - cpp
843
+ - handlebars
844
+ - gams
845
+ - perl
846
+ - jboss-cli
847
+ - r
848
+ - erlang-repl
849
+ - powershell
850
+ - routeros
851
+ - (fix) Polynomial backtracking fixes for: [Josh Goebel][]
852
+ - asciidoc
853
+ - reasonml
854
+ - latex
855
+ - kotlin
856
+ - gcode
857
+ - d
858
+ - aspectj
859
+ - moonscript
860
+ - coffeescript/livescript
861
+ - csharp
862
+ - scilab
863
+ - crystal
864
+ - elixir
865
+ - basic
866
+ - ebnf
867
+ - ruby
868
+ - fortran/irpf90
869
+ - livecodeserver
870
+ - yaml
871
+ - x86asm
872
+ - dsconfig
873
+ - markdown
874
+ - ruleslanguage
875
+ - xquery
876
+ - sqf
877
+
878
+ Very grateful to [Michael Schmidt][] for all the help.
879
+
880
+ [Michael Schmidt]: https://github.com/RunDevelopment
881
+ [Josh Goebel]: https://github.com/joshgoebel
882
+
883
+
884
+ ## Version 10.4.0
885
+
886
+ A largish release with many improvements and fixes from quite a few different contributors. Enjoy!
887
+
888
+ Deprecations:
889
+
890
+ - (chore) `requireLanguage` is deprecated.
891
+ - Prefer `getLanguage` (with custom error handling) or built-time dependencies.
892
+ - See [Library API](https://highlightjs.readthedocs.io/en/latest/api.html#requirelanguage-name) for more information.
893
+
894
+ Parser:
895
+
896
+ - enh(parser) use negative look-ahead for `beginKeywords` support (#2813) [Josh Goebel][]
897
+ - enh(grammars) allow `classNameAliases` for more complex grammars [Josh Goebel][]
898
+ - fix(vue): Language name now appears in CSS class (#2807) [Michael Rush][]
899
+ - (chore) Clean up all regexs to be UTF-8 compliant/ready (#2759) [Josh Goebel][]
900
+ - enh(grammars) allow `classNameAliases` for more complex grammars [Josh Goebel][]
901
+
902
+ New Languages:
903
+
904
+ - Added 3rd party Chapel grammar to SUPPORTED_LANGUAGES (#2806) [Brad Chamberlain][]
905
+ - Added BBCode grammar to SUPPORTED_LANGUAGES (#2867) [Paul Reid][]
906
+ - enh(javascript) Added `node-repl` for Node.js REPL sessions (#2792) [Marat Nagayev][]
907
+
908
+ Language Improvements:
909
+
910
+ - enh(shell) Recognize prompts which contain tilde `~` (#2859) [Guillaume Grossetie][]
911
+ - enh(shell) Add support for multiline commands with line continuation `\` (#2861) [Guillaume Grossetie][]
912
+ - enh(autodetect) Over 30+ improvements to auto-detect (#2745) [Josh Goebel][]
913
+ - 4-5% improvement in auto-detect against large sample set
914
+ - properties, angelscript, lsl, javascript, n1ql, ocaml, ruby
915
+ - protobuf, hy, scheme, crystal, yaml, r, vbscript, groovy
916
+ - python, java, php, lisp, matlab, clojure, csharp, css
917
+ - fix(r) fixed keywords not properly spaced (#2852) [Josh Goebel][]
918
+ - fix(javascript) fix potential catastrophic backtracking (#2852) [Josh Goebel][]
919
+ - fix(livescript) fix potential catastrophic backtracking (#2852) [Josh Goebel][]
920
+ - bug(xml) XML grammar was far too imprecise/fuzzy [Josh Goebel][]
921
+ - enh(xml) Improve precision to prevent false auto-detect positives [Josh Goebel][]
922
+ - fix(js/ts) Prevent for/while/if/switch from falsly matching as functions (#2803) [Josh Goebel][]
923
+ - enh(julia) Update keyword lists for Julia 1.x (#2781) [Fredrik Ekre][]
924
+ - enh(python) Match numeric literals per the language reference [Richard Gibson][]
925
+ - enh(ruby) Match numeric literals per language documentation [Richard Gibson][]
926
+ - enh(javascript) Match numeric literals per ECMA-262 spec [Richard Gibson][]
927
+ - enh(java) Match numeric literals per Java Language Specification [Richard Gibson][]
928
+ - enh(swift) Match numeric literals per language reference [Richard Gibson][]
929
+ - enh(php) highlight variables (#2785) [Taufik Nurrohman][]
930
+ - fix(python) Handle comments on decorators (#2804) [Jonathan Sharpe][]
931
+ - enh(diff) improve highlighting of diff for git patches [Florian Bezdeka][]
932
+ - fix(llvm) lots of small improvements and fixes (#2830) [Josh Goebel][]
933
+ - enh(mathematica) Rework entire implementation [Patrick Scheibe][]
934
+ - Correct matching of the many variations of Mathematica's numbers
935
+ - Matching of named-characters aka special symbols like `\[Gamma]`
936
+ - Updated list of version 12.1 built-in symbols
937
+ - Matching of patterns, slots, message-names and braces
938
+ - fix(swift) Handle keywords that start with `#` [Marcus Ortiz][]
939
+ - enh(swift) Match `some` keyword [Marcus Ortiz][]
940
+ - enh(swift) Match `@main` attribute [Marcus Ortiz][]
941
+
942
+ Dev Improvements:
943
+
944
+ - chore(dev) add theme picker to the tools/developer tool (#2770) [Josh Goebel][]
945
+ - fix(dev) the Vue.js plugin no longer throws an exception when hljs is not in the global namespace [Kyle Brown][]
946
+
947
+ New themes:
948
+
949
+ - *StackOverflow Dark* by [Jan Pilzer][]
950
+ - *StackOverflow Light* by [Jan Pilzer][]
951
+
952
+ [Guillaume Grossetie]: https://github.com/mogztter
953
+ [Brad Chamberlain]: https://github.com/bradcray
954
+ [Marat Nagayev]: https://github.com/nagayev
955
+ [Fredrik Ekre]: https://github.com/fredrikekre
956
+ [Richard Gibson]: https://github.com/gibson042
957
+ [Josh Goebel]: https://github.com/joshgoebel
958
+ [Taufik Nurrohman]: https://github.com/taufik-nurrohman
959
+ [Jan Pilzer]: https://github.com/Hirse
960
+ [Jonathan Sharpe]: https://github.com/textbook
961
+ [Michael Rush]: https://github.com/rushimusmaximus
962
+ [Patrick Scheibe]: https://github.com/halirutan
963
+ [Kyle Brown]: https://github.com/kylebrown9
964
+ [Marcus Ortiz]: https://github.com/mportiz08
965
+ [Paul Reid]: https://github.com/RedGuy12
966
+
967
+
968
+ ## Version 10.3.1
969
+
970
+ Prior version let some look-behind regex sneak in, which does not work
971
+ yet on Safari. This release removes those incompatible regexes.
972
+
973
+ Fix:
974
+
975
+ - fix(Safari) Remove currently unsupported look-behind regex ([fix][187e7cfc]) [Josh Goebel][]
976
+
977
+ [Josh Goebel]: https://github.com/joshgoebel
978
+ [187e7cfc]: https://github.com/highlightjs/highlight.js/commit/187e7cfcb06277ce13b5f35fb6c37ab7a7b46de9
979
+
980
+
981
+ ## Version 10.3.0
982
+
983
+ Language Improvements:
984
+
985
+ - enh(latex) Complete ground up rewrite of LaTex grammar [schtandard][]
986
+ - fix(cpp) implement backslash line continuation in comments (#2757) [Konrad Rudolph][]
987
+ - fix(cpp) improve parsing issues with templates (#2752) [Josh Goebel][]
988
+ - enh(cpp) add support for `enum (struct|class)` and `union` (#2752) [Josh Goebel][]
989
+ - fix(js/ts) Fix nesting of `{}` inside template literals SUBST expression (#2748) [Josh Goebel][]
990
+ - enh(js/ts) Highlight class methods as functions (#2727) [Josh Goebel][]
991
+ - fix(js/ts) `constructor` is now highlighted as a function title (not keyword) (#2727) [Josh Goebel][]
992
+ - fix(c-like) preprocessor directives not detected after else (#2738) [Josh Goebel][]
993
+ - enh(javascript) allow `#` for private class fields (#2701) [Chris Krycho][]
994
+ - fix(js) prevent runaway regex (#2746) [Josh Goebel][]
995
+ - fix(bash) enh(bash) allow nested params (#2731) [Josh Goebel][]
996
+ - fix(python) Fix highlighting of keywords and strings (#2713, #2715) [Konrad Rudolph][]
997
+ - fix(fsharp) Prevent `(*)` from being detected as a multi-line comment [Josh Goebel][]
998
+ - enh(bash) add support for heredocs (#2684) [Josh Goebel][]
999
+ - enh(r) major overhaul of the R language grammar (and fix a few bugs) (#2680) [Konrad Rudolph][]
1000
+ - enh(csharp) Add all C# 9 keywords, and other missing keywords (#2679) [David Pine][]
1001
+ - enh(objectivec) Add `objective-c++` and `obj-c++` aliases for Objective-C [Josh Goebel][]
1002
+ - enh(java) Add support for `record` (#2685) [Josh Goebel][]
1003
+ - fix(csharp) prevent modifier keywords wrongly flagged as `title` (#2683) [Josh Goebel][]
1004
+ - enh(axapta) Update keyword list for Axapta (X++) (#2686) [Ryan Jonasson][]
1005
+ - fix(fortran) FORTRAN 77-style comments (#2677) [Philipp Engel][]
1006
+ - fix(javascript) Comments inside params should be highlighted (#2702) [Josh Goebel][]
1007
+ - fix(scala) Comments inside class header should be highlighted (#1559) [Josh Goebel][]
1008
+ - fix(c-like) Correctly highlight modifiers (`final`) in class declaration (#2696) [Josh Goebel][]
1009
+ - enh(angelscript) Improve heredocs, numbers, metadata blocks (#2724) [Melissa Geels][]
1010
+ - enh(javascript) Implement Numeric Separators (#2617) [Antoine du Hamel][]
1011
+ - enh(typescript) TypeScript also gains support for numeric separators (#2617) [Antoine du Hamel][]
1012
+ - enh(php) Add support for PHP 8 `match` keyword and add `php8` as an alias (#2733) [Ayesh Karunaratne][]
1013
+ - fix(handlebars) Support if else keyboards (#2659) [Tom Wallace][]
1014
+
1015
+ Deprecations:
1016
+
1017
+ - `useBR` option deprecated and will be removed in v11.0. (#2559) [Josh Goebel][]
1018
+
1019
+ [Chris Krycho]: https://github.com/chriskrycho
1020
+ [David Pine]: https://github.com/IEvangelist
1021
+
1022
+
1023
+ [Ryan Jonasson]: https://github.com/ryanjonasson
1024
+ [Philipp Engel]: https://github.com/interkosmos
1025
+ [Konrad Rudolph]: https://github.com/klmr
1026
+ [Melissa Geels]: https://github.com/codecat
1027
+ [Antoine du Hamel]: https://github.com/aduh95
1028
+ [Ayesh Karunaratne]: https://github.com/Ayesh
1029
+ [Tom Wallace]: https://github.com/thomasmichaelwallace
1030
+ [schtandard]: https://github.com/schtandard
1031
+
1032
+
1033
+ ## Version 10.2.1
1034
+
1035
+ Parser Engine:
1036
+
1037
+ - fix(parser) complete fix for resuming matches from same index (#2678) [Josh Goebel][]
1038
+
1039
+ [Josh Goebel]: https://github.com/yyyc514
1040
+
1041
+
1042
+ ## Version 10.2.0
1043
+
1044
+ Parser Engine:
1045
+
1046
+ - (fix) When ignoring a potential match highlighting can terminate early (#2649) [Josh Goebel][]
1047
+
1048
+
1049
+ New themes:
1050
+
1051
+ - *Gradient Light* by [Samia Ali]()
1052
+
1053
+ Deprecations:
1054
+
1055
+ - `fixMarkup` is now deprecated and will be removed in v11.0. (#2534) [Josh Goebel][]
1056
+
1057
+ Big picture:
1058
+
1059
+ - Add simple Vue plugin for basic use cases (#2544) [Josh Goebel][]
1060
+
1061
+ Language Improvements:
1062
+
1063
+ - fix(bash) Fewer false positives for keywords in arguments (#2669) [sirosen][]
1064
+ - fix(js) Prevent long series of /////// from causing freezes (#2656) [Josh Goebel][]
1065
+ - enh(csharp) Add `init` and `record` keywords for C# 9.0 (#2660) [Youssef Victor][]
1066
+ - enh(matlab) Add new R2019b `arguments` keyword and fix `enumeration` keyword (#2619) [Andrew Janke][]
1067
+ - fix(kotlin) Remove very old keywords and update example code (#2623) [kageru][]
1068
+ - fix(night) Prevent object prototypes method values from being returned in `getLanguage` (#2636) [night][]
1069
+ - enh(java) Add support for `enum`, which will identify as a `class` now (#2643) [ezksd][]
1070
+ - enh(nsis) Add support for NSIS 3.06 commands (#2653) [idleberg][]
1071
+ - enh(php) detect newer more flexible HEREdoc syntax (#2658) [eytienne][]
1072
+
1073
+ [Youssef Victor]: https://github.com/Youssef1313
1074
+ [Josh Goebel]: https://github.com/joshgoebel
1075
+ [Andrew Janke]: https://github.com/apjanke
1076
+ [Samia Ali]: https://github.com/samiaab1990
1077
+ [kageru]: https://github.com/kageru
1078
+ [night]: https://github.com/night
1079
+ [ezksd]: https://github.com/ezksd
1080
+ [idleberg]: https://github.com/idleberg
1081
+ [eytienne]: https://github.com/eytienne
1082
+ [sirosen]: https://github.com/sirosen
1083
+
1084
+ ## Version 10.1.1
1085
+
1086
+ Fixes:
1087
+
1088
+ - Resolve issue on Node 6 due to dangling comma (#2608) [Edwin Hoogerbeets][]
1089
+ - Resolve `index.d.ts is not a module` error (#2603) [Josh Goebel][]
1090
+
1091
+ [Josh Goebel]: https://github.com/joshgoebel
1092
+ [Edwin Hoogerbeets]: https://github.com/ehoogerbeets
1093
+
1094
+
1095
+ ## Version 10.1.0
1096
+
1097
+ New themes:
1098
+
1099
+ - *NNFX* and *NNFX-dark* by [Jim Mason][]
1100
+ - *lioshi* by [lioshi][]
1101
+
1102
+ Parser Engine:
1103
+
1104
+ - (parser) Now escapes quotes in text content when escaping HTML (#2564) [Josh Goebel][]
1105
+ - (parser) Adds `keywords.$pattern` key to grammar definitions (#2519) [Josh Goebel][]
1106
+ - (parser) Adds SHEBANG utility mode [Josh Goebel][]
1107
+ - (parser) Adds `registerAliases` method (#2540) [Taufik Nurrohman][]
1108
+ - (enh) Added `on:begin` callback for modes (#2261) [Josh Goebel][]
1109
+ - (enh) Added `on:end` callback for modes (#2261) [Josh Goebel][]
1110
+ - (enh) Added ability to programatically ignore begin and end matches (#2261) [Josh Goebel][]
1111
+ - (enh) Added `END_SAME_AS_BEGIN` mode to replace `endSameAsBegin` parser attribute (#2261) [Josh Goebel][]
1112
+ - (fix) `fixMarkup` would rarely destroy markup when `useBR` was enabled (#2532) [Josh Goebel][]
1113
+
1114
+ Deprecations:
1115
+
1116
+ - `htmlbars` grammar is now deprecated. Use `handlebars` instead. (#2344) [Nils Knappmeier][]
1117
+ - when using `highlightBlock` `result.re` deprecated. Use `result.relevance` instead. (#2552) [Josh Goebel][]
1118
+ - ditto for `result.second_best.re` => `result.second_best.relevance` (#2552)
1119
+ - `lexemes` is now deprecated in favor of `keywords.$pattern` key (#2519) [Josh Goebel][]
1120
+ - `endSameAsBegin` is now deprecated. (#2261) [Josh Goebel][]
1121
+
1122
+ Language Improvements:
1123
+
1124
+ - fix(groovy) strings are not allowed inside ternary clauses (#2217) [Josh Goebel][]
1125
+ - fix(typescript) add `readonly` keyword (#2562) [Martin (Lhoerion)][]
1126
+ - fix(javascript) fix regex inside parens after a non-regex (#2530) [Josh Goebel][]
1127
+ - enh(typescript) use identifier to match potential keywords, preventing false positivites (#2519) [Josh Goebel][]
1128
+ - enh(javascript) use identifier to match potential keywords, preventing false positivites (#2519) [Josh Goebel][]
1129
+ - [enh] Add `OPTIMIZE:` and `HACK:` to the labels highlighted inside comments [Josh Goebel][]
1130
+ - enh(typescript/javascript/coffeescript/livescript) derive ECMAscript keywords from a common foudation (#2518) [Josh Goebel][]
1131
+ - enh(typescript) add setInterval, setTimeout, clearInterval, clearTimeout (#2514) [Josh Goebel][]
1132
+ - enh(javascript) add setInterval, setTimeout, clearInterval, clearTimeout (#2514) [Vania Kucher][]
1133
+ - enh(cpp) add `pair`, `make_pair`, `priority_queue` as built-ins (#2538) [Hankun Lin][]
1134
+ - enh(cpp) recognize `priority_queue` `pair` as cpp containers (#2541) [Hankun Lin][]
1135
+ - fix(javascript) prevent `set` keyword conflicting with setTimeout, etc. (#2514) [Vania Kucher][]
1136
+ - fix(cpp) Fix highlighting of unterminated raw strings (#2261) [David Benjamin][]
1137
+ - fix(javascript) `=>` function with nested `()` in params now works (#2502) [Josh Goebel][]
1138
+ - fix(typescript) `=>` function with nested `()` in params now works (#2502) [Josh Goebel][]
1139
+ - fix(yaml) Fix tags to include non-word characters (#2486) [Peter Plantinga][]
1140
+ - fix(swift) `@objcMembers` was being partially highlighted (#2543) [Nick Randall][]
1141
+ - enh(dart) Add `late` and `required` keywords, the `Never` built-in type, and nullable built-in types (#2550) [Sam Rawlins][]
1142
+ - enh(erlang) Add underscore separators to numeric literals (#2554) [Sergey Prokhorov][]
1143
+ - enh(handlebars) Support for sub-expressions, path-expressions, hashes, block-parameters and literals (#2344) [Nils Knappmeier][]
1144
+ - enh(protobuf) Support multiline comments (#2597) [Pavel Evstigneev][]
1145
+ - fix(toml) Improve key parsing (#2595) [Antoine du Hamel][]
1146
+
1147
+ [Josh Goebel]: https://github.com/joshgoebel
1148
+ [Peter Plantinga]: https://github.com/pplantinga
1149
+ [David Benjamin]: https://github.com/davidben
1150
+ [Vania Kucher]: https://github.com/qWici
1151
+ [Hankun Lin]: https://github.com/Linhk1606
1152
+ [Nick Randall]: https://github.com/nicked
1153
+ [Sam Rawlins]: https://github.com/srawlins
1154
+ [Sergey Prokhorov]: https://github.com/seriyps
1155
+ [Nils Knappmeier]: https://github.com/nknapp
1156
+ [Martin (Lhoerion)]: https://github.com/Lhoerion
1157
+ [Jim Mason]: https://github.com/RocketMan
1158
+ [lioshi]: https://github.com/lioshi
1159
+ [Pavel Evstigneev]: https://github.com/Paxa
1160
+ [Antoine du Hamel]: https://github.com/aduh95
1161
+
1162
+
1163
+ ## Version 10.0.2
1164
+
1165
+ Brower build:
1166
+
1167
+ - [Issue](https://github.com/highlightjs/highlight.js/issues/2505) (bug) Fix: Version 10 fails to load as CommonJS module. (#2511) [Josh Goebel][]
1168
+ - [Issue](https://github.com/highlightjs/highlight.js/issues/2505) (removal) AMD module loading support has been removed. (#2511) [Josh Goebel][]
1169
+
1170
+ Parser Engine Changes:
1171
+
1172
+ - [Issue](https://github.com/highlightjs/highlight.js/issues/2522) fix(parser) Fix freez issue with illegal 0 width matches (#2524) [Josh Goebel][]
1173
+
1174
+
1175
+ [Josh Goebel]: https://github.com/joshgoebel
1176
+
1177
+
1178
+ ## Version 10.0.1
1179
+
1180
+ Parser Engine Changes:
1181
+
1182
+ - (bug) Fix sublanguage with no relevance score (#2506) [Josh Goebel][]
1183
+
1184
+ [Josh Goebel]: https://github.com/joshgoebel
1185
+
1186
+
1187
+ ## Version 10.0.0
1188
+
1189
+ New languages:
1190
+
1191
+ - add(php-template) Explicit language to detect PHP templates (vs xml) [Josh Goebel][]
1192
+ - enh(python) Added `python-repl` for Python REPL sessions
1193
+ - add(never) Added 3rd party Never language support
1194
+
1195
+ New themes:
1196
+
1197
+ - *Srcery* by [Chen Bin][]
1198
+
1199
+ Parser Engine Changes:
1200
+
1201
+ - (bug) Fix `beginKeywords` to ignore . matches (#2434) [Josh Goebel][]
1202
+ - (enh) add `before:highlight` plugin API callback (#2395) [Josh Goebel][]
1203
+ - (enh) add `after:highlight` plugin API callback (#2395) [Josh Goebel][]
1204
+ - (enh) split out parse tree generation and HTML rendering concerns (#2404) [Josh Goebel][]
1205
+ - (enh) every language can have a `name` attribute now (#2400) [Josh Goebel][]
1206
+ - (enh) improve regular expression detect (less false-positives) (#2380) [Josh Goebel][]
1207
+ - (enh) make `noHighlightRe` and `languagePrefixRe` configurable (#2374) [Josh Goebel][]
1208
+
1209
+ Language Improvements:
1210
+
1211
+ - enh(python) Exclude parens from functions params (#2490) [Álvaro Mondéjar][]
1212
+ - enh(swift) Add `compactMap` to keywords as built_in (#2478) [Omid Golparvar][]
1213
+ - enh(nim) adds `func` keyword (#2468) [Adnan Yaqoob][]
1214
+ - enh(xml) deprecate ActionScript inside script tags (#2444) [Josh Goebel][]
1215
+ - fix(javascript) prevent get/set variables conflicting with keywords (#2440) [Josh Goebel][]
1216
+ - bug(clojure) Now highlights `defn-` properly (#2438) [Josh Goebel][]
1217
+ - enh(bash) default value is another variable (#2439) [Josh Goebel][]
1218
+ - enh(bash) string nested within string (#2439) [Josh Goebel][]
1219
+ - enh(bash) Add arithmetic expression support (#2439) [Josh Goebel][]
1220
+ - enh(clojure) Add support for global definitions name (#2347) [Alexandre Grison][]
1221
+ - enh(fortran) Support Fortran 77 style comments (#2416) [Josh Goebel][]
1222
+ - (csharp) add support for `@identifier` style identifiers (#2414) [Josh Goebel][]
1223
+ - fix(elixir) Support function names with a slash (#2406) [Josh Goebel][]
1224
+ - fix(javascript) comma is allowed in a "value container" (#2403) [Josh Goebel][]
1225
+ - enh(apache) add `deny` and `allow` keywords [Josh Goebel][]
1226
+ - enh(apache) highlight numeric attributes values [Josh Goebel][]
1227
+ - enh(apache) highlight IP addresses, ports, and strings in sections [Josh Goebel][]
1228
+ - enh(php) added more keywords and include `<?=` syntax to meta [Taufik Nurrohman][]
1229
+ - fix(protobuf) Fix `rpc` when followed by a block (#) [Josh Goebel][]
1230
+ - enh(zephir) almost complete rework of the zephir grammar (#2387) [Josh Goebel][]
1231
+ - (markdown) much improved code block support (#2382) [Josh Goebel][]
1232
+ - (markdown) improve bold/italic nesting (#2382) [Josh Goebel][]
1233
+ - enh(csharp) Support `where` keyword as class constraint (#2378) [Josh Goebel][]
1234
+ - enh(csharp) Allow reference path in class inheritance lists (#2378) [Josh Goebel][]
1235
+ - enh(csharp) Add generic modifiers (in, out) (#2378) [Josh Goebel][]
1236
+ - (fortran) enh(fortran) support intrinsic data types (#2379) [Josh Goebel][]
1237
+ - enh(java) annotations can include numbers (#2377) [Josh Goebel][]
1238
+ - enh(java) annotations can take params (#2377) [Josh Goebel][]
1239
+ - enh(java) allow annotations inside function call params (#2377) [Josh Goebel][]
1240
+ - enh(parser) pre/post-highlightBlock callbacks via plugin (#2285) [Josh Goebel][]
1241
+ - (fortran) Add Fortran 2018 keywords and coarray intrinsics (#2361) [Sam Miller][]
1242
+ - (delphi) highlight hexadecimal, octal, and binary numbers (#2370) [Robert Riebisch]()
1243
+ - enh(plaintext) added `text` and `txt` as alias (#2360) [Taufik Nurrohman][]
1244
+ - enh(powershell) added PowerShell v5.1/v7 default aliases as "built_in"s (#2423) [Sean Williams][]
1245
+ - enh(yaml) added support for timestamps (#2475) [Peter Plantinga][]
1246
+
1247
+ Developer Tools:
1248
+
1249
+ - added Dockerfile for optionally developing with a container
1250
+
1251
+ [Omid Golparvar]: https://github.com/omidgolparvar
1252
+ [Alexandre Grison]: https://github.com/agrison
1253
+ [Josh Goebel]: https://github.com/joshgoebel
1254
+ [Chen Bin]: https://github.com/redguardtoo
1255
+ [Sam Miller]: https://github.com/smillerc
1256
+ [Robert Riebisch]: https://github.com/bttrx
1257
+ [Taufik Nurrohman]: https://github.com/taufik-nurrohman
1258
+ [Josh Goebel]: https://github.com/joshgoebel
1259
+ [Sean Williams]: https://github.com/hmmwhatsthisdo
1260
+ [Adnan Yaqoob]: https://github.com/adnanyaqoobvirk
1261
+ [Álvaro Mondéjar]: https://github.com/mondeja
1262
+
1263
+
1264
+ ## Version 9.18.1
1265
+
1266
+ Grammar Improvements:
1267
+
1268
+ - bug(coffeescript) fix freezing bug due to badly behaved regex (#2376) [Josh Goebel][]
1269
+
1270
+ [Josh Goebel]: https://github.com/joshgoebel
1271
+
1272
+
1273
+ ## Version 9.18.0
1274
+
1275
+ New languages:
1276
+
1277
+ - none.
1278
+
1279
+ New themes:
1280
+
1281
+ - none.
1282
+
1283
+ Core Changes:
1284
+
1285
+ - none.
1286
+
1287
+ Language Improvements:
1288
+
1289
+ - (javascript) fix JSX self-closing tag issues (#2322) [Josh Goebel][]
1290
+ - (fortran) added `block` and `endblock` keywords (#2343) [Philipp Engel][]
1291
+ - (javascript) support jsx fragments (#2333) [Josh Goebel][]
1292
+ - (ini) support TOML arrays, clean up grammar (#2335) [Josh Goebel][]
1293
+ - (vbnet) add nameof operator to the keywords (#2329) [Youssef Victor][]
1294
+ - (stan) updated with improved coverage of language keywords and patterns. (#1829) [Jeffrey Arnold][]
1295
+ - enh(cpp) Detect namespaced function types (`A::typeName func(...)`) (#2332) [Josh Goebel][]
1296
+ - enh(cpp) Detect namespaced functions also (`A::functionName`) (#2332) [Josh Goebel][]
1297
+ - enh(cpp) Properly detect decltype(auto) (#2332) [Josh Goebel][]
1298
+ - enh(cpp) recognize primitive types (`int8_t`, etc.) as function types (#2332) [Josh Goebel][]
1299
+
1300
+ Developer Tools:
1301
+
1302
+ - feat(developer): add button to show parsed structure (#2345) [Nils Knappmeier][]
1303
+
1304
+ [Jeffrey Arnold]: https://github.com/jrnold
1305
+ [Josh Goebel]: https://github.com/joshgoebel
1306
+ [Philipp Engel]: https://github.com/interkosmos
1307
+ [Youssef Victor]: https://github.com/Youssef1313
1308
+ [Nils Knappmeier]: https://github.com/nknapp
1309
+
1310
+
1311
+ ## Version 9.17.1
1312
+
1313
+ Fixes:
1314
+
1315
+ - fix(parser): resolve IE 11 issue with Object.freeze() (#2319) [Josh Goebel][]
1316
+
1317
+ [Josh Goebel]: https://github.com/joshgoebel
1318
+
1319
+
1320
+ ## Version 9.17.0
1321
+
1322
+ New languages:
1323
+
1324
+ - none.
1325
+
1326
+ New themes:
1327
+
1328
+ - *Gradient Dark* by [Samia Ali][]
1329
+
1330
+ Core Improvements:
1331
+
1332
+ - chore(parser): switch from `createElementNS` to `createElement` (#2314) [Josh Goebel][]
1333
+ - enh(parser): add better error when a language requirement is missing (#2311) [Josh Goebel][]
1334
+ - fix(parser/docs): disallow `self` mode at the top-level of a language (#2294) [Josh Goebel][]
1335
+ - enh(parser) add safe & debug modes. Better error handling for crash conditions. (#2286) [Josh Goebel][]
1336
+ - fix(parser): Fix merger HTML attribute quoting (#2235) [Josh Goebel][]
1337
+ - fix(parser): Look-ahead regex now work for end matches also (#2237) [Josh Goebel][]
1338
+ - fix(parser): Better errors when a language is missing (#2236) [Josh Goebel][]
1339
+ - fix(parser): freeze built-in modes to prevent grammars altering them (#2271) [Josh Goebel][]
1340
+ - fix(themes): fix inconsistencies between some themes padding/spacing (#2300) [Josh Goebel][]
1341
+ - ehh(build) Add CI check for building a "use strict" safe rollup package from NPM builds (#2247) [Josh Goebel][]
1342
+ - fix(pkg): Prefix global addEventListener with window to be able to minify with closure compiler (#2305) [Kirill Saksin]()
1343
+
1344
+ Language Improvements:
1345
+
1346
+ - fix(sql): backslash is not used to escape in strings in standard SQL (#1748) [Mike Schall][]
1347
+ - enh(ebnf) add backticks as additional string variant (#2290) [Chris Marchesi][]
1348
+ - chore(javascript): add esm related extensions to aliases (#2298) [Rongjian Zhang][]
1349
+ - fix(kotlin): fix termination of """ string literals (#2295) [Josh Goebel][]
1350
+ - fix(mercury): don't change global STRING modes (#2271) [Josh Goebel][]
1351
+ - enh(xml) expand and improve document type highlighting (#2287) [w3suli][]
1352
+ - enh(ebnf) add underscore as allowed meta identifier character, and dot as terminator (#2281) [Chris Marchesi][]
1353
+ - fix(makefile) fix double relevance for assigns, improves auto-detection (#2278) [Josh Goebel][]
1354
+ - enh(xml) support for highlighting entities (#2260) [w3suli][]
1355
+ - enh(gml) fix naming of keyword class (consistency fix) (#2254) [Liam Nobel][]
1356
+ - enh(javascript): Add support for jsdoc comments (#2245) [Milutin Kristofic][]
1357
+ - fix(python) fix `if` getting confused as an f-string (#2200) [Josh Goebel][] and [Carl Baxter][]
1358
+ - enh(powershell) major overhaul, huge improvements (#2224)
1359
+ - enh(css) Improve @rule highlighting, including properties (#2241) [Josh Goebel][]
1360
+ - enh(css) Improve highlighting of numbers inside expr/func `calc(2px+3px)` (#2241)
1361
+ - enh(scss) Pull some of the CSS improvements back into SCSS (#2241)
1362
+ - fix(go): Fix escaped character literals (#2266) [David Benjamin][]
1363
+ - fix(objectivec): Fix various preprocessor highlighting issues (#2265) [David Benjamin][]
1364
+ - fix(objectivec): Handle multibyte character literals (#2268) [David Benjamin][]
1365
+ - enh(cpp): Add additional keywords (#2289) [Adrian Ostrowski][]
1366
+
1367
+ [Josh Goebel]: https://github.com/joshgoebel
1368
+ [Liam Nobel]: https://github.com/liamnobel
1369
+ [Carl Baxter]: https://github.com/cdbax
1370
+ [Milutin Kristofic]: https://github.com/milutin
1371
+ [w3suli]: https://github.com/w3suli
1372
+ [David Benjamin]: https://github.com/davidben
1373
+ [Chris Marchesi]: https://github.com/vancluever
1374
+ [Adrian Ostrowski]: https://github.com/aostrowski
1375
+ [Rongjian Zhang]: https://github.com/pd4d10
1376
+ [Mike Schall]: https://github.com/schallm
1377
+ [Kirill Saksin]: https://github.com/saksmt
1378
+ [Samia Ali]:https://github.com/samiaab1990
1379
+ [Erik Demaine]:https://github.com/edemaine
1380
+
1381
+
1382
+ ## Version 9.16.2
1383
+
1384
+ New languages:
1385
+ none.
1386
+
1387
+ New styles:
1388
+ none.
1389
+
1390
+ Improvements:
1391
+ - fix(arduino) Resolves issue with arduino.js not being "use strict" safe (#2247)
1392
+
1393
+
1394
+ ## Version 9.16.1
1395
+
1396
+ New languages:
1397
+ none.
1398
+
1399
+ New styles:
1400
+ - *Night Owl* by [Carl Baxter][]
1401
+
1402
+ Improvements:
1403
+ - Add CLI tool to quickly check for relevance conflicts [Mark Ellis][] (#1554)
1404
+ - enhance(twig) update list of filter and tags (#2090)
1405
+ - fix(crystal): correctly highlight `!~` method definition (#2222)
1406
+ - fix dropping characters if we choke up on a 0-width match (#2219)
1407
+ - (accesslog) improve accesslog relevancy scoring (#2172)
1408
+ - fix(shell): fix parsing of prompts with forward slash (#2218)
1409
+ - improve parser to properly support look-ahead regex in begin matchers (#2135)
1410
+ - blacklist super-common keywords from having relevance (#2179)
1411
+ - fix(swift): support for `@dynamicMemberLookup` and `@propertyWrapper` (#2202)
1412
+ - fix: `endWithParent` inside `starts` now always works (#2201)
1413
+ - fix(typescript): constructor in declaration doesn't break highlighting
1414
+ - fix(typescript): only match function keyword as a separate identifier (#2191)
1415
+ - feature(arduino) make arduino a super-set of cpp grammar
1416
+ - fix(javascript): fix object attributes immediately following line comments
1417
+ - fix(xml): remove `vbscript` as potential script tag subLanguage
1418
+ - fix(Elixir): improve regex for numbers
1419
+ - fix(YAML): improve matching for keys, blocks and numbers
1420
+ - fix(Pony): improve regex for numbers
1421
+ - fix(handlebars): add support for raw-blocks, and triple-mustaches(#2175)
1422
+ - fix(handlebars): fix parsing of block-comments containing closing mustaches (#2175)
1423
+ - fix(handlebars): add support for segment-literal notation, and escaped mustaches (#2184)
1424
+ - JSON: support for comments in JSON (#2016)
1425
+ - fix(cpp): improve string literal matching
1426
+ - fix(highlight.js): omit empty span-tags in the output (#2182)
1427
+ - fix(Go): improve function declaration matching
1428
+ - fix(python): added support for f-string literal curly braces (#2195)
1429
+ - fix(cpp): add `future` built-in (#1610)
1430
+ - fix(python): support comments within function parameters (#2214)
1431
+
1432
+ [Carl Baxter]: https://github.com/cdbax
1433
+ [Mark Ellis]: https://github.com/ellismarkf
1434
+
1435
+ ## Version 9.15.10
1436
+ New languages:
1437
+ none.
1438
+ New styles:
1439
+ none.
1440
+ Improvements:
1441
+ - support for ruby's squiggly heredoc (#2049)
1442
+ - support css custom properties (#2082)
1443
+ - fix(PureBASIC): update to 5.60 (#1508)
1444
+ - fix(Kotlin): parenthesized types in function declaration (#2107)
1445
+ - fix(Kotlin): nested comment (#2104)
1446
+ - fix(isbl): contains key typo (#2103)
1447
+ - fix(github-gist.css): match Github styles (#2100)
1448
+ - fix(elm): update to latest elm syntax (#2088)
1449
+ - fix: Support highlighting inline HTML and CSS tagged template strings in JS and TS (#2105)
1450
+ - feat(YAML): add YAML to common languages (#1952)
1451
+ - feat(xml): Add support for Windows Script File (.wsf), inline VBScript in XML `script` tags (#1690)
1452
+
1453
+ ## Version 9.15.9
1454
+
1455
+ Improvements:
1456
+ - fix(AutoHotkey): order and extended highlighting (#1579)
1457
+ - fix(Go): correctly highlight hex numbers, rather than stopping at last 'd' or 'f'. (#2060)
1458
+ - fix(Mathematica): Improvements to language (#2065)
1459
+ - fix(Node): Adds SCSS build (#2079)
1460
+ - fix(Rust): update keywords (#2052)
1461
+ - fix(Stata): Added keywords for the meta-analysis suite introduced in Stata 16 (#2081)
1462
+ - fix(Bash): escape double quotes (#2048)
1463
+
1464
+ ## Version 9.15.8
1465
+
1466
+ New languages:
1467
+ none.
1468
+ New styles:
1469
+ none.
1470
+ Improvements:
1471
+ - fix(bash): revert escaped double quotes - broke Firefox/Safari.
1472
+
1473
+ ## Version 9.15.7
1474
+ New languages:
1475
+ none.
1476
+ New styles:
1477
+ none.
1478
+ Improvements:
1479
+ - fix(powershell): Add cmdlets (#2022)
1480
+ - fix(Bash): escaped double quotes (#2041)
1481
+ - fix(c++): add aliases 'hh', 'hxx', 'cxx' (#2017)
1482
+ - fix(ini/toml): Support comments on the same line. (#2039)
1483
+ - fix(JSX): not rendering well in a function without parentheses. (#2024)
1484
+ - fix(LiveCode): language definition update (#2021)
1485
+ - fix(markdown): indented lists (#2004)
1486
+ - fix(styles/school-book): don't style all the pre, use .hljs instead (#2034)
1487
+ - fix(JSX): Modify JSX tag detection to use XML language regex in place of simplistic \w+
1488
+
1489
+ ## Version 9.15.6
1490
+ New languages:
1491
+ none.
1492
+ New styles:
1493
+ none.
1494
+ Improvements:
1495
+ - Move dependencies to be devDependencies.
1496
+ - Fixed security issues in dev dependencies.
1497
+
1498
+ ## Version 9.15.5
1499
+ New languages:
1500
+ none.
1501
+ New styles:
1502
+ none.
1503
+ Improvements:
1504
+ 🔥 Hot fix: updated build tool.
1505
+
1506
+ ## Version 9.15.4
1507
+ New languages:
1508
+ none.
1509
+ New styles:
1510
+ none.
1511
+ Improvements:
1512
+ 🔥 Hot fix: reverted hljs cli build tool, as it was causing issues with install.
1513
+
1514
+ ## Version 9.15.3
1515
+ New languages:
1516
+ none.
1517
+ New styles:
1518
+ none.
1519
+ Improvements:
1520
+ 🔥 Hot fix: reverted hljs cli build tool, as it was causing issues with install.
1521
+
1522
+ ## Version 9.15.2
1523
+ New languages:
1524
+ none.
1525
+ New styles:
1526
+ none.
1527
+ Improvements:
1528
+ 🔥 Hot fix that was preventing highlight.js from installing.
1529
+
1530
+ ## Version 9.15.1
1531
+
1532
+ New languages:
1533
+ none.
1534
+
1535
+ New styles:
1536
+ none.
1537
+
1538
+ Improvements:
1539
+
1540
+ - Pony: Fixed keywords without spaces at line ends, highlighting of `iso` in class definitions, and function heads without bodies in traits and interfaces. Removed FUNCTION and CLASS modes until they are found to be needed and to provide some of the fixes.
1541
+ - Support external language files in minified version of highlight.js (#1888)
1542
+
1543
+ ## Version 9.15
1544
+
1545
+ New languages:
1546
+ none.
1547
+
1548
+ New styles:
1549
+ none.
1550
+
1551
+ Improvements:
1552
+ - new cli tool `hljs` - allows easier [building from command line](docs/building-testing.rst#building-a-bundle-from-the-command-line).
1553
+ - cpp: Fully support C++11 raw strings. (#1897)
1554
+ - Python: Treat False None and True as literals (#1920)
1555
+
1556
+ ## Version 9.14.2
1557
+
1558
+ New languages:
1559
+ none.
1560
+ New styles:
1561
+ none.
1562
+ Improvements:
1563
+ - *Gauss* fixed to stop global namespace pollution [Scott Hyndman][].
1564
+ - fix(Tcl): removed apostrophe string delimiters (don't exist)
1565
+
1566
+ [Scott Hyndman]: https://github.com/shyndman
1567
+
1568
+ ## Version 9.14.1
1569
+
1570
+ New languages:
1571
+ none.
1572
+ New styles:
1573
+ none.
1574
+ Improvements:
1575
+ - Pony: language improvements (#1958)
1576
+
1577
+ ## Version 9.14.0
1578
+
1579
+ New languages:
1580
+ none.
1581
+ New styles:
1582
+ none.
1583
+ Improvements:
1584
+ - Pony: add missing "object" highlighting (#1932)
1585
+ - Added *XQuery* built-in functions, prolog declarations, as well as parsing of function bodies, computed and direct constructors, by [Duncan Paterson][]
1586
+ - fix(dart): Corrects highlighting with string interpolation. (#1946)
1587
+ - fix(swift): be eager on optional-using types (!/?) (#1919)
1588
+ - fix(tex): Changed cyrillic to unicode (IE11 throw SCRIPT5021) (#1601)
1589
+ - fix(JavaScript): Recognize get/set accessor keywords (#1940)
1590
+ - Fixed Dockerfile definition when using highlight continuation parameter, by [Laurent Voullemier][]
1591
+ - Added tests & new `annotation` and `verbatim` keywords to *Crystal*, by [Benoit de Chezelles][]
1592
+ - Added missing dockerfile markup tests, by [Laurent Voullemier][]
1593
+ Allow empty prompt text in clojure-repl, by [Egor Rogov][]
1594
+ - Fixed several issues with *Crystal* language definition, by [Johannes Müller][]
1595
+ - Added `C#` as an alias for *CSharp* language, by [Ahmed Atito][]
1596
+ - Added generic user-defined proc support, new compiler define, refactor to re-use rules, and add tests to *GAUSS*, by [Matthew Evans][]
1597
+ - Improve *Crystal* language to highlight regexes after some keywords, by [Tsuyusato Kitsune][]
1598
+ - Fix filterByQualifiers: fileInfo can be null
1599
+ - Fixed String interpolation in Dart, by [Scott Hyndman][].
1600
+
1601
+ [Laurent Voullemier]: https://github.com/l-vo
1602
+ [Benoit de Chezelles]: https://github.com/bew
1603
+ [Johannes Müller]: https://github.com/straight-shoota
1604
+ [Ahmed Atito]: https://github.com/atitoa93
1605
+ [Matthew Evans]: https://github.com/matthewevans
1606
+ [Tsuyusato Kitsune]: https://github.com/MakeNowJust
1607
+ [Scott Hyndman]: https://github.com/shyndman
1608
+ [Duncan Paterson]: https://github.com/duncdrum
1609
+
1610
+ ## Version 9.13.1
1611
+
1612
+ Improvements:
1613
+
1614
+ - *C#* function declarations no longer include trailing whitespace, by [JeremyTCD][]
1615
+ - Added new and missing keywords to *AngelScript*, by [Melissa Geels][]
1616
+ - *TypeScript* decorator factories highlighting fix, by [Antoine Boisier-Michaud][]
1617
+ - Added support for multiline strings to *Swift*, by [Alejandro Isaza][]
1618
+ - Fixed issue that was causing some minifiers to fail.
1619
+ - Fixed `autoDetection` to accept language aliases.
1620
+
1621
+ [JeremyTCD]: https://github.com/JeremyTCD
1622
+ [Melissa Geels]: https://github.com/codecat
1623
+ [Antoine Boisier-Michaud]: https://github.com/Aboisier
1624
+ [Alejandro Isaza]: https://github.com/alejandro-isaza
1625
+
1626
+ ## Version 9.13.0
1627
+
1628
+ New languages:
1629
+
1630
+ - *ArcGIS Arcade* by [John Foster][]
1631
+ - *AngelScript* by [Melissa Geels][]
1632
+ - *GML* by [meseta][]
1633
+ - *isbl* built-in language DIRECTUM and Conterra by [Dmitriy Tarasov][].
1634
+ - *PostgreSQL* SQL dialect and PL/pgSQL language by [Egor Rogov][].
1635
+ - *ReasonML* by [Gidi Meir Morris][]
1636
+ - *SAS* by [Mauricio Caceres Bravo][]
1637
+ - *Plaintext* by [Egor Rogov][]
1638
+ - *.properties* by [bostko][] and [Egor Rogov][]
1639
+
1640
+ New styles:
1641
+
1642
+ - *a11y-dark theme* by [Eric Bailey][]
1643
+ - *a11y-light theme* by [Eric Bailey][]
1644
+ - *An Old Hope* by [Gustavo Costa][]
1645
+ - *Atom One Dark Reasonable* by [Gidi Meir Morris][]
1646
+ - *isbl editor dark* by [Dmitriy Tarasov][]
1647
+ - *isbl editor light* by [Dmitriy Tarasov][]
1648
+ - *Lightfair* by [Tristian Kelly][]
1649
+ - [*Nord*][nord-highlightjs] by [Arctic Ice Studio][]
1650
+ - *[🦄 Shades of Purple](https://github.com/ahmadawais/Shades-of-Purple-HighlightJS)* by [Ahmad Awais][]
1651
+
1652
+ Improvements:
1653
+
1654
+ - New attribute `endSameAsBegin` for nested constructs with variable names
1655
+ by [Egor Rogov][].
1656
+ - *Python* highlighting of escaped quotes fixed by [Harmon][]
1657
+ - *PHP*: Added alias for php7, by [Vijaya Chandran Mani][]
1658
+ - *C++* string handling, by [David Benjamin][]
1659
+ - *Swift* Add `@objcMembers` to `@attributes`, by [Berk Çebi][]
1660
+ - Infrastructural changes by [Marcos Cáceres][]
1661
+ - Fixed metachars highighting for *NSIS* by [Jan T. Sott][]
1662
+ - *Yaml* highlight local tags as types by [Léo Lam][]
1663
+ - Improved highlighting for *Elixir* by [Piotr Kaminski][]
1664
+ - New attribute `disableAutodetect` for preventing autodetection by [Egor Rogov][]
1665
+ - *Matlab*: transpose operators and double quote strings, by [JohnC32][] and [Egor Rogov][]
1666
+ - Various documentation typos and improvemets by [Jimmy Wärting][], [Lutz Büch][], [bcleland][]
1667
+ - *Cmake* updated with new keywords and commands by [Deniz Bahadir][]
1668
+
1669
+ [Ahmad Awais]: https://github.com/ahmadawais
1670
+ [Arctic Ice Studio]: https://github.com/arcticicestudio
1671
+ [Dmitriy Tarasov]: https://github.com/MedvedTMN
1672
+ [Egor Rogov]: https://github.com/egor-rogov
1673
+ [Eric Bailey]: https://github.com/ericwbailey
1674
+ [Gidi Meir Morris]: https://github.com/gmmorris
1675
+ [Gustavo Costa]: https://github.com/gusbemacbe
1676
+ [Harmon]: https://github.com/Harmon758
1677
+ [Melissa Geels]: https://github.com/codecat
1678
+ [meseta]: https://github.com/meseta
1679
+ [nord-highlightjs]: https://github.com/arcticicestudio/nord-highlightjs
1680
+ [Tristian Kelly]: https://github.com/TristianK3604
1681
+ [Vijaya Chandran Mani]: https://github.com/vijaycs85
1682
+ [John Foster]: https://github.com/jf990
1683
+ [David Benjamin]: https://github.com/davidben
1684
+ [Berk Çebi]: https://github.com/berkcebi
1685
+ [Mauricio Caceres Bravo]: https://github.com/mcaceresb
1686
+ [bostko]: https://github.com/bostko
1687
+ [Deniz Bahadir]: https://github.com/Bagira80
1688
+ [bcleland]: https://github.com/bcleland
1689
+ [JohnC32]: https://github.com/JohnC32
1690
+ [Lutz Büch]: https://github.com/lutz-100worte
1691
+ [Piotr Kaminski]: https://github.com/pkaminski
1692
+ [Léo Lam]: https://github.com/leoetlino
1693
+ [Jan T. Sott]: https://github.com/idleberg
1694
+ [Jimmy Wärting]: https://github.com/jimmywarting
1695
+ [Marcos Cáceres]: https://github.com/marcoscaceres
1696
+
1697
+ ## Version 9.12.0
1698
+
1699
+ New language:
1700
+
1701
+ - *MikroTik* RouterOS Scripting language by [Ivan Dementev][].
1702
+
1703
+ New style:
1704
+
1705
+ - *VisualStudio 2015 Dark* by [Nicolas LLOBERA][]
1706
+
1707
+ Improvements:
1708
+ - *Crystal* updated with new keywords and syntaxes by [Tsuyusato Kitsune][].
1709
+ - *Julia* updated to the modern definitions by [Alex Arslan][].
1710
+ - *julia-repl* added by [Morten Piibeleht][].
1711
+ - [Stanislav Belov][] wrote a new definition for *1C*, replacing the one that
1712
+ has not been updated for more than 8 years. The new version supports syntax
1713
+ for versions 7.7 and 8.
1714
+ - [Nicolas LLOBERA][] improved C# definition fixing edge cases with function
1715
+ titles detection and added highlighting of `[Attributes]`.
1716
+ - [nnnik][] provided a few correctness fixes for *Autohotkey*.
1717
+ - [Martin Clausen][] made annotation collections in *Clojure* to look
1718
+ consistently with other kinds.
1719
+ - [Alejandro Alonso][] updated *Swift* keywords.
1720
+
1721
+ [Tsuyusato Kitsune]: https://github.com/MakeNowJust
1722
+ [Alex Arslan]: https://github.com/ararslan
1723
+ [Morten Piibeleht]: https://github.com/mortenpi
1724
+ [Stanislav Belov]: https://github.com/4ppl
1725
+ [Ivan Dementev]: https://github.com/DiVAN1x
1726
+ [Nicolas LLOBERA]: https://github.com/Nicolas01
1727
+ [nnnik]: https://github.com/nnnik
1728
+ [Martin Clausen]: https://github.com/maacl
1729
+ [Alejandro Alonso]: https://github.com/Azoy
1730
+
1731
+ ## Version 9.11.0
1732
+
1733
+ New languages:
1734
+
1735
+ - *Shell* by [Tsuyusato Kitsune][]
1736
+ - *jboss-cli* by [Raphaël Parrëe][]
1737
+
1738
+ Improvements:
1739
+
1740
+ - [Joël Porquet] has [greatly improved the definition of *makefile*][5b3e0e6].
1741
+ - *C++* class titles are now highlighted as in other languages with classes.
1742
+ - [Jordi Petit][] added rarely used `or`, `and` and `not` keywords to *C++*.
1743
+ - [Pieter Vantorre][] fixed highlighting of negative floating point values.
1744
+
1745
+
1746
+ [Tsuyusato Kitsune]: https://github.com/MakeNowJust
1747
+ [Jordi Petit]: https://github.com/jordi-petit
1748
+ [Raphaël Parrëe]: https://github.com/rparree
1749
+ [Pieter Vantorre]: https://github.com/NuclearCookie
1750
+ [5b3e0e6]: https://github.com/isagalaev/highlight.js/commit/5b3e0e68bfaae282faff6697d6a490567fa9d44b
1751
+
1752
+
1753
+ ## Version 9.10.0
1754
+
1755
+ Apologies for missing the previous release cycle. Some thing just can't be
1756
+ automated… Anyway, we're back!
1757
+
1758
+ New languages:
1759
+
1760
+ - *Hy* by [Sergey Sobko][]
1761
+ - *Leaf* by [Hale Chan][]
1762
+ - *N1QL* by [Andres Täht][] and [Rene Saarsoo][]
1763
+
1764
+ Improvements:
1765
+
1766
+ - *Rust* got updated with new keywords by [Kasper Andersen][] and then
1767
+ significantly modernized even more by [Eduard-Mihai Burtescu][] (yes, @eddyb,
1768
+ Rust core team member!)
1769
+ - *Python* updated with f-literals by [Philipp A][].
1770
+ - *YAML* updated with unquoted strings support.
1771
+ - *Gauss* updated with new keywords by [Matt Evans][].
1772
+ - *Lua* updated with new keywords by [Joe Blow][].
1773
+ - *Kotlin* updated with new keywords by [Philipp Hauer][].
1774
+ - *TypeScript* got highlighting of function params and updated keywords by
1775
+ [Ike Ku][].
1776
+ - *Scheme* now correctly handles \`-quoted lists thanks to [Guannan Wei].
1777
+ - [Sam Wu][] fixed handling of `<<` in *C++* defines.
1778
+
1779
+ [Philipp A]: https://github.com/flying-sheep
1780
+ [Philipp Hauer]: https://github.com/phauer
1781
+ [Sergey Sobko]: https://github.com/profitware
1782
+ [Hale Chan]: https://github.com/halechan
1783
+ [Matt Evans]: https://github.com/matthewevans
1784
+ [Joe Blow]: https://github.com/mossarelli
1785
+ [Kasper Andersen]: https://github.com/kasma1990
1786
+ [Eduard-Mihai Burtescu]: https://github.com/eddyb
1787
+ [Andres Täht]: https://github.com/andrestaht
1788
+ [Rene Saarsoo]: https://github.com/nene
1789
+ [Philipp Hauer]: https://github.com/phauer
1790
+ [Ike Ku]: https://github.com/dempfi
1791
+ [Guannan Wei]: https://github.com/Kraks
1792
+ [Sam Wu]: https://github.com/samsam2310
1793
+
1794
+
1795
+ ## Version 9.9.0
1796
+
1797
+ New languages
1798
+
1799
+ - *LLVM* by [Michael Rodler][]
1800
+
1801
+ Improvements:
1802
+
1803
+ - *TypeScript* updated with annotations and param lists inside constructors, by
1804
+ [Raphael Parree][].
1805
+ - *CoffeeScript* updated with new keywords and fixed to recognize JavaScript
1806
+ in \`\`\`, thanks to thanks to [Geoffrey Booth][].
1807
+ - Compiler directives in *Delphi* are now correctly highlighted as "meta".
1808
+
1809
+ [Raphael Parree]: https://github.com/rparree
1810
+ [Michael Rodler]: https://github.com/f0rki
1811
+ [Geoffrey Booth]: https://github.com/GeoffreyBooth
1812
+
1813
+
1814
+ ## Version 9.8.0 "New York"
1815
+
1816
+ This version is the second one that deserved a name. Because I'm in New York,
1817
+ and the release isn't missing the deadline only because it's still Tuesday on
1818
+ West Coast.
1819
+
1820
+ New languages:
1821
+
1822
+ - *Clean* by [Camil Staps][]
1823
+ - *Flix* by [Magnus Madsen][]
1824
+
1825
+ Improvements:
1826
+
1827
+ - [Kenton Hamaluik][] did a comprehensive update for *Haxe*.
1828
+ - New commands for *PowerShell* from [Nicolas Le Gall][].
1829
+ - [Jan T. Sott][] updated *NSIS*.
1830
+ - *Java* and *Swift* support unicode characters in identifiers thanks to
1831
+ [Alexander Lichter][].
1832
+
1833
+ [Camil Staps]: https://github.com/camilstaps
1834
+ [Magnus Madsen]: https://github.com/magnus-madsen
1835
+ [Kenton Hamaluik]: https://github.com/FuzzyWuzzie
1836
+ [Nicolas Le Gall]: https://github.com/darkitty
1837
+ [Jan T. Sott]: https://github.com/idleberg
1838
+ [Alexander Lichter]: https://github.com/manniL
1839
+
1840
+
1841
+ ## Version 9.7.0
1842
+
1843
+ A comprehensive bugfix release. This is one of the best things about
1844
+ highlight.js: even boring things keep getting better (even if slow).
1845
+
1846
+ - VHDL updated with PSL keywords and uses more consistent styling.
1847
+ - Nested C-style comments no longer break highlighting in many languages.
1848
+ - JavaScript updated with `=>` functions, highlighted object attributes and
1849
+ parsing within template string substitution blocks (`${...}`).
1850
+ - Fixed another corner case with self-closing `<tag/>` in JSX.
1851
+ - Added `HEALTHCHECK` directive in Docker.
1852
+ - Delphi updated with new Free Pascal keywords.
1853
+ - Fixed digit separator parsing in C++.
1854
+ - C# updated with new keywords and fixed to allow multiple identifiers within
1855
+ generics `<...>`.
1856
+ - Fixed another slow regex in Less.
1857
+
1858
+
1859
+ ## Version 9.6.0
1860
+
1861
+ New languages:
1862
+
1863
+ - *ABNF* and *EBNF* by [Alex McKibben][]
1864
+ - *Awk* by [Matthew Daly][]
1865
+ - *SubUnit* by [Sergey Bronnikov][]
1866
+
1867
+ New styles:
1868
+
1869
+ - *Atom One* in both Dark and Light variants by [Daniel Gamage][]
1870
+
1871
+ Plus, a few smaller updates for *Lasso*, *Elixir*, *C++* and *SQL*.
1872
+
1873
+ [Alex McKibben]: https://github.com/mckibbenta
1874
+ [Daniel Gamage]: https://github.com/danielgamage
1875
+ [Matthew Daly]: https://github.com/matthewbdaly
1876
+ [Sergey Bronnikov]: https://github.com/ligurio
1877
+
1878
+
1879
+ ## Version 9.5.0
1880
+
1881
+ New languages:
1882
+
1883
+ - *Excel* by [Victor Zhou][]
1884
+ - *Linden Scripting Language* by [Builder's Brewery][]
1885
+ - *TAP* (Test Anything Protocol) by [Sergey Bronnikov][]
1886
+ - *Pony* by [Joe Eli McIlvain][]
1887
+ - *Coq* by [Stephan Boyer][]
1888
+ - *dsconfig* and *LDIF* by [Jacob Childress][]
1889
+
1890
+ New styles:
1891
+
1892
+ - *Ocean Dark* by [Gavin Siu][]
1893
+
1894
+ Notable changes:
1895
+
1896
+ - [Minh Nguyễn][] added more built-ins to Objective C.
1897
+ - [Jeremy Hull][] fixed corner cases in C++ preprocessor directives and Diff
1898
+ comments.
1899
+ - [Victor Zhou][] added support for digit separators in C++ numbers.
1900
+
1901
+ [Gavin Siu]: https://github.com/gavsiu
1902
+ [Builder's Brewery]: https://github.com/buildersbrewery
1903
+ [Victor Zhou]: https://github.com/OiCMudkips
1904
+ [Sergey Bronnikov]: https://github.com/ligurio
1905
+ [Joe Eli McIlvain]: https://github.com/jemc
1906
+ [Stephan Boyer]: https://github.com/boyers
1907
+ [Jacob Childress]: https://github.com/braveulysses
1908
+ [Minh Nguyễn]: https://github.com/1ec5
1909
+ [Jeremy Hull]: https://github.com/sourrust
1910
+
1911
+
1912
+ ## Version 9.4.0
1913
+
1914
+ New languages:
1915
+
1916
+ - *PureBASIC* by [Tristano Ajmone][]
1917
+ - *BNF* by [Oleg Efimov][]
1918
+ - *Ada* by [Lars Schulna][]
1919
+
1920
+ New styles:
1921
+
1922
+ - *PureBASIC* by [Tristano Ajmone][]
1923
+
1924
+ Improvements to existing languages and styles:
1925
+
1926
+ - We now highlight function declarations in Go.
1927
+ - [Taisuke Fujimoto][] contributed very convoluted rules for raw and
1928
+ interpolated strings in C#.
1929
+ - [Boone Severson][] updated Verilog to comply with IEEE 1800-2012
1930
+ SystemVerilog.
1931
+ - [Victor Zhou][] improved rules for comments and strings in PowerShell files.
1932
+ - [Janis Voigtländer][] updated the definition of Elm to version 0.17 of the
1933
+ languages. Elm is now featured on the front page of <https://highlightjs.org>.
1934
+ - Special variable `$this` is highlighted as a keyword in PHP.
1935
+ - `usize` and `isize` are now highlighted in Rust.
1936
+ - Fixed labels and directives in x86 assembler.
1937
+
1938
+ [Tristano Ajmone]: https://github.com/tajmone
1939
+ [Taisuke Fujimoto]: https://github.com/temp-impl
1940
+ [Oleg Efimov]: https://github.com/Sannis
1941
+ [Boone Severson]: https://github.com/BooneJS
1942
+ [Victor Zhou]: https://github.com/OiCMudkips
1943
+ [Lars Schulna]: https://github.com/captain-hanuta
1944
+ [Janis Voigtländer]: https://github.com/jvoigtlaender
1945
+
1946
+
1947
+ ## Version 9.3.0
1948
+
1949
+ New languages:
1950
+
1951
+ - *Tagger Script* by [Philipp Wolfer][]
1952
+ - *MoonScript* by [Billy Quith][]
1953
+
1954
+ New styles:
1955
+
1956
+ - *xt256* by [Herbert Shin][]
1957
+
1958
+ Improvements to existing languages and styles:
1959
+
1960
+ - More robust handling of unquoted HTML tag attributes
1961
+ - Relevance tuning for QML which was unnecessary eager at seizing other
1962
+ languages' code
1963
+ - Improve GAMS language parsing
1964
+ - Fixed a bunch of bugs around selectors in Less
1965
+ - Kotlin's got a new definition for annotations, updated keywords and other
1966
+ minor improvements
1967
+ - Added `move` to Rust keywords
1968
+ - Markdown now recognizes \`\`\`-fenced code blocks
1969
+ - Improved detection of function declarations in C++ and C#
1970
+
1971
+ [Philipp Wolfer]: https://github.com/phw
1972
+ [Billy Quith]: https://github.com/billyquith
1973
+ [Herbert Shin]: https://github.com/initbar
1974
+
1975
+
1976
+ ## Version 9.2.0
1977
+
1978
+ New languages:
1979
+
1980
+ - *QML* by [John Foster][]
1981
+ - *HTMLBars* by [Michael Johnston][]
1982
+ - *CSP* by [Taras][]
1983
+ - *Maxima* by [Robert Dodier][]
1984
+
1985
+ New styles:
1986
+
1987
+ - *Gruvbox* by [Qeole][]
1988
+ - *Dracula* by [Denis Ciccale][]
1989
+
1990
+ Improvements to existing languages and styles:
1991
+
1992
+ - We now correctly handle JSX with arbitrary node tree depth.
1993
+ - Argument list for `(lambda)` in Scheme is no longer highlighted as a function
1994
+ call.
1995
+ - Stylus syntax doesn't break on valid CSS.
1996
+ - More correct handling of comments and strings and other improvements for
1997
+ VimScript.
1998
+ - More subtle work on the default style.
1999
+ - We now use anonymous modules for AMD.
2000
+ - `macro_rules!` is now recognized as a built-in in Rust.
2001
+
2002
+ [John Foster]: https://github.com/jf990
2003
+ [Qeole]: https://github.com/Qeole
2004
+ [Denis Ciccale]: https://github.com/dciccale
2005
+ [Michael Johnston]: https://github.com/lastobelus
2006
+ [Taras]: https://github.com/oxdef
2007
+ [Robert Dodier]: https://github.com/robert-dodier
2008
+
2009
+
2010
+ ## Version 9.1.0
2011
+
2012
+ New languages:
2013
+
2014
+ - *Stan* by [Brendan Rocks][]
2015
+ - *BASIC* by [Raphaël Assénat][]
2016
+ - *GAUSS* by [Matt Evans][]
2017
+ - *DTS* by [Martin Braun][]
2018
+ - *Arduino* by [Stefania Mellai][]
2019
+
2020
+ New Styles:
2021
+
2022
+ - *Arduino Light* by [Stefania Mellai][]
2023
+
2024
+ Improvements to existing languages and styles:
2025
+
2026
+ - Handle return type annotations in Python
2027
+ - Allow shebang headers in Javascript
2028
+ - Support strings in Rust meta
2029
+ - Recognize `struct` as a class-level definition in Rust
2030
+ - Recognize b-prefixed chars and strings in Rust
2031
+ - Better numbers handling in Verilog
2032
+
2033
+ [Brendan Rocks]: http://brendanrocks.com
2034
+ [Raphaël Assénat]: https://github.com/raphnet
2035
+ [Matt Evans]: https://github.com/matthewevans
2036
+ [Martin Braun]: https://github.com/mbr0wn
2037
+ [Stefania Mellai]: https://github.com/smellai
2038
+
2039
+
2040
+ ## Version 9.0.0
2041
+
2042
+ The new major version brings a reworked styling system. Highlight.js now defines
2043
+ a limited set of highlightable classes giving a consistent result across all the
2044
+ styles and languages. You can read a more detailed explanation and background in
2045
+ the [tracking issue][#348] that started this long process back in May.
2046
+
2047
+ This change is backwards incompatible for those who uses highlight.js with a
2048
+ custom stylesheet. The [new style guide][sg] explains how to write styles
2049
+ in this new world.
2050
+
2051
+ Bundled themes have also suffered a significant amount of improvements and may
2052
+ look different in places, but all the things now consistent and make more sense.
2053
+ Among others, the Default style has got a refresh and will probably be tweaked
2054
+ some more in next releases. Please do give your feedback in our
2055
+ [issue tracker][issues].
2056
+
2057
+ New languages in this release:
2058
+
2059
+ - *Caché Object Script* by [Nikita Savchenko][]
2060
+ - *YAML* by [Stefan Wienert][]
2061
+ - *MIPS Assembler* by [Nebuleon Fumika][]
2062
+ - *HSP* by [prince][]
2063
+
2064
+ Improvements to existing languages and styles:
2065
+
2066
+ - ECMAScript 6 modules import now do not require closing semicolon.
2067
+ - ECMAScript 6 classes constructors now highlighted.
2068
+ - Template string support for Typescript, as for ECMAScript 6.
2069
+ - Scala case classes params highlight fixed.
2070
+ - Built-in names introduced in Julia v0.4 added by [Kenta Sato][].
2071
+ - Refreshed Default style.
2072
+
2073
+ Other notable changes:
2074
+
2075
+ - [Web workers support][webworkers] added bu [Jan Kühle][].
2076
+ - We now have tests for compressed browser builds as well.
2077
+ - The building tool chain has been switched to node.js 4.x. and is now
2078
+ shamelessly uses ES6 features all over the place, courtesy of [Jeremy Hull][].
2079
+ - License added to non-compressed browser build.
2080
+
2081
+ [Jan Kühle]: https://github.com/frigus02
2082
+ [Stefan Wienert]: https://github.com/zealot128
2083
+ [Kenta Sato]: https://github.com/bicycle1885
2084
+ [Nikita Savchenko]: https://github.com/ZitRos
2085
+ [webworkers]: https://github.com/isagalaev/highlight.js#web-workers
2086
+ [Jeremy Hull]: https://github.com/sourrust
2087
+ [#348]: https://github.com/isagalaev/highlight.js/issues/348
2088
+ [sg]: http://highlightjs.readthedocs.org/en/latest/style-guide.html
2089
+ [issues]: https://github.com/isagalaev/highlight.js/issues
2090
+ [Nebuleon Fumika]: https://github.com/Nebuleon
2091
+ [prince]: https://github.com/prince-0203
2092
+
2093
+
2094
+ ## Version 8.9.1
2095
+
2096
+ Some last-minute changes reverted due to strange bug with minified browser build:
2097
+
2098
+ - Scala case classes params highlight fixed
2099
+ - ECMAScript 6 modules import now do not require closing semicolon
2100
+ - ECMAScript 6 classes constructors now highlighted
2101
+ - Template string support for Typescript, as for ECMAScript 6
2102
+ - License added to not minified browser build
2103
+
2104
+
2105
+ ## Version 8.9.0
2106
+
2107
+ New languages:
2108
+
2109
+ - *crmsh* by [Kristoffer Gronlund][]
2110
+ - *SQF* by [Soren Enevoldsen][]
2111
+
2112
+ [Kristoffer Gronlund]: https://github.com/krig
2113
+ [Soren Enevoldsen]: https://github.com/senevoldsen90
2114
+
2115
+ Notable fixes and improvements to existing languages:
2116
+
2117
+ - Added `abstract` and `namespace` keywords to TypeScript by [Daniel Rosenwasser][]
2118
+ - Added `label` support to Dockerfile by [Ladislav Prskavec][]
2119
+ - Crystal highlighting improved by [Tsuyusato Kitsune][]
2120
+ - Missing Swift keywords added by [Nate Cook][]
2121
+ - Improve detection of C block comments
2122
+ - ~~Scala case classes params highlight fixed~~
2123
+ - ~~ECMAScript 6 modules import now do not require closing semicolon~~
2124
+ - ~~ECMAScript 6 classes constructors now highlighted~~
2125
+ - ~~Template string support for Typescript, as for ECMAScript 6~~
2126
+
2127
+ Other notable changes:
2128
+
2129
+ - ~~License added to not minified browser build~~
2130
+
2131
+ [Kristoffer Gronlund]: https://github.com/krig
2132
+ [Søren Enevoldsen]: https://github.com/senevoldsen90
2133
+ [Daniel Rosenwasser]: https://github.com/DanielRosenwasser
2134
+ [Ladislav Prskavec]: https://github.com/abtris
2135
+ [Tsuyusato Kitsune]: https://github.com/MakeNowJust
2136
+ [Nate Cook]: https://github.com/natecook1000
2137
+
2138
+
2139
+ ## Version 8.8.0
2140
+
2141
+ New languages:
2142
+
2143
+ - *Golo* by [Philippe Charrière][]
2144
+ - *GAMS* by [Stefan Bechert][]
2145
+ - *IRPF90* by [Anthony Scemama][]
2146
+ - *Access logs* by [Oleg Efimov][]
2147
+ - *Crystal* by [Tsuyusato Kitsune][]
2148
+
2149
+ Notable fixes and improvements to existing languages:
2150
+
2151
+ - JavaScript highlighting no longer fails with ES6 default parameters
2152
+ - Added keywords `async` and `await` to Python
2153
+ - PHP heredoc support improved
2154
+ - Allow preprocessor directives within C++ functions
2155
+
2156
+ Other notable changes:
2157
+
2158
+ - Change versions to X.Y.Z SemVer-compatible format
2159
+ - Added ability to build all targets at once
2160
+
2161
+ [Philippe Charrière]: https://github.com/k33g
2162
+ [Stefan Bechert]: https://github.com/b-pos465
2163
+ [Anthony Scemama]: https://github.com/scemama
2164
+ [Oleg Efimov]: https://github.com/Sannis
2165
+ [Tsuyusato Kitsune]: https://github.com/MakeNowJust
2166
+
2167
+
2168
+ ## Version 8.7
2169
+
2170
+ New languages:
2171
+
2172
+ - *Zephir* by [Oleg Efimov][]
2173
+ - *Elm* by [Janis Voigtländer][]
2174
+ - *XQuery* by [Dirk Kirsten][]
2175
+ - *Mojolicious* by [Dotan Dimet][]
2176
+ - *AutoIt* by Manh Tuan from [J2TeaM][]
2177
+ - *Toml* (ini extension) by [Guillaume Gomez][]
2178
+
2179
+ New styles:
2180
+
2181
+ - *Hopscotch* by [Jan T. Sott][]
2182
+ - *Grayscale* by [MY Sun][]
2183
+
2184
+ Notable fixes and improvements to existing languages:
2185
+
2186
+ - Fix encoding of images when copied over in certain builds
2187
+ - Fix incorrect highlighting of the word "bug" in comments
2188
+ - Treat decorators different from matrix multiplication in Python
2189
+ - Fix traits inheritance highlighting in Rust
2190
+ - Fix incorrect document
2191
+ - Oracle keywords added to SQL language definition by [Vadimtro][]
2192
+ - Postgres keywords added to SQL language definition by [Benjamin Auder][]
2193
+ - Fix registers in x86asm being highlighted as a hex number
2194
+ - Fix highlighting for numbers with a leading decimal point
2195
+ - Correctly highlight numbers and strings inside of C/C++ macros
2196
+ - C/C++ functions now support pointer, reference, and move returns
2197
+
2198
+ [Oleg Efimov]: https://github.com/Sannis
2199
+ [Guillaume Gomez]: https://github.com/GuillaumeGomez
2200
+ [Janis Voigtländer]: https://github.com/jvoigtlaender
2201
+ [Jan T. Sott]: https://github.com/idleberg
2202
+ [Dirk Kirsten]: https://github.com/dirkk
2203
+ [MY Sun]: https://github.com/simonmysun
2204
+ [Vadimtro]: https://github.com/Vadimtro
2205
+ [Benjamin Auder]: https://github.com/ghost
2206
+ [Dotan Dimet]: https://github.com/dotandimet
2207
+ [J2TeaM]: https://github.com/J2TeaM
2208
+
2209
+
2210
+ ## Version 8.6
2211
+
2212
+ New languages:
2213
+
2214
+ - *C/AL* by [Kenneth Fuglsang][]
2215
+ - *DNS zone file* by [Tim Schumacher][]
2216
+ - *Ceylon* by [Lucas Werkmeister][]
2217
+ - *OpenSCAD* by [Dan Panzarella][]
2218
+ - *Inform7* by [Bruno Dias][]
2219
+ - *armasm* by [Dan Panzarella][]
2220
+ - *TP* by [Jay Strybis][]
2221
+
2222
+ New styles:
2223
+
2224
+ - *Atelier Cave*, *Atelier Estuary*,
2225
+ *Atelier Plateau* and *Atelier Savanna* by [Bram de Haan][]
2226
+ - *Github Gist* by [Louis Barranqueiro][]
2227
+
2228
+ Notable fixes and improvements to existing languages:
2229
+
2230
+ - Multi-line raw strings from C++11 are now supported
2231
+ - Fix class names with dashes in HAML
2232
+ - The `async` keyword from ES6/7 is now supported
2233
+ - TypeScript functions handle type and parameter complexity better
2234
+ - We unified phpdoc/javadoc/yardoc etc modes across all languages
2235
+ - CSS .class selectors relevance was dropped to prevent wrong language detection
2236
+ - Images is now included to CDN build
2237
+ - Release process is now automated
2238
+
2239
+ [Bram de Haan]: https://github.com/atelierbram
2240
+ [Kenneth Fuglsang]: https://github.com/kfuglsang
2241
+ [Louis Barranqueiro]: https://github.com/LouisBarranqueiro
2242
+ [Tim Schumacher]: https://github.com/enko
2243
+ [Lucas Werkmeister]: https://github.com/lucaswerkmeister
2244
+ [Dan Panzarella]: https://github.com/pzl
2245
+ [Bruno Dias]: https://github.com/sequitur
2246
+ [Jay Strybis]: https://github.com/unreal
2247
+
2248
+
2249
+ ## Version 8.5
2250
+
2251
+ New languages:
2252
+
2253
+ - *pf.conf* by [Peter Piwowarski][]
2254
+ - *Julia* by [Kenta Sato][]
2255
+ - *Prolog* by [Raivo Laanemets][]
2256
+ - *Docker* by [Alexis Hénaut][]
2257
+ - *Fortran* by [Anthony Scemama][] and [Thomas Applencourt][]
2258
+ - *Kotlin* by [Sergey Mashkov][]
2259
+
2260
+ New styles:
2261
+
2262
+ - *Agate* by [Taufik Nurrohman][]
2263
+ - *Darcula* by [JetBrains][]
2264
+ - *Atelier Sulphurpool* by [Bram de Haan][]
2265
+ - *Android Studio* by [Pedro Oliveira][]
2266
+
2267
+ Notable fixes and improvements to existing languages:
2268
+
2269
+ - ES6 features in JavaScript are better supported now by [Gu Yiling][].
2270
+ - Swift now recognizes body-less method definitions.
2271
+ - Single expression functions `def foo, do: ... ` now work in Elixir.
2272
+ - More uniform detection of built-in classes in Objective C.
2273
+ - Fixes for number literals and processor directives in Rust.
2274
+ - HTML `<script>` tag now allows any language, not just JavaScript.
2275
+ - Multi-line comments are supported now in MatLab.
2276
+
2277
+ [Taufik Nurrohman]: https://github.com/taufik-nurrohman
2278
+ [Jet Brains]: https://www.jetbrains.com/
2279
+ [Peter Piwowarski]: https://github.com/oldlaptop
2280
+ [Kenta Sato]: https://github.com/bicycle1885
2281
+ [Bram de Haan]: https://github.com/atelierbram
2282
+ [Raivo Laanemets]: https://github.com/rla
2283
+ [Alexis Hénaut]: https://github.com/AlexisNo
2284
+ [Anthony Scemama]: https://github.com/scemama
2285
+ [Pedro Oliveira]: https://github.com/kanytu
2286
+ [Gu Yiling]: https://github.com/Justineo
2287
+ [Sergey Mashkov]: https://github.com/cy6erGn0m
2288
+ [Thomas Applencourt]: https://github.com/TApplencourt
2289
+
2290
+
2291
+ ## Version 8.4
2292
+
2293
+ We've got the new [demo page][]! The obvious new feature is the new look, but
2294
+ apart from that it's got smarter: by presenting languages in groups it avoids
2295
+ running 10000 highlighting attempts after first load which was slowing it down
2296
+ and giving bad overall impression. It is now also being generated from test
2297
+ code snippets so the authors of new languages don't have to update both tests
2298
+ and the demo page with the same thing.
2299
+
2300
+ Other notable changes:
2301
+
2302
+ - The `template_comment` class is gone in favor of the more general `comment`.
2303
+ - Number parsing unified and improved across languages.
2304
+ - C++, Java and C# now use unified grammar to highlight titles in
2305
+ function/method definitions.
2306
+ - The browser build is now usable as an AMD module, there's no separate build
2307
+ target for that anymore.
2308
+ - OCaml has got a [comprehensive overhaul][ocaml] by [Mickaël Delahaye][].
2309
+ - Clojure's data structures and literals are now highlighted outside of lists
2310
+ and we can now highlight Clojure's REPL sessions.
2311
+
2312
+ New languages:
2313
+
2314
+ - *AspectJ* by [Hakan Özler][]
2315
+ - *STEP Part 21* by [Adam Joseph Cook][]
2316
+ - *SML* derived by [Edwin Dalorzo][] from OCaml definition
2317
+ - *Mercury* by [mucaho][]
2318
+ - *Smali* by [Dennis Titze][]
2319
+ - *Verilog* by [Jon Evans][]
2320
+ - *Stata* by [Brian Quistorff][]
2321
+
2322
+ [Hakan Özler]: https://github.com/ozlerhakan
2323
+ [Adam Joseph Cook]: https://github.com/adamjcook
2324
+ [demo page]: https://highlightjs.org/static/demo/
2325
+ [Ivan Sagalaev]: https://github.com/isagalaev
2326
+ [Edwin Dalorzo]: https://github.com/edalorzo
2327
+ [mucaho]: https://github.com/mucaho
2328
+ [Dennis Titze]: https://github.com/titze
2329
+ [Jon Evans]: https://github.com/craftyjon
2330
+ [Brian Quistorff]: https://github.com/bquistorff
2331
+ [ocaml]: https://github.com/isagalaev/highlight.js/pull/608#issue-46190207
2332
+ [Mickaël Delahaye]: https://github.com/polazarus
2333
+
2334
+
2335
+ ## Version 8.3
2336
+
2337
+ We streamlined our tool chain, it is now based entirely on node.js instead of
2338
+ being a mix of node.js, Python and Java. The build script options and arguments
2339
+ remained the same, and we've noted all the changes in the [documentation][b].
2340
+ Apart from reducing complexity, the new build script is also faster from not
2341
+ having to start Java machine repeatedly. The credits for the work go to [Jeremy
2342
+ Hull][].
2343
+
2344
+ Some notable fixes:
2345
+
2346
+ - PHP and JavaScript mixed in HTML now live happily with each other.
2347
+ - JavaScript regexes now understand ES6 flags "u" and "y".
2348
+ - `throw` keyword is no longer detected as a method name in Java.
2349
+ - Fixed parsing of numbers and symbols in Clojure thanks to [input from Ivan
2350
+ Kleshnin][ik].
2351
+
2352
+ New languages in this release:
2353
+
2354
+ - *Less* by [Max Mikhailov][]
2355
+ - *Stylus* by [Bryant Williams][]
2356
+ - *Tcl* by [Radek Liska][]
2357
+ - *Puppet* by [Jose Molina Colmenero][]
2358
+ - *Processing* by [Erik Paluka][]
2359
+ - *Twig* templates by [Luke Holder][]
2360
+ - *PowerShell* by [David Mohundro][], based on [the work of Nicholas Blumhardt][ps]
2361
+ - *XL* by [Christophe de Dinechin][]
2362
+ - *LiveScript* by [Taneli Vatanen][] and [Jen Evers-Corvina][]
2363
+ - *ERB* (Ruby in HTML) by [Lucas Mazza][]
2364
+ - *Roboconf* by [Vincent Zurczak][]
2365
+
2366
+ [b]: http://highlightjs.readthedocs.org/en/latest/building-testing.html
2367
+ [Jeremy Hull]: https://github.com/sourrust
2368
+ [ik]: https://twitter.com/IvanKleshnin/status/514041599484231680
2369
+ [Max Mikhailov]: https://github.com/seven-phases-max
2370
+ [Bryant Williams]: https://github.com/scien
2371
+ [Radek Liska]: https://github.com/Nindaleth
2372
+ [Jose Molina Colmenero]: https://github.com/Moliholy
2373
+ [Erik Paluka]: https://github.com/paluka
2374
+ [Luke Holder]: https://github.com/lukeholder
2375
+ [David Mohundro]: https://github.com/drmohundro
2376
+ [ps]: https://github.com/OctopusDeploy/Library/blob/master/app/shared/presentation/highlighting/powershell.js
2377
+ [Christophe de Dinechin]: https://github.com/c3d
2378
+ [Taneli Vatanen]: https://github.com/Daiz-
2379
+ [Jen Evers-Corvina]: https://github.com/sevvie
2380
+ [Lucas Mazza]: https://github.com/lucasmazza
2381
+ [Vincent Zurczak]: https://github.com/vincent-zurczak
2382
+
2383
+
2384
+ ## Version 8.2
2385
+
2386
+ We've finally got [real tests][test] and [continuous testing on Travis][ci]
2387
+ thanks to [Jeremy Hull][] and [Chris Eidhof][]. The tests designed to cover
2388
+ everything: language detection, correct parsing of individual language features
2389
+ and various special cases. This is a very important change that gives us
2390
+ confidence in extending language definitions and refactoring library core.
2391
+
2392
+ We're going to redesign the old [demo/test suite][demo] into an interactive
2393
+ demo web app. If you're confident front-end developer or designer and want to
2394
+ help us with it, drop a comment into [the issue][#542] on GitHub.
2395
+
2396
+ [test]: https://github.com/isagalaev/highlight.js/tree/master/test
2397
+ [demo]: https://highlightjs.org/static/test.html
2398
+ [#542]: https://github.com/isagalaev/highlight.js/issues/542
2399
+ [ci]: https://travis-ci.org/isagalaev/highlight.js
2400
+ [Jeremy Hull]: https://github.com/sourrust
2401
+ [Chris Eidhof]: https://github.com/chriseidhof
2402
+
2403
+ As usually there's a handful of new languages in this release:
2404
+
2405
+ - *Groovy* by [Guillaume Laforge][]
2406
+ - *Dart* by [Maxim Dikun][]
2407
+ - *Dust* by [Michael Allen][]
2408
+ - *Scheme* by [JP Verkamp][]
2409
+ - *G-Code* by [Adam Joseph Cook][]
2410
+ - *Q* from Kx Systems by [Sergey Vidyuk][]
2411
+
2412
+ [Guillaume Laforge]: https://github.com/glaforge
2413
+ [Maxim Dikun]: https://github.com/dikmax
2414
+ [Michael Allen]: https://github.com/bfui
2415
+ [JP Verkamp]: https://github.com/jpverkamp
2416
+ [Adam Joseph Cook]: https://github.com/adamjcook
2417
+ [Sergey Vidyuk]: https://github.com/sv
2418
+
2419
+ Other improvements:
2420
+
2421
+ - [Erik Osheim][] heavily reworked Scala definitions making it richer.
2422
+ - [Lucas Mazza][] fixed Ruby hashes highlighting
2423
+ - Lisp variants (Lisp, Clojure and Scheme) are unified in regard to naming
2424
+ the first symbol in parentheses: it's "keyword" in general case and also
2425
+ "built_in" for built-in functions in Clojure and Scheme.
2426
+
2427
+ [Erik Osheim]: https://github.com/non
2428
+ [Lucas Mazza]: https://github.com/lucasmazza
2429
+
2430
+
2431
+ ## Version 8.1
2432
+
2433
+ New languages:
2434
+
2435
+ - *Gherkin* by [Sam Pikesley][]
2436
+ - *Elixir* by [Josh Adams][]
2437
+ - *NSIS* by [Jan T. Sott][]
2438
+ - *VIM script* by [Jun Yang][]
2439
+ - *Protocol Buffers* by [Dan Tao][]
2440
+ - *Nix* by [Domen Kožar][]
2441
+ - *x86asm* by [innocenat][]
2442
+ - *Cap'n Proto* and *Thrift* by [Oleg Efimov][]
2443
+ - *Monkey* by [Arthur Bikmullin][]
2444
+ - *TypeScript* by [Panu Horsmalahti][]
2445
+ - *Nimrod* by [Flaviu Tamas][]
2446
+ - *Gradle* by [Damian Mee][]
2447
+ - *Haxe* by [Christopher Kaster][]
2448
+ - *Swift* by [Chris Eidhof][] and [Nate Cook][]
2449
+
2450
+ New styles:
2451
+
2452
+ - *Kimbie*, light and dark variants by [Jan T. Sott][]
2453
+ - *Color brewer* by [Fabrício Tavares de Oliveira][]
2454
+ - *Codepen.io embed* by [Justin Perry][]
2455
+ - *Hybrid* by [Nic West][]
2456
+
2457
+ [Sam Pikesley]: https://github.com/pikesley
2458
+ [Sindre Sorhus]: https://github.com/sindresorhus
2459
+ [Josh Adams]: https://github.com/knewter
2460
+ [Jan T. Sott]: https://github.com/idleberg
2461
+ [Jun Yang]: https://github.com/harttle
2462
+ [Dan Tao]: https://github.com/dtao
2463
+ [Domen Kožar]: https://github.com/iElectric
2464
+ [innocenat]: https://github.com/innocenat
2465
+ [Oleg Efimov]: https://github.com/Sannis
2466
+ [Arthur Bikmullin]: https://github.com/devolonter
2467
+ [Panu Horsmalahti]: https://github.com/panuhorsmalahti
2468
+ [Flaviu Tamas]: https://github.com/flaviut
2469
+ [Damian Mee]: https://github.com/chester1000
2470
+ [Christopher Kaster]: http://christopher.kaster.ws
2471
+ [Fabrício Tavares de Oliveira]: https://github.com/fabriciotav
2472
+ [Justin Perry]: https://github.com/ourmaninamsterdam
2473
+ [Nic West]: https://github.com/nicwest
2474
+ [Chris Eidhof]: https://github.com/chriseidhof
2475
+ [Nate Cook]: https://github.com/natecook1000
2476
+
2477
+ Other improvements:
2478
+
2479
+ - The README is heavily reworked and brought up to date by [Jeremy Hull][].
2480
+ - Added [`listLanguages()`][ll] method in the API.
2481
+ - Improved C/C++/C# detection.
2482
+ - Added a bunch of new language aliases, documented the existing ones. Thanks to
2483
+ [Sindre Sorhus][] for background research.
2484
+ - Added phrasal English words to boost relevance in comments.
2485
+ - Many improvements to SQL definition made by [Heiko August][],
2486
+ [Nikolay Lisienko][] and [Travis Odom][].
2487
+ - The shorter `lang-` prefix for language names in HTML classes supported
2488
+ alongside `language-`. Thanks to [Jeff Escalante][].
2489
+ - Ruby's got support for interactive console sessions. Thanks to
2490
+ [Pascal Hurni][].
2491
+ - Added built-in functions for R language. Thanks to [Artem A. Klevtsov][].
2492
+ - Rust's got definition for lifetime parameters and improved string syntax.
2493
+ Thanks to [Roman Shmatov][].
2494
+ - Various improvements to Objective-C definition by [Matt Diephouse][].
2495
+ - Fixed highlighting of generics in Java.
2496
+
2497
+ [ll]: http://highlightjs.readthedocs.org/en/latest/api.html#listlanguages
2498
+ [Sindre Sorhus]: https://github.com/sindresorhus
2499
+ [Heiko August]: https://github.com/auge8472
2500
+ [Nikolay Lisienko]: https://github.com/neor-ru
2501
+ [Travis Odom]: https://github.com/Burstaholic
2502
+ [Jeff Escalante]: https://github.com/jenius
2503
+ [Pascal Hurni]: https://github.com/phurni
2504
+ [Jiyin Yiyong]: https://github.com/jiyinyiyong
2505
+ [Artem A. Klevtsov]: https://github.com/unikum
2506
+ [Roman Shmatov]: https://github.com/shmatov
2507
+ [Jeremy Hull]: https://github.com/sourrust
2508
+ [Matt Diephouse]: https://github.com/mdiep
2509
+
2510
+
2511
+ ## Version 8.0
2512
+
2513
+ This new major release is quite a big overhaul bringing both new features and
2514
+ some backwards incompatible changes. However, chances are that the majority of
2515
+ users won't be affected by the latter: the basic scenario described in the
2516
+ README is left intact.
2517
+
2518
+ Here's what did change in an incompatible way:
2519
+
2520
+ - We're now prefixing all classes located in [CSS classes reference][cr] with
2521
+ `hljs-`, by default, because some class names would collide with other
2522
+ people's stylesheets. If you were using an older version, you might still want
2523
+ the previous behavior, but still want to upgrade. To suppress this new
2524
+ behavior, you would initialize like so:
2525
+
2526
+ ```html
2527
+ <script type="text/javascript">
2528
+ hljs.configure({classPrefix: ''});
2529
+ hljs.initHighlightingOnLoad();
2530
+ </script>
2531
+ ```
2532
+
2533
+ - `tabReplace` and `useBR` that were used in different places are also unified
2534
+ into the global options object and are to be set using `configure(options)`.
2535
+ This function is documented in our [API docs][]. Also note that these
2536
+ parameters are gone from `highlightBlock` and `fixMarkup` which are now also
2537
+ rely on `configure`.
2538
+
2539
+ - We removed public-facing (though undocumented) object `hljs.LANGUAGES` which
2540
+ was used to register languages with the library in favor of two new methods:
2541
+ `registerLanguage` and `getLanguage`. Both are documented in our [API docs][].
2542
+
2543
+ - Result returned from `highlight` and `highlightAuto` no longer contains two
2544
+ separate attributes contributing to relevance score, `relevance` and
2545
+ `keyword_count`. They are now unified in `relevance`.
2546
+
2547
+ Another technically compatible change that nonetheless might need attention:
2548
+
2549
+ - The structure of the NPM package was refactored, so if you had installed it
2550
+ locally, you'll have to update your paths. The usual `require('highlight.js')`
2551
+ works as before. This is contributed by [Dmitry Smolin][].
2552
+
2553
+ New features:
2554
+
2555
+ - Languages now can be recognized by multiple names like "js" for JavaScript or
2556
+ "html" for, well, HTML (which earlier insisted on calling it "xml"). These
2557
+ aliases can be specified in the class attribute of the code container in your
2558
+ HTML as well as in various API calls. For now there are only a few very common
2559
+ aliases but we'll expand it in the future. All of them are listed in the
2560
+ [class reference][cr].
2561
+
2562
+ - Language detection can now be restricted to a subset of languages relevant in
2563
+ a given context — a web page or even a single highlighting call. This is
2564
+ especially useful for node.js build that includes all the known languages.
2565
+ Another example is a StackOverflow-style site where users specify languages
2566
+ as tags rather than in the markdown-formatted code snippets. This is
2567
+ documented in the [API reference][] (see methods `highlightAuto` and
2568
+ `configure`).
2569
+
2570
+ - Language definition syntax streamlined with [variants][] and
2571
+ [beginKeywords][].
2572
+
2573
+ New languages and styles:
2574
+
2575
+ - *Oxygene* by [Carlo Kok][]
2576
+ - *Mathematica* by [Daniel Kvasnička][]
2577
+ - *Autohotkey* by [Seongwon Lee][]
2578
+ - *Atelier* family of styles in 10 variants by [Bram de Haan][]
2579
+ - *Paraíso* styles by [Jan T. Sott][]
2580
+
2581
+ Miscellaneous improvements:
2582
+
2583
+ - Highlighting `=>` prompts in Clojure.
2584
+ - [Jeremy Hull][] fixed a lot of styles for consistency.
2585
+ - Finally, highlighting PHP and HTML [mixed in peculiar ways][php-html].
2586
+ - Objective C and C# now properly highlight titles in method definition.
2587
+ - Big overhaul of relevance counting for a number of languages. Please do report
2588
+ bugs about mis-detection of non-trivial code snippets!
2589
+
2590
+ [API reference]: http://highlightjs.readthedocs.org/en/latest/api.html
2591
+
2592
+ [cr]: http://highlightjs.readthedocs.org/en/latest/css-classes-reference.html
2593
+ [api docs]: http://highlightjs.readthedocs.org/en/latest/api.html
2594
+ [variants]: https://groups.google.com/d/topic/highlightjs/VoGC9-1p5vk/discussion
2595
+ [beginKeywords]: https://github.com/isagalaev/highlight.js/commit/6c7fdea002eb3949577a85b3f7930137c7c3038d
2596
+ [php-html]: https://twitter.com/highlightjs/status/408890903017689088
2597
+
2598
+ [Carlo Kok]: https://github.com/carlokok
2599
+ [Bram de Haan]: https://github.com/atelierbram
2600
+ [Daniel Kvasnička]: https://github.com/dkvasnicka
2601
+ [Dmitry Smolin]: https://github.com/dimsmol
2602
+ [Jeremy Hull]: https://github.com/sourrust
2603
+ [Seongwon Lee]: https://github.com/dlimpid
2604
+ [Jan T. Sott]: https://github.com/idleberg
2605
+
2606
+
2607
+ ## Version 7.5
2608
+
2609
+ A catch-up release dealing with some of the accumulated contributions. This one
2610
+ is probably will be the last before the 8.0 which will be slightly backwards
2611
+ incompatible regarding some advanced use-cases.
2612
+
2613
+ One outstanding change in this version is the addition of 6 languages to the
2614
+ [hosted script][d]: Markdown, ObjectiveC, CoffeeScript, Apache, Nginx and
2615
+ Makefile. It now weighs about 6K more but we're going to keep it under 30K.
2616
+
2617
+ New languages:
2618
+
2619
+ - OCaml by [Mehdi Dogguy][mehdid] and [Nicolas Braud-Santoni][nbraud]
2620
+ - [LiveCode Server][lcs] by [Ralf Bitter][revig]
2621
+ - Scilab by [Sylvestre Ledru][sylvestre]
2622
+ - basic support for Makefile by [Ivan Sagalaev][isagalaev]
2623
+
2624
+ Improvements:
2625
+
2626
+ - Ruby's got support for characters like `?A`, `?1`, `?\012` etc. and `%r{..}`
2627
+ regexps.
2628
+ - Clojure now allows a function call in the beginning of s-expressions
2629
+ `(($filter "myCount") (arr 1 2 3 4 5))`.
2630
+ - Haskell's got new keywords and now recognizes more things like pragmas,
2631
+ preprocessors, modules, containers, FFIs etc. Thanks to [Zena Treep][treep]
2632
+ for the implementation and to [Jeremy Hull][sourrust] for guiding it.
2633
+ - Miscellaneous fixes in PHP, Brainfuck, SCSS, Asciidoc, CMake, Python and F#.
2634
+
2635
+ [mehdid]: https://github.com/mehdid
2636
+ [nbraud]: https://github.com/nbraud
2637
+ [revig]: https://github.com/revig
2638
+ [lcs]: http://livecode.com/developers/guides/server/
2639
+ [sylvestre]: https://github.com/sylvestre
2640
+ [isagalaev]: https://github.com/isagalaev
2641
+ [treep]: https://github.com/treep
2642
+ [sourrust]: https://github.com/sourrust
2643
+ [d]: http://highlightjs.org/download/
2644
+
2645
+
2646
+ ## New core developers
2647
+
2648
+ The latest long period of almost complete inactivity in the project coincided
2649
+ with growing interest to it led to a decision that now seems completely obvious:
2650
+ we need more core developers.
2651
+
2652
+ So without further ado let me welcome to the core team two long-time
2653
+ contributors: [Jeremy Hull][] and [Oleg
2654
+ Efimov][].
2655
+
2656
+ Hope now we'll be able to work through stuff faster!
2657
+
2658
+ P.S. The historical commit is [here][1] for the record.
2659
+
2660
+ [Jeremy Hull]: https://github.com/sourrust
2661
+ [Oleg Efimov]: https://github.com/sannis
2662
+ [1]: https://github.com/isagalaev/highlight.js/commit/f3056941bda56d2b72276b97bc0dd5f230f2473f
2663
+
2664
+
2665
+ ## Version 7.4
2666
+
2667
+ This long overdue version is a snapshot of the current source tree with all the
2668
+ changes that happened during the past year. Sorry for taking so long!
2669
+
2670
+ Along with the changes in code highlight.js has finally got its new home at
2671
+ <http://highlightjs.org/>, moving from its cradle on Software Maniacs which it
2672
+ outgrew a long time ago. Be sure to report any bugs about the site to
2673
+ <mailto:info@highlightjs.org>.
2674
+
2675
+ On to what's new…
2676
+
2677
+ New languages:
2678
+
2679
+ - Handlebars templates by [Robin Ward][]
2680
+ - Oracle Rules Language by [Jason Jacobson][]
2681
+ - F# by [Joans Follesø][]
2682
+ - AsciiDoc and Haml by [Dan Allen][]
2683
+ - Lasso by [Eric Knibbe][]
2684
+ - SCSS by [Kurt Emch][]
2685
+ - VB.NET by [Poren Chiang][]
2686
+ - Mizar by [Kelley van Evert][]
2687
+
2688
+ [Robin Ward]: https://github.com/eviltrout
2689
+ [Jason Jacobson]: https://github.com/jayce7
2690
+ [Joans Follesø]: https://github.com/follesoe
2691
+ [Dan Allen]: https://github.com/mojavelinux
2692
+ [Eric Knibbe]: https://github.com/EricFromCanada
2693
+ [Kurt Emch]: https://github.com/kemch
2694
+ [Poren Chiang]: https://github.com/rschiang
2695
+ [Kelley van Evert]: https://github.com/kelleyvanevert
2696
+
2697
+ New style themes:
2698
+
2699
+ - Monokai Sublime by [noformnocontent][]
2700
+ - Railscasts by [Damien White][]
2701
+ - Obsidian by [Alexander Marenin][]
2702
+ - Docco by [Simon Madine][]
2703
+ - Mono Blue by [Ivan Sagalaev][] (uses a single color hue for everything)
2704
+ - Foundation by [Dan Allen][]
2705
+
2706
+ [noformnocontent]: http://nn.mit-license.org/
2707
+ [Damien White]: https://github.com/visoft
2708
+ [Alexander Marenin]: https://github.com/ioncreature
2709
+ [Simon Madine]: https://github.com/thingsinjars
2710
+ [Ivan Sagalaev]: https://github.com/isagalaev
2711
+
2712
+ Other notable changes:
2713
+
2714
+ - Corrected many corner cases in CSS.
2715
+ - Dropped Python 2 version of the build tool.
2716
+ - Implemented building for the AMD format.
2717
+ - Updated Rust keywords (thanks to [Dmitry Medvinsky][]).
2718
+ - Literal regexes can now be used in language definitions.
2719
+ - CoffeeScript highlighting is now significantly more robust and rich due to
2720
+ input from [Cédric Néhémie][].
2721
+
2722
+ [Dmitry Medvinsky]: https://github.com/dmedvinsky
2723
+ [Cédric Néhémie]: https://github.com/abe33
2724
+
2725
+
2726
+ ## Version 7.3
2727
+
2728
+ - Since this version highlight.js no longer works in IE version 8 and older.
2729
+ It's made it possible to reduce the library size and dramatically improve code
2730
+ readability and made it easier to maintain. Time to go forward!
2731
+
2732
+ - New languages: AppleScript (by [Nathan Grigg][ng] and [Dr. Drang][dd]) and
2733
+ Brainfuck (by [Evgeny Stepanischev][bolk]).
2734
+
2735
+ - Improvements to existing languages:
2736
+
2737
+ - interpreter prompt in Python (`>>>` and `...`)
2738
+ - @-properties and classes in CoffeeScript
2739
+ - E4X in JavaScript (by [Oleg Efimov][oe])
2740
+ - new keywords in Perl (by [Kirk Kimmel][kk])
2741
+ - big Ruby syntax update (by [Vasily Polovnyov][vast])
2742
+ - small fixes in Bash
2743
+
2744
+ - Also Oleg Efimov did a great job of moving all the docs for language and style
2745
+ developers and contributors from the old wiki under the source code in the
2746
+ "docs" directory. Now these docs are nicely presented at
2747
+ <http://highlightjs.readthedocs.org/>.
2748
+
2749
+ [ng]: https://github.com/nathan11g
2750
+ [dd]: https://github.com/drdrang
2751
+ [bolk]: https://github.com/bolknote
2752
+ [oe]: https://github.com/Sannis
2753
+ [kk]: https://github.com/kimmel
2754
+ [vast]: https://github.com/vast
2755
+
2756
+
2757
+ ## Version 7.2
2758
+
2759
+ A regular bug-fix release without any significant new features. Enjoy!
2760
+
2761
+
2762
+ ## Version 7.1
2763
+
2764
+ A Summer crop:
2765
+
2766
+ - [Marc Fornos][mf] made the definition for Clojure along with the matching
2767
+ style Rainbow (which, of course, works for other languages too).
2768
+ - CoffeeScript support continues to improve getting support for regular
2769
+ expressions.
2770
+ - Yoshihide Jimbo ported to highlight.js [five Tomorrow styles][tm] from the
2771
+ [project by Chris Kempson][tm0].
2772
+ - Thanks to [Casey Duncun][cd] the library can now be built in the popular
2773
+ [AMD format][amd].
2774
+ - And last but not least, we've got a fair number of correctness and consistency
2775
+ fixes, including a pretty significant refactoring of Ruby.
2776
+
2777
+ [mf]: https://github.com/mfornos
2778
+ [tm]: http://jmblog.github.com/color-themes-for-highlightjs/
2779
+ [tm0]: https://github.com/ChrisKempson/Tomorrow-Theme
2780
+ [cd]: https://github.com/caseman
2781
+ [amd]: http://requirejs.org/docs/whyamd.html
2782
+
2783
+
2784
+ ## Version 7.0
2785
+
2786
+ The reason for the new major version update is a global change of keyword syntax
2787
+ which resulted in the library getting smaller once again. For example, the
2788
+ hosted build is 2K less than at the previous version while supporting two new
2789
+ languages.
2790
+
2791
+ Notable changes:
2792
+
2793
+ - The library now works not only in a browser but also with [node.js][]. It is
2794
+ installable with `npm install highlight.js`. [API][] docs are available on our
2795
+ wiki.
2796
+
2797
+ - The new unique feature (apparently) among syntax highlighters is highlighting
2798
+ *HTTP* headers and an arbitrary language in the request body. The most useful
2799
+ languages here are *XML* and *JSON* both of which highlight.js does support.
2800
+ Here's [the detailed post][p] about the feature.
2801
+
2802
+ - Two new style themes: a dark "south" *[Pojoaque][]* by Jason Tate and an
2803
+ emulation of*XCode* IDE by [Angel Olloqui][ao].
2804
+
2805
+ - Three new languages: *D* by [Aleksandar Ružičić][ar], *R* by [Joe Cheng][jc]
2806
+ and *GLSL* by [Sergey Tikhomirov][st].
2807
+
2808
+ - *Nginx* syntax has become a million times smaller and more universal thanks to
2809
+ remaking it in a more generic manner that doesn't require listing all the
2810
+ directives in the known universe.
2811
+
2812
+ - Function titles are now highlighted in *PHP*.
2813
+
2814
+ - *Haskell* and *VHDL* were significantly reworked to be more rich and correct
2815
+ by their respective maintainers [Jeremy Hull][sr] and [Igor Kalnitsky][ik].
2816
+
2817
+ And last but not least, many bugs have been fixed around correctness and
2818
+ language detection.
2819
+
2820
+ Overall highlight.js currently supports 51 languages and 20 style themes.
2821
+
2822
+ [node.js]: http://nodejs.org/
2823
+ [api]: http://softwaremaniacs.org/wiki/doku.php/highlight.js:api
2824
+ [p]: http://softwaremaniacs.org/blog/2012/05/10/http-and-json-in-highlight-js/en/
2825
+ [pojoaque]: http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html
2826
+ [ao]: https://github.com/angelolloqui
2827
+ [ar]: https://github.com/raleksandar
2828
+ [jc]: https://github.com/jcheng5
2829
+ [st]: https://github.com/tikhomirov
2830
+ [sr]: https://github.com/sourrust
2831
+ [ik]: https://github.com/ikalnitsky
2832
+
2833
+
2834
+ ## Version 6.2
2835
+
2836
+ A lot of things happened in highlight.js since the last version! We've got nine
2837
+ new contributors, the discussion group came alive, and the main branch on GitHub
2838
+ now counts more than 350 followers. Here are most significant results coming
2839
+ from all this activity:
2840
+
2841
+ - 5 (five!) new languages: Rust, ActionScript, CoffeeScript, MatLab and
2842
+ experimental support for markdown. Thanks go to [Andrey Vlasovskikh][av],
2843
+ [Alexander Myadzel][am], [Dmytrii Nagirniak][dn], [Oleg Efimov][oe], [Denis
2844
+ Bardadym][db] and [John Crepezzi][jc].
2845
+
2846
+ - 2 new style themes: Monokai by [Luigi Maselli][lm] and stylistic imitation of
2847
+ another well-known highlighter Google Code Prettify by [Aahan Krish][ak].
2848
+
2849
+ - A vast number of [correctness fixes and code refactorings][log], mostly made
2850
+ by [Oleg Efimov][oe] and [Evgeny Stepanischev][es].
2851
+
2852
+ [av]: https://github.com/vlasovskikh
2853
+ [am]: https://github.com/myadzel
2854
+ [dn]: https://github.com/dnagir
2855
+ [oe]: https://github.com/Sannis
2856
+ [db]: https://github.com/btd
2857
+ [jc]: https://github.com/seejohnrun
2858
+ [lm]: http://grigio.org/
2859
+ [ak]: https://github.com/geekpanth3r
2860
+ [es]: https://github.com/bolknote
2861
+ [log]: https://github.com/isagalaev/highlight.js/commits/
2862
+
2863
+
2864
+ ## Version 6.1 — Solarized
2865
+
2866
+ [Jeremy Hull][jh] has implemented my dream feature — a port of [Solarized][]
2867
+ style theme famous for being based on the intricate color theory to achieve
2868
+ correct contrast and color perception. It is now available for highlight.js in
2869
+ both variants — light and dark.
2870
+
2871
+ This version also adds a new original style Arta. Its author pumbur maintains a
2872
+ [heavily modified fork of highlight.js][pb] on GitHub.
2873
+
2874
+ [jh]: https://github.com/sourrust
2875
+ [solarized]: http://ethanschoonover.com/solarized
2876
+ [pb]: https://github.com/pumbur/highlight.js
2877
+
2878
+
2879
+ ## Version 6.0
2880
+
2881
+ New major version of the highlighter has been built on a significantly
2882
+ refactored syntax. Due to this it's even smaller than the previous one while
2883
+ supporting more languages!
2884
+
2885
+ New languages are:
2886
+
2887
+ - Haskell by [Jeremy Hull][sourrust]
2888
+ - Erlang in two varieties — module and REPL — made collectively by [Nikolay
2889
+ Zakharov][desh], [Dmitry Kovega][arhibot] and [Sergey Ignatov][ignatov]
2890
+ - Objective C by [Valerii Hiora][vhbit]
2891
+ - Vala by [Antono Vasiljev][antono]
2892
+ - Go by [Stephan Kountso][steplg]
2893
+
2894
+ [sourrust]: https://github.com/sourrust
2895
+ [desh]: http://desh.su/
2896
+ [arhibot]: https://github.com/arhibot
2897
+ [ignatov]: https://github.com/ignatov
2898
+ [vhbit]: https://github.com/vhbit
2899
+ [antono]: https://github.com/antono
2900
+ [steplg]: https://github.com/steplg
2901
+
2902
+ Also this version is marginally faster and fixes a number of small long-standing
2903
+ bugs.
2904
+
2905
+ Developer overview of the new language syntax is available in a [blog post about
2906
+ recent beta release][beta].
2907
+
2908
+ [beta]: http://softwaremaniacs.org/blog/2011/04/25/highlight-js-60-beta/en/
2909
+
2910
+ P.S. New version is not yet available on a Yandex CDN, so for now you have to
2911
+ download [your own copy][d].
2912
+
2913
+ [d]: /soft/highlight/en/download/
2914
+
2915
+
2916
+ ## Version 5.14
2917
+
2918
+ Fixed bugs in HTML/XML detection and relevance introduced in previous
2919
+ refactoring.
2920
+
2921
+ Also test.html now shows the second best result of language detection by
2922
+ relevance.
2923
+
2924
+
2925
+ ## Version 5.13
2926
+
2927
+ Past weekend began with a couple of simple additions for existing languages but
2928
+ ended up in a big code refactoring bringing along nice improvements for language
2929
+ developers.
2930
+
2931
+ ### For users
2932
+
2933
+ - Description of C++ has got new keywords from the upcoming [C++ 0x][] standard.
2934
+ - Description of HTML has got new tags from [HTML 5][].
2935
+ - CSS-styles have been unified to use consistent padding and also have lost
2936
+ pop-outs with names of detected languages.
2937
+ - [Igor Kalnitsky][ik] has sent two new language descriptions: CMake & VHDL.
2938
+
2939
+ This makes total number of languages supported by highlight.js to reach 35.
2940
+
2941
+ Bug fixes:
2942
+
2943
+ - Custom classes on `<pre>` tags are not being overridden anymore
2944
+ - More correct highlighting of code blocks inside non-`<pre>` containers:
2945
+ highlighter now doesn't insist on replacing them with its own container and
2946
+ just replaces the contents.
2947
+ - Small fixes in browser compatibility and heuristics.
2948
+
2949
+ [c++ 0x]: http://ru.wikipedia.org/wiki/C%2B%2B0x
2950
+ [html 5]: http://en.wikipedia.org/wiki/HTML5
2951
+ [ik]: http://kalnitsky.org.ua/
2952
+
2953
+ ### For developers
2954
+
2955
+ The most significant change is the ability to include language submodes right
2956
+ under `contains` instead of defining explicit named submodes in the main array:
2957
+
2958
+ contains: [
2959
+ 'string',
2960
+ 'number',
2961
+ {begin: '\\n', end: hljs.IMMEDIATE_RE}
2962
+ ]
2963
+
2964
+ This is useful for auxiliary modes needed only in one place to define parsing.
2965
+ Note that such modes often don't have `className` and hence won't generate a
2966
+ separate `<span>` in the resulting markup. This is similar in effect to
2967
+ `noMarkup: true`. All existing languages have been refactored accordingly.
2968
+
2969
+ Test file test.html has at last become a real test. Now it not only puts the
2970
+ detected language name under the code snippet but also tests if it matches the
2971
+ expected one. Test summary is displayed right above all language snippets.
2972
+
2973
+
2974
+ ## CDN
2975
+
2976
+ Fine people at [Yandex][] agreed to host highlight.js on their big fast servers.
2977
+ [Link up][l]!
2978
+
2979
+ [yandex]: http://yandex.com/
2980
+ [l]: http://softwaremaniacs.org/soft/highlight/en/download/
2981
+
2982
+
2983
+ ## Version 5.10 — "Paris".
2984
+
2985
+ Though I'm on a vacation in Paris, I decided to release a new version with a
2986
+ couple of small fixes:
2987
+
2988
+ - Tomas Vitvar discovered that TAB replacement doesn't always work when used
2989
+ with custom markup in code
2990
+ - SQL parsing is even more rigid now and doesn't step over SmallTalk in tests
2991
+
2992
+
2993
+ ## Version 5.9
2994
+
2995
+ A long-awaited version is finally released.
2996
+
2997
+ New languages:
2998
+
2999
+ - Andrew Fedorov made a definition for Lua
3000
+ - a long-time highlight.js contributor [Peter Leonov][pl] made a definition for
3001
+ Nginx config
3002
+ - [Vladimir Moskva][vm] made a definition for TeX
3003
+
3004
+ [pl]: http://kung-fu-tzu.ru/
3005
+ [vm]: http://fulc.ru/
3006
+
3007
+ Fixes for existing languages:
3008
+
3009
+ - [Loren Segal][ls] reworked the Ruby definition and added highlighting for
3010
+ [YARD][] inline documentation
3011
+ - the definition of SQL has become more solid and now it shouldn't be overly
3012
+ greedy when it comes to language detection
3013
+
3014
+ [ls]: http://gnuu.org/
3015
+ [yard]: http://yardoc.org/
3016
+
3017
+ The highlighter has become more usable as a library allowing to do highlighting
3018
+ from initialization code of JS frameworks and in ajax methods (see.
3019
+ readme.eng.txt).
3020
+
3021
+ Also this version drops support for the [WordPress][wp] plugin. Everyone is
3022
+ welcome to [pick up its maintenance][p] if needed.
3023
+
3024
+ [wp]: http://wordpress.org/
3025
+ [p]: http://bazaar.launchpad.net/~isagalaev/+junk/highlight/annotate/342/src/wp_highlight.js.php
3026
+
3027
+
3028
+ ## Version 5.8
3029
+
3030
+ - Jan Berkel has contributed a definition for Scala. +1 to hotness!
3031
+ - All CSS-styles are rewritten to work only inside `<pre>` tags to avoid
3032
+ conflicts with host site styles.
3033
+
3034
+
3035
+ ## Version 5.7.
3036
+
3037
+ Fixed escaping of quotes in VBScript strings.
3038
+
3039
+
3040
+ ## Version 5.5
3041
+
3042
+ This version brings a small change: now .ini-files allow digits, underscores and
3043
+ square brackets in key names.
3044
+
3045
+
3046
+ ## Version 5.4
3047
+
3048
+ Fixed small but upsetting bug in the packer which caused incorrect highlighting
3049
+ of explicitly specified languages. Thanks to Andrew Fedorov for precise
3050
+ diagnostics!
3051
+
3052
+
3053
+ ## Version 5.3
3054
+
3055
+ The version to fulfil old promises.
3056
+
3057
+ The most significant change is that highlight.js now preserves custom user
3058
+ markup in code along with its own highlighting markup. This means that now it's
3059
+ possible to use, say, links in code. Thanks to [Vladimir Dolzhenko][vd] for the
3060
+ [initial proposal][1] and for making a proof-of-concept patch.
3061
+
3062
+ Also in this version:
3063
+
3064
+ - [Vasily Polovnyov][vp] has sent a GitHub-like style and has implemented
3065
+ support for CSS @-rules and Ruby symbols.
3066
+ - Yura Zaripov has sent two styles: Brown Paper and School Book.
3067
+ - Oleg Volchkov has sent a definition for [Parser 3][p3].
3068
+
3069
+ [1]: http://softwaremaniacs.org/forum/highlightjs/6612/
3070
+ [p3]: http://www.parser.ru/
3071
+ [vp]: http://vasily.polovnyov.ru/
3072
+ [vd]: http://dolzhenko.blogspot.com/
3073
+
3074
+
3075
+ ## Version 5.2
3076
+
3077
+ - at last it's possible to replace indentation TABs with something sensible
3078
+ (e.g. 2 or 4 spaces)
3079
+ - new keywords and built-ins for 1C by Sergey Baranov
3080
+ - a couple of small fixes to Apache highlighting
3081
+
3082
+
3083
+ ## Version 5.1
3084
+
3085
+ This is one of those nice version consisting entirely of new and shiny
3086
+ contributions!
3087
+
3088
+ - [Vladimir Ermakov][vooon] created highlighting for AVR Assembler
3089
+ - [Ruslan Keba][rukeba] created highlighting for Apache config file. Also his
3090
+ original visual style for it is now available for all highlight.js languages
3091
+ under the name "Magula".
3092
+ - [Shuen-Huei Guan][drake] (aka Drake) sent new keywords for RenderMan
3093
+ languages. Also thanks go to [Konstantin Evdokimenko][ke] for his advice on
3094
+ the matter.
3095
+
3096
+ [vooon]: http://vehq.ru/about/
3097
+ [rukeba]: http://rukeba.com/
3098
+ [drake]: http://drakeguan.org/
3099
+ [ke]: http://k-evdokimenko.moikrug.ru/
3100
+
3101
+
3102
+ ## Version 5.0
3103
+
3104
+ The main change in the new major version of highlight.js is a mechanism for
3105
+ packing several languages along with the library itself into a single compressed
3106
+ file. Now sites using several languages will load considerably faster because
3107
+ the library won't dynamically include additional files while loading.
3108
+
3109
+ Also this version fixes a long-standing bug with Javascript highlighting that
3110
+ couldn't distinguish between regular expressions and division operations.
3111
+
3112
+ And as usually there were a couple of minor correctness fixes.
3113
+
3114
+ Great thanks to all contributors! Keep using highlight.js.
3115
+
3116
+
3117
+ ## Version 4.3
3118
+
3119
+ This version comes with two contributions from [Jason Diamond][jd]:
3120
+
3121
+ - language definition for C# (yes! it was a long-missed thing!)
3122
+ - Visual Studio-like highlighting style
3123
+
3124
+ Plus there are a couple of minor bug fixes for parsing HTML and XML attributes.
3125
+
3126
+ [jd]: http://jason.diamond.name/weblog/
3127
+
3128
+
3129
+ ## Version 4.2
3130
+
3131
+ The biggest news is highlighting for Lisp, courtesy of Vasily Polovnyov. It's
3132
+ somewhat experimental meaning that for highlighting "keywords" it doesn't use
3133
+ any pre-defined set of a Lisp dialect. Instead it tries to highlight first word
3134
+ in parentheses wherever it makes sense. I'd like to ask people programming in
3135
+ Lisp to confirm if it's a good idea and send feedback to [the forum][f].
3136
+
3137
+ Other changes:
3138
+
3139
+ - Smalltalk was excluded from DEFAULT_LANGUAGES to save traffic
3140
+ - [Vladimir Epifanov][voldmar] has implemented javascript style switcher for
3141
+ test.html
3142
+ - comments now allowed inside Ruby function definition
3143
+ - [MEL][] language from [Shuen-Huei Guan][drake]
3144
+ - whitespace now allowed between `<pre>` and `<code>`
3145
+ - better auto-detection of C++ and PHP
3146
+ - HTML allows embedded VBScript (`<% .. %>`)
3147
+
3148
+ [f]: http://softwaremaniacs.org/forum/highlightjs/
3149
+ [voldmar]: http://voldmar.ya.ru/
3150
+ [mel]: http://en.wikipedia.org/wiki/Maya_Embedded_Language
3151
+ [drake]: http://drakeguan.org/
3152
+
3153
+
3154
+ ## Version 4.1
3155
+
3156
+ Languages:
3157
+
3158
+ - Bash from Vah
3159
+ - DOS bat-files from Alexander Makarov (Sam)
3160
+ - Diff files from Vasily Polovnyov
3161
+ - Ini files from myself though initial idea was from Sam
3162
+
3163
+ Styles:
3164
+
3165
+ - Zenburn from Vladimir Epifanov, this is an imitation of a
3166
+ [well-known theme for Vim][zenburn].
3167
+ - Ascetic from myself, as a realization of ideals of non-flashy highlighting:
3168
+ just one color in only three gradations :-)
3169
+
3170
+ In other news. [One small bug][bug] was fixed, built-in keywords were added for
3171
+ Python and C++ which improved auto-detection for the latter (it was shame that
3172
+ [my wife's blog][alenacpp] had issues with it from time to time). And lastly
3173
+ thanks go to Sam for getting rid of my stylistic comments in code that were
3174
+ getting in the way of [JSMin][].
3175
+
3176
+ [zenburn]: http://en.wikipedia.org/wiki/Zenburn
3177
+ [alenacpp]: http://alenacpp.blogspot.com/
3178
+ [bug]: http://softwaremaniacs.org/forum/viewtopic.php?id=1823
3179
+ [jsmin]: http://code.google.com/p/jsmin-php/
3180
+
3181
+
3182
+ ## Version 4.0
3183
+
3184
+ New major version is a result of vast refactoring and of many contributions.
3185
+
3186
+ Visible new features:
3187
+
3188
+ - Highlighting of embedded languages. Currently is implemented highlighting of
3189
+ Javascript and CSS inside HTML.
3190
+ - Bundled 5 ready-made style themes!
3191
+
3192
+ Invisible new features:
3193
+
3194
+ - Highlight.js no longer pollutes global namespace. Only one object and one
3195
+ function for backward compatibility.
3196
+ - Performance is further increased by about 15%.
3197
+
3198
+ Changing of a major version number caused by a new format of language definition
3199
+ files. If you use some third-party language files they should be updated.
3200
+
3201
+
3202
+ ## Version 3.5
3203
+
3204
+ A very nice version in my opinion fixing a number of small bugs and slightly
3205
+ increased speed in a couple of corner cases. Thanks to everybody who reports
3206
+ bugs in he [forum][f] and by email!
3207
+
3208
+ There is also a new language — XML. A custom XML formerly was detected as HTML
3209
+ and didn't highlight custom tags. In this version I tried to make custom XML to
3210
+ be detected and highlighted by its own rules. Which by the way include such
3211
+ things as CDATA sections and processing instructions (`<? ... ?>`).
3212
+
3213
+ [f]: http://softwaremaniacs.org/forum/viewforum.php?id=6
3214
+
3215
+
3216
+ ## Version 3.3
3217
+
3218
+ [Vladimir Gubarkov][xonix] has provided an interesting and useful addition.
3219
+ File export.html contains a little program that shows and allows to copy and
3220
+ paste an HTML code generated by the highlighter for any code snippet. This can
3221
+ be useful in situations when one can't use the script itself on a site.
3222
+
3223
+
3224
+ [xonix]: http://xonixx.blogspot.com/
3225
+
3226
+
3227
+ ## Version 3.2 consists completely of contributions:
3228
+
3229
+ - Vladimir Gubarkov has described SmallTalk
3230
+ - Yuri Ivanov has described 1C
3231
+ - Peter Leonov has packaged the highlighter as a Firefox extension
3232
+ - Vladimir Ermakov has compiled a mod for phpBB
3233
+
3234
+ Many thanks to you all!
3235
+
3236
+
3237
+ ## Version 3.1
3238
+
3239
+ Three new languages are available: Django templates, SQL and Axapta. The latter
3240
+ two are sent by [Dmitri Roudakov][1]. However I've almost entirely rewrote an
3241
+ SQL definition but I'd never started it be it from the ground up :-)
3242
+
3243
+ The engine itself has got a long awaited feature of grouping keywords
3244
+ ("keyword", "built-in function", "literal"). No more hacks!
3245
+
3246
+ [1]: http://roudakov.ru/
3247
+
3248
+
3249
+ ## Version 3.0
3250
+
3251
+ It is major mainly because now highlight.js has grown large and has become
3252
+ modular. Now when you pass it a list of languages to highlight it will
3253
+ dynamically load into a browser only those languages.
3254
+
3255
+ Also:
3256
+
3257
+ - Konstantin Evdokimenko of [RibKit][] project has created a highlighting for
3258
+ RenderMan Shading Language and RenderMan Interface Bytestream. Yay for more
3259
+ languages!
3260
+ - Heuristics for C++ and HTML got better.
3261
+ - I've implemented (at last) a correct handling of backslash escapes in C-like
3262
+ languages.
3263
+
3264
+ There is also a small backwards incompatible change in the new version. The
3265
+ function initHighlighting that was used to initialize highlighting instead of
3266
+ initHighlightingOnLoad a long time ago no longer works. If you by chance still
3267
+ use it — replace it with the new one.
3268
+
3269
+ [RibKit]: http://ribkit.sourceforge.net/
3270
+
3271
+
3272
+ ## Version 2.9
3273
+
3274
+ Highlight.js is a parser, not just a couple of regular expressions. That said
3275
+ I'm glad to announce that in the new version 2.9 has support for:
3276
+
3277
+ - in-string substitutions for Ruby -- `#{...}`
3278
+ - strings from from numeric symbol codes (like #XX) for Delphi
3279
+
3280
+
3281
+ ## Version 2.8
3282
+
3283
+ A maintenance release with more tuned heuristics. Fully backwards compatible.
3284
+
3285
+
3286
+ ## Version 2.7
3287
+
3288
+ - Nikita Ledyaev presents highlighting for VBScript, yay!
3289
+ - A couple of bugs with escaping in strings were fixed thanks to Mickle
3290
+ - Ongoing tuning of heuristics
3291
+
3292
+ Fixed bugs were rather unpleasant so I encourage everyone to upgrade!
3293
+
3294
+
3295
+ ## Version 2.4
3296
+
3297
+ - Peter Leonov provides another improved highlighting for Perl
3298
+ - Javascript gets a new kind of keywords — "literals". These are the words
3299
+ "true", "false" and "null"
3300
+
3301
+ Also highlight.js homepage now lists sites that use the library. Feel free to
3302
+ add your site by [dropping me a message][mail] until I find the time to build a
3303
+ submit form.
3304
+
3305
+ [mail]: mailto:Maniac@SoftwareManiacs.Org
3306
+
3307
+
3308
+ ## Version 2.3
3309
+
3310
+ This version fixes IE breakage in previous version. My apologies to all who have
3311
+ already downloaded that one!
3312
+
3313
+
3314
+ ## Version 2.2
3315
+
3316
+ - added highlighting for Javascript
3317
+ - at last fixed parsing of Delphi's escaped apostrophes in strings
3318
+ - in Ruby fixed highlighting of keywords 'def' and 'class', same for 'sub' in
3319
+ Perl
3320
+
3321
+
3322
+ ## Version 2.0
3323
+
3324
+ - Ruby support by [Anton Kovalyov][ak]
3325
+ - speed increased by orders of magnitude due to new way of parsing
3326
+ - this same way allows now correct highlighting of keywords in some tricky
3327
+ places (like keyword "End" at the end of Delphi classes)
3328
+
3329
+ [ak]: http://anton.kovalyov.net/
3330
+
3331
+
3332
+ ## Version 1.0
3333
+
3334
+ Version 1.0 of javascript syntax highlighter is released!
3335
+
3336
+ It's the first version available with English description. Feel free to post
3337
+ your comments and question to [highlight.js forum][forum]. And don't be afraid
3338
+ if you find there some fancy Cyrillic letters -- it's for Russian users too :-)
3339
+
3340
+ [forum]: http://softwaremaniacs.org/forum/viewforum.php?id=6