@pfmcodes/caret 0.1.1

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 (1571) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +534 -0
  3. package/esm/editor.js +224 -0
  4. package/esm/index.js +10 -0
  5. package/esm/languages.js +46 -0
  6. package/esm/theme.js +18 -0
  7. package/highlight.js/CHANGES.md +3556 -0
  8. package/highlight.js/LICENSE +29 -0
  9. package/highlight.js/README.md +521 -0
  10. package/highlight.js/SECURITY.md +19 -0
  11. package/highlight.js/SUPPORTED_LANGUAGES.md +283 -0
  12. package/highlight.js/VERSION_10_UPGRADE.md +58 -0
  13. package/highlight.js/VERSION_11_UPGRADE.md +203 -0
  14. package/highlight.js/es/common.d.ts +3 -0
  15. package/highlight.js/es/common.js +4 -0
  16. package/highlight.js/es/core.d.ts +3 -0
  17. package/highlight.js/es/core.js +4 -0
  18. package/highlight.js/es/index.js +4 -0
  19. package/highlight.js/es/languages/1c.js +544 -0
  20. package/highlight.js/es/languages/1c.js.js +11 -0
  21. package/highlight.js/es/languages/abnf.js +83 -0
  22. package/highlight.js/es/languages/abnf.js.js +11 -0
  23. package/highlight.js/es/languages/accesslog.js +92 -0
  24. package/highlight.js/es/languages/accesslog.js.js +11 -0
  25. package/highlight.js/es/languages/actionscript.js +153 -0
  26. package/highlight.js/es/languages/actionscript.js.js +11 -0
  27. package/highlight.js/es/languages/ada.js +265 -0
  28. package/highlight.js/es/languages/ada.js.js +11 -0
  29. package/highlight.js/es/languages/angelscript.js +178 -0
  30. package/highlight.js/es/languages/angelscript.js.js +11 -0
  31. package/highlight.js/es/languages/apache.js +105 -0
  32. package/highlight.js/es/languages/apache.js.js +11 -0
  33. package/highlight.js/es/languages/applescript.js +149 -0
  34. package/highlight.js/es/languages/applescript.js.js +11 -0
  35. package/highlight.js/es/languages/arcade.js +428 -0
  36. package/highlight.js/es/languages/arcade.js.js +11 -0
  37. package/highlight.js/es/languages/arduino.js +1008 -0
  38. package/highlight.js/es/languages/arduino.js.js +11 -0
  39. package/highlight.js/es/languages/armasm.js +124 -0
  40. package/highlight.js/es/languages/armasm.js.js +11 -0
  41. package/highlight.js/es/languages/asciidoc.js +261 -0
  42. package/highlight.js/es/languages/asciidoc.js.js +11 -0
  43. package/highlight.js/es/languages/aspectj.js +231 -0
  44. package/highlight.js/es/languages/aspectj.js.js +11 -0
  45. package/highlight.js/es/languages/autohotkey.js +75 -0
  46. package/highlight.js/es/languages/autohotkey.js.js +11 -0
  47. package/highlight.js/es/languages/autoit.js +178 -0
  48. package/highlight.js/es/languages/autoit.js.js +11 -0
  49. package/highlight.js/es/languages/avrasm.js +78 -0
  50. package/highlight.js/es/languages/avrasm.js.js +11 -0
  51. package/highlight.js/es/languages/awk.js +68 -0
  52. package/highlight.js/es/languages/awk.js.js +11 -0
  53. package/highlight.js/es/languages/axapta.js +188 -0
  54. package/highlight.js/es/languages/axapta.js.js +11 -0
  55. package/highlight.js/es/languages/bash.js +409 -0
  56. package/highlight.js/es/languages/bash.js.js +11 -0
  57. package/highlight.js/es/languages/basic.js +236 -0
  58. package/highlight.js/es/languages/basic.js.js +11 -0
  59. package/highlight.js/es/languages/bnf.js +39 -0
  60. package/highlight.js/es/languages/bnf.js.js +11 -0
  61. package/highlight.js/es/languages/brainfuck.js +54 -0
  62. package/highlight.js/es/languages/brainfuck.js.js +11 -0
  63. package/highlight.js/es/languages/c.js +333 -0
  64. package/highlight.js/es/languages/c.js.js +11 -0
  65. package/highlight.js/es/languages/cal.js +160 -0
  66. package/highlight.js/es/languages/cal.js.js +11 -0
  67. package/highlight.js/es/languages/capnproto.js +99 -0
  68. package/highlight.js/es/languages/capnproto.js.js +11 -0
  69. package/highlight.js/es/languages/ceylon.js +140 -0
  70. package/highlight.js/es/languages/ceylon.js.js +11 -0
  71. package/highlight.js/es/languages/clean.js +67 -0
  72. package/highlight.js/es/languages/clean.js.js +11 -0
  73. package/highlight.js/es/languages/clojure-repl.js +27 -0
  74. package/highlight.js/es/languages/clojure-repl.js.js +11 -0
  75. package/highlight.js/es/languages/clojure.js +184 -0
  76. package/highlight.js/es/languages/clojure.js.js +11 -0
  77. package/highlight.js/es/languages/cmake.js +64 -0
  78. package/highlight.js/es/languages/cmake.js.js +11 -0
  79. package/highlight.js/es/languages/coffeescript.js +368 -0
  80. package/highlight.js/es/languages/coffeescript.js.js +11 -0
  81. package/highlight.js/es/languages/coq.js +445 -0
  82. package/highlight.js/es/languages/coq.js.js +11 -0
  83. package/highlight.js/es/languages/cos.js +140 -0
  84. package/highlight.js/es/languages/cos.js.js +11 -0
  85. package/highlight.js/es/languages/cpp.js +605 -0
  86. package/highlight.js/es/languages/cpp.js.js +11 -0
  87. package/highlight.js/es/languages/crmsh.js +100 -0
  88. package/highlight.js/es/languages/crmsh.js.js +11 -0
  89. package/highlight.js/es/languages/crystal.js +312 -0
  90. package/highlight.js/es/languages/crystal.js.js +11 -0
  91. package/highlight.js/es/languages/csharp.js +412 -0
  92. package/highlight.js/es/languages/csharp.js.js +11 -0
  93. package/highlight.js/es/languages/csp.js +58 -0
  94. package/highlight.js/es/languages/csp.js.js +11 -0
  95. package/highlight.js/es/languages/css.js +949 -0
  96. package/highlight.js/es/languages/css.js.js +11 -0
  97. package/highlight.js/es/languages/d.js +272 -0
  98. package/highlight.js/es/languages/d.js.js +11 -0
  99. package/highlight.js/es/languages/dart.js +271 -0
  100. package/highlight.js/es/languages/dart.js.js +11 -0
  101. package/highlight.js/es/languages/delphi.js +246 -0
  102. package/highlight.js/es/languages/delphi.js.js +11 -0
  103. package/highlight.js/es/languages/diff.js +62 -0
  104. package/highlight.js/es/languages/diff.js.js +11 -0
  105. package/highlight.js/es/languages/django.js +75 -0
  106. package/highlight.js/es/languages/django.js.js +11 -0
  107. package/highlight.js/es/languages/dns.js +78 -0
  108. package/highlight.js/es/languages/dns.js.js +11 -0
  109. package/highlight.js/es/languages/dockerfile.js +44 -0
  110. package/highlight.js/es/languages/dockerfile.js.js +11 -0
  111. package/highlight.js/es/languages/dos.js +167 -0
  112. package/highlight.js/es/languages/dos.js.js +11 -0
  113. package/highlight.js/es/languages/dsconfig.js +66 -0
  114. package/highlight.js/es/languages/dsconfig.js.js +11 -0
  115. package/highlight.js/es/languages/dts.js +157 -0
  116. package/highlight.js/es/languages/dts.js.js +11 -0
  117. package/highlight.js/es/languages/dust.js +47 -0
  118. package/highlight.js/es/languages/dust.js.js +11 -0
  119. package/highlight.js/es/languages/ebnf.js +54 -0
  120. package/highlight.js/es/languages/ebnf.js.js +11 -0
  121. package/highlight.js/es/languages/elixir.js +279 -0
  122. package/highlight.js/es/languages/elixir.js.js +11 -0
  123. package/highlight.js/es/languages/elm.js +143 -0
  124. package/highlight.js/es/languages/elm.js.js +11 -0
  125. package/highlight.js/es/languages/erb.js +29 -0
  126. package/highlight.js/es/languages/erb.js.js +11 -0
  127. package/highlight.js/es/languages/erlang-repl.js +54 -0
  128. package/highlight.js/es/languages/erlang-repl.js.js +11 -0
  129. package/highlight.js/es/languages/erlang.js +235 -0
  130. package/highlight.js/es/languages/erlang.js.js +11 -0
  131. package/highlight.js/es/languages/excel.js +580 -0
  132. package/highlight.js/es/languages/excel.js.js +11 -0
  133. package/highlight.js/es/languages/fix.js +39 -0
  134. package/highlight.js/es/languages/fix.js.js +11 -0
  135. package/highlight.js/es/languages/flix.js +79 -0
  136. package/highlight.js/es/languages/flix.js.js +11 -0
  137. package/highlight.js/es/languages/fortran.js +574 -0
  138. package/highlight.js/es/languages/fortran.js.js +11 -0
  139. package/highlight.js/es/languages/fsharp.js +627 -0
  140. package/highlight.js/es/languages/fsharp.js.js +11 -0
  141. package/highlight.js/es/languages/gams.js +181 -0
  142. package/highlight.js/es/languages/gams.js.js +11 -0
  143. package/highlight.js/es/languages/gauss.js +306 -0
  144. package/highlight.js/es/languages/gauss.js.js +11 -0
  145. package/highlight.js/es/languages/gcode.js +189 -0
  146. package/highlight.js/es/languages/gcode.js.js +11 -0
  147. package/highlight.js/es/languages/gherkin.js +49 -0
  148. package/highlight.js/es/languages/gherkin.js.js +11 -0
  149. package/highlight.js/es/languages/glsl.js +128 -0
  150. package/highlight.js/es/languages/glsl.js.js +11 -0
  151. package/highlight.js/es/languages/gml.js +3130 -0
  152. package/highlight.js/es/languages/gml.js.js +11 -0
  153. package/highlight.js/es/languages/go.js +156 -0
  154. package/highlight.js/es/languages/go.js.js +11 -0
  155. package/highlight.js/es/languages/golo.js +81 -0
  156. package/highlight.js/es/languages/golo.js.js +11 -0
  157. package/highlight.js/es/languages/gradle.js +190 -0
  158. package/highlight.js/es/languages/gradle.js.js +11 -0
  159. package/highlight.js/es/languages/graphql.js +78 -0
  160. package/highlight.js/es/languages/graphql.js.js +11 -0
  161. package/highlight.js/es/languages/groovy.js +190 -0
  162. package/highlight.js/es/languages/groovy.js.js +11 -0
  163. package/highlight.js/es/languages/haml.js +113 -0
  164. package/highlight.js/es/languages/haml.js.js +11 -0
  165. package/highlight.js/es/languages/handlebars.js +258 -0
  166. package/highlight.js/es/languages/handlebars.js.js +11 -0
  167. package/highlight.js/es/languages/haskell.js +217 -0
  168. package/highlight.js/es/languages/haskell.js.js +11 -0
  169. package/highlight.js/es/languages/haxe.js +167 -0
  170. package/highlight.js/es/languages/haxe.js.js +11 -0
  171. package/highlight.js/es/languages/hsp.js +59 -0
  172. package/highlight.js/es/languages/hsp.js.js +11 -0
  173. package/highlight.js/es/languages/http.js +97 -0
  174. package/highlight.js/es/languages/http.js.js +11 -0
  175. package/highlight.js/es/languages/hy.js +137 -0
  176. package/highlight.js/es/languages/hy.js.js +11 -0
  177. package/highlight.js/es/languages/inform7.js +70 -0
  178. package/highlight.js/es/languages/inform7.js.js +11 -0
  179. package/highlight.js/es/languages/ini.js +121 -0
  180. package/highlight.js/es/languages/ini.js.js +11 -0
  181. package/highlight.js/es/languages/irpf90.js +107 -0
  182. package/highlight.js/es/languages/irpf90.js.js +11 -0
  183. package/highlight.js/es/languages/isbl.js +3205 -0
  184. package/highlight.js/es/languages/isbl.js.js +11 -0
  185. package/highlight.js/es/languages/java.js +291 -0
  186. package/highlight.js/es/languages/java.js.js +11 -0
  187. package/highlight.js/es/languages/javascript.js +769 -0
  188. package/highlight.js/es/languages/javascript.js.js +11 -0
  189. package/highlight.js/es/languages/jboss-cli.js +63 -0
  190. package/highlight.js/es/languages/jboss-cli.js.js +11 -0
  191. package/highlight.js/es/languages/json.js +54 -0
  192. package/highlight.js/es/languages/json.js.js +11 -0
  193. package/highlight.js/es/languages/julia-repl.js +51 -0
  194. package/highlight.js/es/languages/julia-repl.js.js +11 -0
  195. package/highlight.js/es/languages/julia.js +442 -0
  196. package/highlight.js/es/languages/julia.js.js +11 -0
  197. package/highlight.js/es/languages/kotlin.js +286 -0
  198. package/highlight.js/es/languages/kotlin.js.js +11 -0
  199. package/highlight.js/es/languages/lasso.js +171 -0
  200. package/highlight.js/es/languages/lasso.js.js +11 -0
  201. package/highlight.js/es/languages/latex.js +278 -0
  202. package/highlight.js/es/languages/latex.js.js +11 -0
  203. package/highlight.js/es/languages/ldif.js +31 -0
  204. package/highlight.js/es/languages/ldif.js.js +11 -0
  205. package/highlight.js/es/languages/leaf.js +97 -0
  206. package/highlight.js/es/languages/leaf.js.js +11 -0
  207. package/highlight.js/es/languages/less.js +1050 -0
  208. package/highlight.js/es/languages/less.js.js +11 -0
  209. package/highlight.js/es/languages/lisp.js +139 -0
  210. package/highlight.js/es/languages/lisp.js.js +11 -0
  211. package/highlight.js/es/languages/livecodeserver.js +173 -0
  212. package/highlight.js/es/languages/livecodeserver.js.js +11 -0
  213. package/highlight.js/es/languages/livescript.js +380 -0
  214. package/highlight.js/es/languages/livescript.js.js +11 -0
  215. package/highlight.js/es/languages/llvm.js +135 -0
  216. package/highlight.js/es/languages/llvm.js.js +11 -0
  217. package/highlight.js/es/languages/lsl.js +76 -0
  218. package/highlight.js/es/languages/lsl.js.js +11 -0
  219. package/highlight.js/es/languages/lua.js +81 -0
  220. package/highlight.js/es/languages/lua.js.js +11 -0
  221. package/highlight.js/es/languages/makefile.js +89 -0
  222. package/highlight.js/es/languages/makefile.js.js +11 -0
  223. package/highlight.js/es/languages/markdown.js +248 -0
  224. package/highlight.js/es/languages/markdown.js.js +11 -0
  225. package/highlight.js/es/languages/mathematica.js +7359 -0
  226. package/highlight.js/es/languages/mathematica.js.js +11 -0
  227. package/highlight.js/es/languages/matlab.js +107 -0
  228. package/highlight.js/es/languages/matlab.js.js +11 -0
  229. package/highlight.js/es/languages/maxima.js +414 -0
  230. package/highlight.js/es/languages/maxima.js.js +11 -0
  231. package/highlight.js/es/languages/mel.js +235 -0
  232. package/highlight.js/es/languages/mel.js.js +11 -0
  233. package/highlight.js/es/languages/mercury.js +108 -0
  234. package/highlight.js/es/languages/mercury.js.js +11 -0
  235. package/highlight.js/es/languages/mipsasm.js +104 -0
  236. package/highlight.js/es/languages/mipsasm.js.js +11 -0
  237. package/highlight.js/es/languages/mizar.js +27 -0
  238. package/highlight.js/es/languages/mizar.js.js +11 -0
  239. package/highlight.js/es/languages/mojolicious.js +36 -0
  240. package/highlight.js/es/languages/mojolicious.js.js +11 -0
  241. package/highlight.js/es/languages/monkey.js +184 -0
  242. package/highlight.js/es/languages/monkey.js.js +11 -0
  243. package/highlight.js/es/languages/moonscript.js +141 -0
  244. package/highlight.js/es/languages/moonscript.js.js +11 -0
  245. package/highlight.js/es/languages/n1ql.js +365 -0
  246. package/highlight.js/es/languages/n1ql.js.js +11 -0
  247. package/highlight.js/es/languages/nestedtext.js +83 -0
  248. package/highlight.js/es/languages/nestedtext.js.js +11 -0
  249. package/highlight.js/es/languages/nginx.js +153 -0
  250. package/highlight.js/es/languages/nginx.js.js +11 -0
  251. package/highlight.js/es/languages/nim.js +187 -0
  252. package/highlight.js/es/languages/nim.js.js +11 -0
  253. package/highlight.js/es/languages/nix.js +372 -0
  254. package/highlight.js/es/languages/nix.js.js +11 -0
  255. package/highlight.js/es/languages/node-repl.js +33 -0
  256. package/highlight.js/es/languages/node-repl.js.js +11 -0
  257. package/highlight.js/es/languages/nsis.js +557 -0
  258. package/highlight.js/es/languages/nsis.js.js +11 -0
  259. package/highlight.js/es/languages/objectivec.js +253 -0
  260. package/highlight.js/es/languages/objectivec.js.js +11 -0
  261. package/highlight.js/es/languages/ocaml.js +83 -0
  262. package/highlight.js/es/languages/ocaml.js.js +11 -0
  263. package/highlight.js/es/languages/openscad.js +77 -0
  264. package/highlight.js/es/languages/openscad.js.js +11 -0
  265. package/highlight.js/es/languages/oxygene.js +87 -0
  266. package/highlight.js/es/languages/oxygene.js.js +11 -0
  267. package/highlight.js/es/languages/parser3.js +55 -0
  268. package/highlight.js/es/languages/parser3.js.js +11 -0
  269. package/highlight.js/es/languages/perl.js +504 -0
  270. package/highlight.js/es/languages/perl.js.js +11 -0
  271. package/highlight.js/es/languages/pf.js +60 -0
  272. package/highlight.js/es/languages/pf.js.js +11 -0
  273. package/highlight.js/es/languages/pgsql.js +525 -0
  274. package/highlight.js/es/languages/pgsql.js.js +11 -0
  275. package/highlight.js/es/languages/php-template.js +54 -0
  276. package/highlight.js/es/languages/php-template.js.js +11 -0
  277. package/highlight.js/es/languages/php.js +625 -0
  278. package/highlight.js/es/languages/php.js.js +11 -0
  279. package/highlight.js/es/languages/plaintext.js +19 -0
  280. package/highlight.js/es/languages/plaintext.js.js +11 -0
  281. package/highlight.js/es/languages/pony.js +90 -0
  282. package/highlight.js/es/languages/pony.js.js +11 -0
  283. package/highlight.js/es/languages/powershell.js +317 -0
  284. package/highlight.js/es/languages/powershell.js.js +11 -0
  285. package/highlight.js/es/languages/processing.js +434 -0
  286. package/highlight.js/es/languages/processing.js.js +11 -0
  287. package/highlight.js/es/languages/profile.js +43 -0
  288. package/highlight.js/es/languages/profile.js.js +11 -0
  289. package/highlight.js/es/languages/prolog.js +97 -0
  290. package/highlight.js/es/languages/prolog.js.js +11 -0
  291. package/highlight.js/es/languages/properties.js +68 -0
  292. package/highlight.js/es/languages/properties.js.js +11 -0
  293. package/highlight.js/es/languages/protobuf.js +79 -0
  294. package/highlight.js/es/languages/protobuf.js.js +11 -0
  295. package/highlight.js/es/languages/puppet.js +146 -0
  296. package/highlight.js/es/languages/puppet.js.js +11 -0
  297. package/highlight.js/es/languages/purebasic.js +100 -0
  298. package/highlight.js/es/languages/purebasic.js.js +11 -0
  299. package/highlight.js/es/languages/python-repl.js +32 -0
  300. package/highlight.js/es/languages/python-repl.js.js +11 -0
  301. package/highlight.js/es/languages/python.js +436 -0
  302. package/highlight.js/es/languages/python.js.js +11 -0
  303. package/highlight.js/es/languages/q.js +38 -0
  304. package/highlight.js/es/languages/q.js.js +11 -0
  305. package/highlight.js/es/languages/qml.js +189 -0
  306. package/highlight.js/es/languages/qml.js.js +11 -0
  307. package/highlight.js/es/languages/r.js +257 -0
  308. package/highlight.js/es/languages/r.js.js +11 -0
  309. package/highlight.js/es/languages/reasonml.js +142 -0
  310. package/highlight.js/es/languages/reasonml.js.js +11 -0
  311. package/highlight.js/es/languages/rib.js +37 -0
  312. package/highlight.js/es/languages/rib.js.js +11 -0
  313. package/highlight.js/es/languages/roboconf.js +82 -0
  314. package/highlight.js/es/languages/roboconf.js.js +11 -0
  315. package/highlight.js/es/languages/routeros.js +164 -0
  316. package/highlight.js/es/languages/routeros.js.js +11 -0
  317. package/highlight.js/es/languages/rsl.js +149 -0
  318. package/highlight.js/es/languages/rsl.js.js +11 -0
  319. package/highlight.js/es/languages/ruby.js +448 -0
  320. package/highlight.js/es/languages/ruby.js.js +11 -0
  321. package/highlight.js/es/languages/ruleslanguage.js +76 -0
  322. package/highlight.js/es/languages/ruleslanguage.js.js +11 -0
  323. package/highlight.js/es/languages/rust.js +326 -0
  324. package/highlight.js/es/languages/rust.js.js +11 -0
  325. package/highlight.js/es/languages/sas.js +557 -0
  326. package/highlight.js/es/languages/sas.js.js +11 -0
  327. package/highlight.js/es/languages/scala.js +214 -0
  328. package/highlight.js/es/languages/scala.js.js +11 -0
  329. package/highlight.js/es/languages/scheme.js +196 -0
  330. package/highlight.js/es/languages/scheme.js.js +11 -0
  331. package/highlight.js/es/languages/scilab.js +73 -0
  332. package/highlight.js/es/languages/scilab.js.js +11 -0
  333. package/highlight.js/es/languages/scss.js +939 -0
  334. package/highlight.js/es/languages/scss.js.js +11 -0
  335. package/highlight.js/es/languages/shell.js +33 -0
  336. package/highlight.js/es/languages/shell.js.js +11 -0
  337. package/highlight.js/es/languages/smali.js +126 -0
  338. package/highlight.js/es/languages/smali.js.js +11 -0
  339. package/highlight.js/es/languages/smalltalk.js +69 -0
  340. package/highlight.js/es/languages/smalltalk.js.js +11 -0
  341. package/highlight.js/es/languages/sml.js +75 -0
  342. package/highlight.js/es/languages/sml.js.js +11 -0
  343. package/highlight.js/es/languages/sqf.js +2662 -0
  344. package/highlight.js/es/languages/sqf.js.js +11 -0
  345. package/highlight.js/es/languages/sql.js +693 -0
  346. package/highlight.js/es/languages/sql.js.js +11 -0
  347. package/highlight.js/es/languages/stan.js +521 -0
  348. package/highlight.js/es/languages/stan.js.js +11 -0
  349. package/highlight.js/es/languages/stata.js +53 -0
  350. package/highlight.js/es/languages/stata.js.js +11 -0
  351. package/highlight.js/es/languages/step21.js +67 -0
  352. package/highlight.js/es/languages/step21.js.js +11 -0
  353. package/highlight.js/es/languages/stylus.js +999 -0
  354. package/highlight.js/es/languages/stylus.js.js +11 -0
  355. package/highlight.js/es/languages/subunit.js +44 -0
  356. package/highlight.js/es/languages/subunit.js.js +11 -0
  357. package/highlight.js/es/languages/swift.js +972 -0
  358. package/highlight.js/es/languages/swift.js.js +11 -0
  359. package/highlight.js/es/languages/taggerscript.js +59 -0
  360. package/highlight.js/es/languages/taggerscript.js.js +11 -0
  361. package/highlight.js/es/languages/tap.js +47 -0
  362. package/highlight.js/es/languages/tap.js.js +11 -0
  363. package/highlight.js/es/languages/tcl.js +191 -0
  364. package/highlight.js/es/languages/tcl.js.js +11 -0
  365. package/highlight.js/es/languages/thrift.js +77 -0
  366. package/highlight.js/es/languages/thrift.js.js +11 -0
  367. package/highlight.js/es/languages/tp.js +172 -0
  368. package/highlight.js/es/languages/tp.js.js +11 -0
  369. package/highlight.js/es/languages/twig.js +260 -0
  370. package/highlight.js/es/languages/twig.js.js +11 -0
  371. package/highlight.js/es/languages/typescript.js +913 -0
  372. package/highlight.js/es/languages/typescript.js.js +11 -0
  373. package/highlight.js/es/languages/vala.js +61 -0
  374. package/highlight.js/es/languages/vala.js.js +11 -0
  375. package/highlight.js/es/languages/vbnet.js +157 -0
  376. package/highlight.js/es/languages/vbnet.js.js +11 -0
  377. package/highlight.js/es/languages/vbscript-html.js +24 -0
  378. package/highlight.js/es/languages/vbscript-html.js.js +11 -0
  379. package/highlight.js/es/languages/vbscript.js +220 -0
  380. package/highlight.js/es/languages/vbscript.js.js +11 -0
  381. package/highlight.js/es/languages/verilog.js +550 -0
  382. package/highlight.js/es/languages/verilog.js.js +11 -0
  383. package/highlight.js/es/languages/vhdl.js +216 -0
  384. package/highlight.js/es/languages/vhdl.js.js +11 -0
  385. package/highlight.js/es/languages/vim.js +129 -0
  386. package/highlight.js/es/languages/vim.js.js +11 -0
  387. package/highlight.js/es/languages/wasm.js +139 -0
  388. package/highlight.js/es/languages/wasm.js.js +11 -0
  389. package/highlight.js/es/languages/wren.js +302 -0
  390. package/highlight.js/es/languages/wren.js.js +11 -0
  391. package/highlight.js/es/languages/x86asm.js +153 -0
  392. package/highlight.js/es/languages/x86asm.js.js +11 -0
  393. package/highlight.js/es/languages/xl.js +205 -0
  394. package/highlight.js/es/languages/xl.js.js +11 -0
  395. package/highlight.js/es/languages/xml.js +241 -0
  396. package/highlight.js/es/languages/xml.js.js +11 -0
  397. package/highlight.js/es/languages/xquery.js +360 -0
  398. package/highlight.js/es/languages/xquery.js.js +11 -0
  399. package/highlight.js/es/languages/yaml.js +213 -0
  400. package/highlight.js/es/languages/yaml.js.js +11 -0
  401. package/highlight.js/es/languages/zephir.js +129 -0
  402. package/highlight.js/es/languages/zephir.js.js +11 -0
  403. package/highlight.js/es/package.json +1 -0
  404. package/highlight.js/es/utils/regex.js +155 -0
  405. package/highlight.js/lib/common.d.ts +3 -0
  406. package/highlight.js/lib/common.js +42 -0
  407. package/highlight.js/lib/core.d.ts +3 -0
  408. package/highlight.js/lib/core.js +2597 -0
  409. package/highlight.js/lib/index.js +5 -0
  410. package/highlight.js/lib/languages/1c.js +544 -0
  411. package/highlight.js/lib/languages/1c.js.js +10 -0
  412. package/highlight.js/lib/languages/abnf.js +83 -0
  413. package/highlight.js/lib/languages/abnf.js.js +10 -0
  414. package/highlight.js/lib/languages/accesslog.js +92 -0
  415. package/highlight.js/lib/languages/accesslog.js.js +10 -0
  416. package/highlight.js/lib/languages/actionscript.js +153 -0
  417. package/highlight.js/lib/languages/actionscript.js.js +10 -0
  418. package/highlight.js/lib/languages/ada.js +265 -0
  419. package/highlight.js/lib/languages/ada.js.js +10 -0
  420. package/highlight.js/lib/languages/angelscript.js +178 -0
  421. package/highlight.js/lib/languages/angelscript.js.js +10 -0
  422. package/highlight.js/lib/languages/apache.js +105 -0
  423. package/highlight.js/lib/languages/apache.js.js +10 -0
  424. package/highlight.js/lib/languages/applescript.js +149 -0
  425. package/highlight.js/lib/languages/applescript.js.js +10 -0
  426. package/highlight.js/lib/languages/arcade.js +428 -0
  427. package/highlight.js/lib/languages/arcade.js.js +10 -0
  428. package/highlight.js/lib/languages/arduino.js +1008 -0
  429. package/highlight.js/lib/languages/arduino.js.js +10 -0
  430. package/highlight.js/lib/languages/armasm.js +124 -0
  431. package/highlight.js/lib/languages/armasm.js.js +10 -0
  432. package/highlight.js/lib/languages/asciidoc.js +261 -0
  433. package/highlight.js/lib/languages/asciidoc.js.js +10 -0
  434. package/highlight.js/lib/languages/aspectj.js +231 -0
  435. package/highlight.js/lib/languages/aspectj.js.js +10 -0
  436. package/highlight.js/lib/languages/autohotkey.js +75 -0
  437. package/highlight.js/lib/languages/autohotkey.js.js +10 -0
  438. package/highlight.js/lib/languages/autoit.js +178 -0
  439. package/highlight.js/lib/languages/autoit.js.js +10 -0
  440. package/highlight.js/lib/languages/avrasm.js +78 -0
  441. package/highlight.js/lib/languages/avrasm.js.js +10 -0
  442. package/highlight.js/lib/languages/awk.js +68 -0
  443. package/highlight.js/lib/languages/awk.js.js +10 -0
  444. package/highlight.js/lib/languages/axapta.js +188 -0
  445. package/highlight.js/lib/languages/axapta.js.js +10 -0
  446. package/highlight.js/lib/languages/bash.js +409 -0
  447. package/highlight.js/lib/languages/bash.js.js +10 -0
  448. package/highlight.js/lib/languages/basic.js +236 -0
  449. package/highlight.js/lib/languages/basic.js.js +10 -0
  450. package/highlight.js/lib/languages/bnf.js +39 -0
  451. package/highlight.js/lib/languages/bnf.js.js +10 -0
  452. package/highlight.js/lib/languages/brainfuck.js +54 -0
  453. package/highlight.js/lib/languages/brainfuck.js.js +10 -0
  454. package/highlight.js/lib/languages/c.js +333 -0
  455. package/highlight.js/lib/languages/c.js.js +10 -0
  456. package/highlight.js/lib/languages/cal.js +160 -0
  457. package/highlight.js/lib/languages/cal.js.js +10 -0
  458. package/highlight.js/lib/languages/capnproto.js +99 -0
  459. package/highlight.js/lib/languages/capnproto.js.js +10 -0
  460. package/highlight.js/lib/languages/ceylon.js +140 -0
  461. package/highlight.js/lib/languages/ceylon.js.js +10 -0
  462. package/highlight.js/lib/languages/clean.js +67 -0
  463. package/highlight.js/lib/languages/clean.js.js +10 -0
  464. package/highlight.js/lib/languages/clojure-repl.js +27 -0
  465. package/highlight.js/lib/languages/clojure-repl.js.js +10 -0
  466. package/highlight.js/lib/languages/clojure.js +184 -0
  467. package/highlight.js/lib/languages/clojure.js.js +10 -0
  468. package/highlight.js/lib/languages/cmake.js +64 -0
  469. package/highlight.js/lib/languages/cmake.js.js +10 -0
  470. package/highlight.js/lib/languages/coffeescript.js +368 -0
  471. package/highlight.js/lib/languages/coffeescript.js.js +10 -0
  472. package/highlight.js/lib/languages/coq.js +445 -0
  473. package/highlight.js/lib/languages/coq.js.js +10 -0
  474. package/highlight.js/lib/languages/cos.js +140 -0
  475. package/highlight.js/lib/languages/cos.js.js +10 -0
  476. package/highlight.js/lib/languages/cpp.js +605 -0
  477. package/highlight.js/lib/languages/cpp.js.js +10 -0
  478. package/highlight.js/lib/languages/crmsh.js +100 -0
  479. package/highlight.js/lib/languages/crmsh.js.js +10 -0
  480. package/highlight.js/lib/languages/crystal.js +312 -0
  481. package/highlight.js/lib/languages/crystal.js.js +10 -0
  482. package/highlight.js/lib/languages/csharp.js +412 -0
  483. package/highlight.js/lib/languages/csharp.js.js +10 -0
  484. package/highlight.js/lib/languages/csp.js +58 -0
  485. package/highlight.js/lib/languages/csp.js.js +10 -0
  486. package/highlight.js/lib/languages/css.js +949 -0
  487. package/highlight.js/lib/languages/css.js.js +10 -0
  488. package/highlight.js/lib/languages/d.js +272 -0
  489. package/highlight.js/lib/languages/d.js.js +10 -0
  490. package/highlight.js/lib/languages/dart.js +271 -0
  491. package/highlight.js/lib/languages/dart.js.js +10 -0
  492. package/highlight.js/lib/languages/delphi.js +246 -0
  493. package/highlight.js/lib/languages/delphi.js.js +10 -0
  494. package/highlight.js/lib/languages/diff.js +62 -0
  495. package/highlight.js/lib/languages/diff.js.js +10 -0
  496. package/highlight.js/lib/languages/django.js +75 -0
  497. package/highlight.js/lib/languages/django.js.js +10 -0
  498. package/highlight.js/lib/languages/dns.js +78 -0
  499. package/highlight.js/lib/languages/dns.js.js +10 -0
  500. package/highlight.js/lib/languages/dockerfile.js +44 -0
  501. package/highlight.js/lib/languages/dockerfile.js.js +10 -0
  502. package/highlight.js/lib/languages/dos.js +167 -0
  503. package/highlight.js/lib/languages/dos.js.js +10 -0
  504. package/highlight.js/lib/languages/dsconfig.js +66 -0
  505. package/highlight.js/lib/languages/dsconfig.js.js +10 -0
  506. package/highlight.js/lib/languages/dts.js +157 -0
  507. package/highlight.js/lib/languages/dts.js.js +10 -0
  508. package/highlight.js/lib/languages/dust.js +47 -0
  509. package/highlight.js/lib/languages/dust.js.js +10 -0
  510. package/highlight.js/lib/languages/ebnf.js +54 -0
  511. package/highlight.js/lib/languages/ebnf.js.js +10 -0
  512. package/highlight.js/lib/languages/elixir.js +279 -0
  513. package/highlight.js/lib/languages/elixir.js.js +10 -0
  514. package/highlight.js/lib/languages/elm.js +143 -0
  515. package/highlight.js/lib/languages/elm.js.js +10 -0
  516. package/highlight.js/lib/languages/erb.js +29 -0
  517. package/highlight.js/lib/languages/erb.js.js +10 -0
  518. package/highlight.js/lib/languages/erlang-repl.js +54 -0
  519. package/highlight.js/lib/languages/erlang-repl.js.js +10 -0
  520. package/highlight.js/lib/languages/erlang.js +235 -0
  521. package/highlight.js/lib/languages/erlang.js.js +10 -0
  522. package/highlight.js/lib/languages/excel.js +580 -0
  523. package/highlight.js/lib/languages/excel.js.js +10 -0
  524. package/highlight.js/lib/languages/fix.js +39 -0
  525. package/highlight.js/lib/languages/fix.js.js +10 -0
  526. package/highlight.js/lib/languages/flix.js +79 -0
  527. package/highlight.js/lib/languages/flix.js.js +10 -0
  528. package/highlight.js/lib/languages/fortran.js +574 -0
  529. package/highlight.js/lib/languages/fortran.js.js +10 -0
  530. package/highlight.js/lib/languages/fsharp.js +627 -0
  531. package/highlight.js/lib/languages/fsharp.js.js +10 -0
  532. package/highlight.js/lib/languages/gams.js +181 -0
  533. package/highlight.js/lib/languages/gams.js.js +10 -0
  534. package/highlight.js/lib/languages/gauss.js +306 -0
  535. package/highlight.js/lib/languages/gauss.js.js +10 -0
  536. package/highlight.js/lib/languages/gcode.js +189 -0
  537. package/highlight.js/lib/languages/gcode.js.js +10 -0
  538. package/highlight.js/lib/languages/gherkin.js +49 -0
  539. package/highlight.js/lib/languages/gherkin.js.js +10 -0
  540. package/highlight.js/lib/languages/glsl.js +128 -0
  541. package/highlight.js/lib/languages/glsl.js.js +10 -0
  542. package/highlight.js/lib/languages/gml.js +3130 -0
  543. package/highlight.js/lib/languages/gml.js.js +10 -0
  544. package/highlight.js/lib/languages/go.js +156 -0
  545. package/highlight.js/lib/languages/go.js.js +10 -0
  546. package/highlight.js/lib/languages/golo.js +81 -0
  547. package/highlight.js/lib/languages/golo.js.js +10 -0
  548. package/highlight.js/lib/languages/gradle.js +190 -0
  549. package/highlight.js/lib/languages/gradle.js.js +10 -0
  550. package/highlight.js/lib/languages/graphql.js +78 -0
  551. package/highlight.js/lib/languages/graphql.js.js +10 -0
  552. package/highlight.js/lib/languages/groovy.js +190 -0
  553. package/highlight.js/lib/languages/groovy.js.js +10 -0
  554. package/highlight.js/lib/languages/haml.js +113 -0
  555. package/highlight.js/lib/languages/haml.js.js +10 -0
  556. package/highlight.js/lib/languages/handlebars.js +258 -0
  557. package/highlight.js/lib/languages/handlebars.js.js +10 -0
  558. package/highlight.js/lib/languages/haskell.js +217 -0
  559. package/highlight.js/lib/languages/haskell.js.js +10 -0
  560. package/highlight.js/lib/languages/haxe.js +167 -0
  561. package/highlight.js/lib/languages/haxe.js.js +10 -0
  562. package/highlight.js/lib/languages/hsp.js +59 -0
  563. package/highlight.js/lib/languages/hsp.js.js +10 -0
  564. package/highlight.js/lib/languages/http.js +97 -0
  565. package/highlight.js/lib/languages/http.js.js +10 -0
  566. package/highlight.js/lib/languages/hy.js +137 -0
  567. package/highlight.js/lib/languages/hy.js.js +10 -0
  568. package/highlight.js/lib/languages/inform7.js +70 -0
  569. package/highlight.js/lib/languages/inform7.js.js +10 -0
  570. package/highlight.js/lib/languages/ini.js +121 -0
  571. package/highlight.js/lib/languages/ini.js.js +10 -0
  572. package/highlight.js/lib/languages/irpf90.js +107 -0
  573. package/highlight.js/lib/languages/irpf90.js.js +10 -0
  574. package/highlight.js/lib/languages/isbl.js +3205 -0
  575. package/highlight.js/lib/languages/isbl.js.js +10 -0
  576. package/highlight.js/lib/languages/java.js +291 -0
  577. package/highlight.js/lib/languages/java.js.js +10 -0
  578. package/highlight.js/lib/languages/javascript.js +769 -0
  579. package/highlight.js/lib/languages/javascript.js.js +10 -0
  580. package/highlight.js/lib/languages/jboss-cli.js +63 -0
  581. package/highlight.js/lib/languages/jboss-cli.js.js +10 -0
  582. package/highlight.js/lib/languages/json.js +54 -0
  583. package/highlight.js/lib/languages/json.js.js +10 -0
  584. package/highlight.js/lib/languages/julia-repl.js +51 -0
  585. package/highlight.js/lib/languages/julia-repl.js.js +10 -0
  586. package/highlight.js/lib/languages/julia.js +442 -0
  587. package/highlight.js/lib/languages/julia.js.js +10 -0
  588. package/highlight.js/lib/languages/kotlin.js +286 -0
  589. package/highlight.js/lib/languages/kotlin.js.js +10 -0
  590. package/highlight.js/lib/languages/lasso.js +171 -0
  591. package/highlight.js/lib/languages/lasso.js.js +10 -0
  592. package/highlight.js/lib/languages/latex.js +278 -0
  593. package/highlight.js/lib/languages/latex.js.js +10 -0
  594. package/highlight.js/lib/languages/ldif.js +31 -0
  595. package/highlight.js/lib/languages/ldif.js.js +10 -0
  596. package/highlight.js/lib/languages/leaf.js +97 -0
  597. package/highlight.js/lib/languages/leaf.js.js +10 -0
  598. package/highlight.js/lib/languages/less.js +1050 -0
  599. package/highlight.js/lib/languages/less.js.js +10 -0
  600. package/highlight.js/lib/languages/lisp.js +139 -0
  601. package/highlight.js/lib/languages/lisp.js.js +10 -0
  602. package/highlight.js/lib/languages/livecodeserver.js +173 -0
  603. package/highlight.js/lib/languages/livecodeserver.js.js +10 -0
  604. package/highlight.js/lib/languages/livescript.js +380 -0
  605. package/highlight.js/lib/languages/livescript.js.js +10 -0
  606. package/highlight.js/lib/languages/llvm.js +135 -0
  607. package/highlight.js/lib/languages/llvm.js.js +10 -0
  608. package/highlight.js/lib/languages/lsl.js +76 -0
  609. package/highlight.js/lib/languages/lsl.js.js +10 -0
  610. package/highlight.js/lib/languages/lua.js +81 -0
  611. package/highlight.js/lib/languages/lua.js.js +10 -0
  612. package/highlight.js/lib/languages/makefile.js +89 -0
  613. package/highlight.js/lib/languages/makefile.js.js +10 -0
  614. package/highlight.js/lib/languages/markdown.js +248 -0
  615. package/highlight.js/lib/languages/markdown.js.js +10 -0
  616. package/highlight.js/lib/languages/mathematica.js +7359 -0
  617. package/highlight.js/lib/languages/mathematica.js.js +10 -0
  618. package/highlight.js/lib/languages/matlab.js +107 -0
  619. package/highlight.js/lib/languages/matlab.js.js +10 -0
  620. package/highlight.js/lib/languages/maxima.js +414 -0
  621. package/highlight.js/lib/languages/maxima.js.js +10 -0
  622. package/highlight.js/lib/languages/mel.js +235 -0
  623. package/highlight.js/lib/languages/mel.js.js +10 -0
  624. package/highlight.js/lib/languages/mercury.js +108 -0
  625. package/highlight.js/lib/languages/mercury.js.js +10 -0
  626. package/highlight.js/lib/languages/mipsasm.js +104 -0
  627. package/highlight.js/lib/languages/mipsasm.js.js +10 -0
  628. package/highlight.js/lib/languages/mizar.js +27 -0
  629. package/highlight.js/lib/languages/mizar.js.js +10 -0
  630. package/highlight.js/lib/languages/mojolicious.js +36 -0
  631. package/highlight.js/lib/languages/mojolicious.js.js +10 -0
  632. package/highlight.js/lib/languages/monkey.js +184 -0
  633. package/highlight.js/lib/languages/monkey.js.js +10 -0
  634. package/highlight.js/lib/languages/moonscript.js +141 -0
  635. package/highlight.js/lib/languages/moonscript.js.js +10 -0
  636. package/highlight.js/lib/languages/n1ql.js +365 -0
  637. package/highlight.js/lib/languages/n1ql.js.js +10 -0
  638. package/highlight.js/lib/languages/nestedtext.js +83 -0
  639. package/highlight.js/lib/languages/nestedtext.js.js +10 -0
  640. package/highlight.js/lib/languages/nginx.js +153 -0
  641. package/highlight.js/lib/languages/nginx.js.js +10 -0
  642. package/highlight.js/lib/languages/nim.js +187 -0
  643. package/highlight.js/lib/languages/nim.js.js +10 -0
  644. package/highlight.js/lib/languages/nix.js +372 -0
  645. package/highlight.js/lib/languages/nix.js.js +10 -0
  646. package/highlight.js/lib/languages/node-repl.js +33 -0
  647. package/highlight.js/lib/languages/node-repl.js.js +10 -0
  648. package/highlight.js/lib/languages/nsis.js +557 -0
  649. package/highlight.js/lib/languages/nsis.js.js +10 -0
  650. package/highlight.js/lib/languages/objectivec.js +253 -0
  651. package/highlight.js/lib/languages/objectivec.js.js +10 -0
  652. package/highlight.js/lib/languages/ocaml.js +83 -0
  653. package/highlight.js/lib/languages/ocaml.js.js +10 -0
  654. package/highlight.js/lib/languages/openscad.js +77 -0
  655. package/highlight.js/lib/languages/openscad.js.js +10 -0
  656. package/highlight.js/lib/languages/oxygene.js +87 -0
  657. package/highlight.js/lib/languages/oxygene.js.js +10 -0
  658. package/highlight.js/lib/languages/parser3.js +55 -0
  659. package/highlight.js/lib/languages/parser3.js.js +10 -0
  660. package/highlight.js/lib/languages/perl.js +504 -0
  661. package/highlight.js/lib/languages/perl.js.js +10 -0
  662. package/highlight.js/lib/languages/pf.js +60 -0
  663. package/highlight.js/lib/languages/pf.js.js +10 -0
  664. package/highlight.js/lib/languages/pgsql.js +525 -0
  665. package/highlight.js/lib/languages/pgsql.js.js +10 -0
  666. package/highlight.js/lib/languages/php-template.js +54 -0
  667. package/highlight.js/lib/languages/php-template.js.js +10 -0
  668. package/highlight.js/lib/languages/php.js +625 -0
  669. package/highlight.js/lib/languages/php.js.js +10 -0
  670. package/highlight.js/lib/languages/plaintext.js +19 -0
  671. package/highlight.js/lib/languages/plaintext.js.js +10 -0
  672. package/highlight.js/lib/languages/pony.js +90 -0
  673. package/highlight.js/lib/languages/pony.js.js +10 -0
  674. package/highlight.js/lib/languages/powershell.js +317 -0
  675. package/highlight.js/lib/languages/powershell.js.js +10 -0
  676. package/highlight.js/lib/languages/processing.js +434 -0
  677. package/highlight.js/lib/languages/processing.js.js +10 -0
  678. package/highlight.js/lib/languages/profile.js +43 -0
  679. package/highlight.js/lib/languages/profile.js.js +10 -0
  680. package/highlight.js/lib/languages/prolog.js +97 -0
  681. package/highlight.js/lib/languages/prolog.js.js +10 -0
  682. package/highlight.js/lib/languages/properties.js +68 -0
  683. package/highlight.js/lib/languages/properties.js.js +10 -0
  684. package/highlight.js/lib/languages/protobuf.js +79 -0
  685. package/highlight.js/lib/languages/protobuf.js.js +10 -0
  686. package/highlight.js/lib/languages/puppet.js +146 -0
  687. package/highlight.js/lib/languages/puppet.js.js +10 -0
  688. package/highlight.js/lib/languages/purebasic.js +100 -0
  689. package/highlight.js/lib/languages/purebasic.js.js +10 -0
  690. package/highlight.js/lib/languages/python-repl.js +32 -0
  691. package/highlight.js/lib/languages/python-repl.js.js +10 -0
  692. package/highlight.js/lib/languages/python.js +436 -0
  693. package/highlight.js/lib/languages/python.js.js +10 -0
  694. package/highlight.js/lib/languages/q.js +38 -0
  695. package/highlight.js/lib/languages/q.js.js +10 -0
  696. package/highlight.js/lib/languages/qml.js +189 -0
  697. package/highlight.js/lib/languages/qml.js.js +10 -0
  698. package/highlight.js/lib/languages/r.js +257 -0
  699. package/highlight.js/lib/languages/r.js.js +10 -0
  700. package/highlight.js/lib/languages/reasonml.js +142 -0
  701. package/highlight.js/lib/languages/reasonml.js.js +10 -0
  702. package/highlight.js/lib/languages/rib.js +37 -0
  703. package/highlight.js/lib/languages/rib.js.js +10 -0
  704. package/highlight.js/lib/languages/roboconf.js +82 -0
  705. package/highlight.js/lib/languages/roboconf.js.js +10 -0
  706. package/highlight.js/lib/languages/routeros.js +164 -0
  707. package/highlight.js/lib/languages/routeros.js.js +10 -0
  708. package/highlight.js/lib/languages/rsl.js +149 -0
  709. package/highlight.js/lib/languages/rsl.js.js +10 -0
  710. package/highlight.js/lib/languages/ruby.js +448 -0
  711. package/highlight.js/lib/languages/ruby.js.js +10 -0
  712. package/highlight.js/lib/languages/ruleslanguage.js +76 -0
  713. package/highlight.js/lib/languages/ruleslanguage.js.js +10 -0
  714. package/highlight.js/lib/languages/rust.js +326 -0
  715. package/highlight.js/lib/languages/rust.js.js +10 -0
  716. package/highlight.js/lib/languages/sas.js +557 -0
  717. package/highlight.js/lib/languages/sas.js.js +10 -0
  718. package/highlight.js/lib/languages/scala.js +214 -0
  719. package/highlight.js/lib/languages/scala.js.js +10 -0
  720. package/highlight.js/lib/languages/scheme.js +196 -0
  721. package/highlight.js/lib/languages/scheme.js.js +10 -0
  722. package/highlight.js/lib/languages/scilab.js +73 -0
  723. package/highlight.js/lib/languages/scilab.js.js +10 -0
  724. package/highlight.js/lib/languages/scss.js +939 -0
  725. package/highlight.js/lib/languages/scss.js.js +10 -0
  726. package/highlight.js/lib/languages/shell.js +33 -0
  727. package/highlight.js/lib/languages/shell.js.js +10 -0
  728. package/highlight.js/lib/languages/smali.js +126 -0
  729. package/highlight.js/lib/languages/smali.js.js +10 -0
  730. package/highlight.js/lib/languages/smalltalk.js +69 -0
  731. package/highlight.js/lib/languages/smalltalk.js.js +10 -0
  732. package/highlight.js/lib/languages/sml.js +75 -0
  733. package/highlight.js/lib/languages/sml.js.js +10 -0
  734. package/highlight.js/lib/languages/sqf.js +2662 -0
  735. package/highlight.js/lib/languages/sqf.js.js +10 -0
  736. package/highlight.js/lib/languages/sql.js +693 -0
  737. package/highlight.js/lib/languages/sql.js.js +10 -0
  738. package/highlight.js/lib/languages/stan.js +521 -0
  739. package/highlight.js/lib/languages/stan.js.js +10 -0
  740. package/highlight.js/lib/languages/stata.js +53 -0
  741. package/highlight.js/lib/languages/stata.js.js +10 -0
  742. package/highlight.js/lib/languages/step21.js +67 -0
  743. package/highlight.js/lib/languages/step21.js.js +10 -0
  744. package/highlight.js/lib/languages/stylus.js +999 -0
  745. package/highlight.js/lib/languages/stylus.js.js +10 -0
  746. package/highlight.js/lib/languages/subunit.js +44 -0
  747. package/highlight.js/lib/languages/subunit.js.js +10 -0
  748. package/highlight.js/lib/languages/swift.js +972 -0
  749. package/highlight.js/lib/languages/swift.js.js +10 -0
  750. package/highlight.js/lib/languages/taggerscript.js +59 -0
  751. package/highlight.js/lib/languages/taggerscript.js.js +10 -0
  752. package/highlight.js/lib/languages/tap.js +47 -0
  753. package/highlight.js/lib/languages/tap.js.js +10 -0
  754. package/highlight.js/lib/languages/tcl.js +191 -0
  755. package/highlight.js/lib/languages/tcl.js.js +10 -0
  756. package/highlight.js/lib/languages/thrift.js +77 -0
  757. package/highlight.js/lib/languages/thrift.js.js +10 -0
  758. package/highlight.js/lib/languages/tp.js +172 -0
  759. package/highlight.js/lib/languages/tp.js.js +10 -0
  760. package/highlight.js/lib/languages/twig.js +260 -0
  761. package/highlight.js/lib/languages/twig.js.js +10 -0
  762. package/highlight.js/lib/languages/typescript.js +913 -0
  763. package/highlight.js/lib/languages/typescript.js.js +10 -0
  764. package/highlight.js/lib/languages/vala.js +61 -0
  765. package/highlight.js/lib/languages/vala.js.js +10 -0
  766. package/highlight.js/lib/languages/vbnet.js +157 -0
  767. package/highlight.js/lib/languages/vbnet.js.js +10 -0
  768. package/highlight.js/lib/languages/vbscript-html.js +24 -0
  769. package/highlight.js/lib/languages/vbscript-html.js.js +10 -0
  770. package/highlight.js/lib/languages/vbscript.js +220 -0
  771. package/highlight.js/lib/languages/vbscript.js.js +10 -0
  772. package/highlight.js/lib/languages/verilog.js +550 -0
  773. package/highlight.js/lib/languages/verilog.js.js +10 -0
  774. package/highlight.js/lib/languages/vhdl.js +216 -0
  775. package/highlight.js/lib/languages/vhdl.js.js +10 -0
  776. package/highlight.js/lib/languages/vim.js +129 -0
  777. package/highlight.js/lib/languages/vim.js.js +10 -0
  778. package/highlight.js/lib/languages/wasm.js +139 -0
  779. package/highlight.js/lib/languages/wasm.js.js +10 -0
  780. package/highlight.js/lib/languages/wren.js +302 -0
  781. package/highlight.js/lib/languages/wren.js.js +10 -0
  782. package/highlight.js/lib/languages/x86asm.js +153 -0
  783. package/highlight.js/lib/languages/x86asm.js.js +10 -0
  784. package/highlight.js/lib/languages/xl.js +205 -0
  785. package/highlight.js/lib/languages/xl.js.js +10 -0
  786. package/highlight.js/lib/languages/xml.js +241 -0
  787. package/highlight.js/lib/languages/xml.js.js +10 -0
  788. package/highlight.js/lib/languages/xquery.js +360 -0
  789. package/highlight.js/lib/languages/xquery.js.js +10 -0
  790. package/highlight.js/lib/languages/yaml.js +213 -0
  791. package/highlight.js/lib/languages/yaml.js.js +10 -0
  792. package/highlight.js/lib/languages/zephir.js +129 -0
  793. package/highlight.js/lib/languages/zephir.js.js +10 -0
  794. package/highlight.js/package.json +119 -0
  795. package/highlight.js/scss/1c-light.scss +107 -0
  796. package/highlight.js/scss/a11y-dark.scss +94 -0
  797. package/highlight.js/scss/a11y-light.scss +94 -0
  798. package/highlight.js/scss/agate.scss +127 -0
  799. package/highlight.js/scss/an-old-hope.scss +75 -0
  800. package/highlight.js/scss/androidstudio.scss +60 -0
  801. package/highlight.js/scss/arduino-light.scss +78 -0
  802. package/highlight.js/scss/arta.scss +66 -0
  803. package/highlight.js/scss/ascetic.scss +45 -0
  804. package/highlight.js/scss/atom-one-dark-reasonable.scss +105 -0
  805. package/highlight.js/scss/atom-one-dark.scss +90 -0
  806. package/highlight.js/scss/atom-one-light.scss +90 -0
  807. package/highlight.js/scss/base16/3024.scss +163 -0
  808. package/highlight.js/scss/base16/apathy.scss +163 -0
  809. package/highlight.js/scss/base16/apprentice.scss +163 -0
  810. package/highlight.js/scss/base16/ashes.scss +163 -0
  811. package/highlight.js/scss/base16/atelier-cave-light.scss +163 -0
  812. package/highlight.js/scss/base16/atelier-cave.scss +163 -0
  813. package/highlight.js/scss/base16/atelier-dune-light.scss +163 -0
  814. package/highlight.js/scss/base16/atelier-dune.scss +163 -0
  815. package/highlight.js/scss/base16/atelier-estuary-light.scss +163 -0
  816. package/highlight.js/scss/base16/atelier-estuary.scss +163 -0
  817. package/highlight.js/scss/base16/atelier-forest-light.scss +163 -0
  818. package/highlight.js/scss/base16/atelier-forest.scss +163 -0
  819. package/highlight.js/scss/base16/atelier-heath-light.scss +163 -0
  820. package/highlight.js/scss/base16/atelier-heath.scss +163 -0
  821. package/highlight.js/scss/base16/atelier-lakeside-light.scss +163 -0
  822. package/highlight.js/scss/base16/atelier-lakeside.scss +163 -0
  823. package/highlight.js/scss/base16/atelier-plateau-light.scss +163 -0
  824. package/highlight.js/scss/base16/atelier-plateau.scss +163 -0
  825. package/highlight.js/scss/base16/atelier-savanna-light.scss +163 -0
  826. package/highlight.js/scss/base16/atelier-savanna.scss +163 -0
  827. package/highlight.js/scss/base16/atelier-seaside-light.scss +163 -0
  828. package/highlight.js/scss/base16/atelier-seaside.scss +163 -0
  829. package/highlight.js/scss/base16/atelier-sulphurpool-light.scss +163 -0
  830. package/highlight.js/scss/base16/atelier-sulphurpool.scss +163 -0
  831. package/highlight.js/scss/base16/atlas.scss +163 -0
  832. package/highlight.js/scss/base16/bespin.scss +163 -0
  833. package/highlight.js/scss/base16/black-metal-bathory.scss +163 -0
  834. package/highlight.js/scss/base16/black-metal-burzum.scss +163 -0
  835. package/highlight.js/scss/base16/black-metal-dark-funeral.scss +163 -0
  836. package/highlight.js/scss/base16/black-metal-gorgoroth.scss +163 -0
  837. package/highlight.js/scss/base16/black-metal-immortal.scss +163 -0
  838. package/highlight.js/scss/base16/black-metal-khold.scss +163 -0
  839. package/highlight.js/scss/base16/black-metal-marduk.scss +163 -0
  840. package/highlight.js/scss/base16/black-metal-mayhem.scss +163 -0
  841. package/highlight.js/scss/base16/black-metal-nile.scss +163 -0
  842. package/highlight.js/scss/base16/black-metal-venom.scss +163 -0
  843. package/highlight.js/scss/base16/black-metal.scss +163 -0
  844. package/highlight.js/scss/base16/brewer.scss +163 -0
  845. package/highlight.js/scss/base16/bright.scss +163 -0
  846. package/highlight.js/scss/base16/brogrammer.scss +163 -0
  847. package/highlight.js/scss/base16/brush-trees-dark.scss +163 -0
  848. package/highlight.js/scss/base16/brush-trees.scss +163 -0
  849. package/highlight.js/scss/base16/chalk.scss +163 -0
  850. package/highlight.js/scss/base16/circus.scss +163 -0
  851. package/highlight.js/scss/base16/classic-dark.scss +163 -0
  852. package/highlight.js/scss/base16/classic-light.scss +163 -0
  853. package/highlight.js/scss/base16/codeschool.scss +163 -0
  854. package/highlight.js/scss/base16/colors.scss +163 -0
  855. package/highlight.js/scss/base16/cupcake.scss +163 -0
  856. package/highlight.js/scss/base16/cupertino.scss +163 -0
  857. package/highlight.js/scss/base16/danqing.scss +163 -0
  858. package/highlight.js/scss/base16/darcula.scss +163 -0
  859. package/highlight.js/scss/base16/dark-violet.scss +163 -0
  860. package/highlight.js/scss/base16/darkmoss.scss +163 -0
  861. package/highlight.js/scss/base16/darktooth.scss +163 -0
  862. package/highlight.js/scss/base16/decaf.scss +163 -0
  863. package/highlight.js/scss/base16/default-dark.scss +163 -0
  864. package/highlight.js/scss/base16/default-light.scss +163 -0
  865. package/highlight.js/scss/base16/dirtysea.scss +163 -0
  866. package/highlight.js/scss/base16/dracula.scss +163 -0
  867. package/highlight.js/scss/base16/edge-dark.scss +163 -0
  868. package/highlight.js/scss/base16/edge-light.scss +163 -0
  869. package/highlight.js/scss/base16/eighties.scss +163 -0
  870. package/highlight.js/scss/base16/embers.scss +163 -0
  871. package/highlight.js/scss/base16/equilibrium-dark.scss +163 -0
  872. package/highlight.js/scss/base16/equilibrium-gray-dark.scss +163 -0
  873. package/highlight.js/scss/base16/equilibrium-gray-light.scss +163 -0
  874. package/highlight.js/scss/base16/equilibrium-light.scss +163 -0
  875. package/highlight.js/scss/base16/espresso.scss +163 -0
  876. package/highlight.js/scss/base16/eva-dim.scss +163 -0
  877. package/highlight.js/scss/base16/eva.scss +163 -0
  878. package/highlight.js/scss/base16/flat.scss +163 -0
  879. package/highlight.js/scss/base16/framer.scss +163 -0
  880. package/highlight.js/scss/base16/fruit-soda.scss +163 -0
  881. package/highlight.js/scss/base16/gigavolt.scss +163 -0
  882. package/highlight.js/scss/base16/github.scss +163 -0
  883. package/highlight.js/scss/base16/google-dark.scss +163 -0
  884. package/highlight.js/scss/base16/google-light.scss +163 -0
  885. package/highlight.js/scss/base16/grayscale-dark.scss +163 -0
  886. package/highlight.js/scss/base16/grayscale-light.scss +163 -0
  887. package/highlight.js/scss/base16/green-screen.scss +163 -0
  888. package/highlight.js/scss/base16/gruvbox-dark-hard.scss +163 -0
  889. package/highlight.js/scss/base16/gruvbox-dark-medium.scss +163 -0
  890. package/highlight.js/scss/base16/gruvbox-dark-pale.scss +163 -0
  891. package/highlight.js/scss/base16/gruvbox-dark-soft.scss +163 -0
  892. package/highlight.js/scss/base16/gruvbox-light-hard.scss +163 -0
  893. package/highlight.js/scss/base16/gruvbox-light-medium.scss +163 -0
  894. package/highlight.js/scss/base16/gruvbox-light-soft.scss +163 -0
  895. package/highlight.js/scss/base16/hardcore.scss +163 -0
  896. package/highlight.js/scss/base16/harmonic16-dark.scss +163 -0
  897. package/highlight.js/scss/base16/harmonic16-light.scss +163 -0
  898. package/highlight.js/scss/base16/heetch-dark.scss +163 -0
  899. package/highlight.js/scss/base16/heetch-light.scss +163 -0
  900. package/highlight.js/scss/base16/helios.scss +163 -0
  901. package/highlight.js/scss/base16/hopscotch.scss +163 -0
  902. package/highlight.js/scss/base16/horizon-dark.scss +163 -0
  903. package/highlight.js/scss/base16/horizon-light.scss +163 -0
  904. package/highlight.js/scss/base16/humanoid-dark.scss +163 -0
  905. package/highlight.js/scss/base16/humanoid-light.scss +163 -0
  906. package/highlight.js/scss/base16/ia-dark.scss +163 -0
  907. package/highlight.js/scss/base16/ia-light.scss +163 -0
  908. package/highlight.js/scss/base16/icy-dark.scss +163 -0
  909. package/highlight.js/scss/base16/ir-black.scss +163 -0
  910. package/highlight.js/scss/base16/isotope.scss +163 -0
  911. package/highlight.js/scss/base16/kimber.scss +163 -0
  912. package/highlight.js/scss/base16/london-tube.scss +163 -0
  913. package/highlight.js/scss/base16/macintosh.scss +163 -0
  914. package/highlight.js/scss/base16/marrakesh.scss +163 -0
  915. package/highlight.js/scss/base16/materia.scss +163 -0
  916. package/highlight.js/scss/base16/material-darker.scss +163 -0
  917. package/highlight.js/scss/base16/material-lighter.scss +163 -0
  918. package/highlight.js/scss/base16/material-palenight.scss +163 -0
  919. package/highlight.js/scss/base16/material-vivid.scss +163 -0
  920. package/highlight.js/scss/base16/material.scss +163 -0
  921. package/highlight.js/scss/base16/mellow-purple.scss +163 -0
  922. package/highlight.js/scss/base16/mexico-light.scss +163 -0
  923. package/highlight.js/scss/base16/mocha.scss +163 -0
  924. package/highlight.js/scss/base16/monokai.scss +163 -0
  925. package/highlight.js/scss/base16/nebula.scss +163 -0
  926. package/highlight.js/scss/base16/nord.scss +163 -0
  927. package/highlight.js/scss/base16/nova.scss +163 -0
  928. package/highlight.js/scss/base16/ocean.scss +163 -0
  929. package/highlight.js/scss/base16/oceanicnext.scss +163 -0
  930. package/highlight.js/scss/base16/one-light.scss +163 -0
  931. package/highlight.js/scss/base16/onedark.scss +163 -0
  932. package/highlight.js/scss/base16/outrun-dark.scss +163 -0
  933. package/highlight.js/scss/base16/papercolor-dark.scss +163 -0
  934. package/highlight.js/scss/base16/papercolor-light.scss +163 -0
  935. package/highlight.js/scss/base16/paraiso.scss +163 -0
  936. package/highlight.js/scss/base16/pasque.scss +163 -0
  937. package/highlight.js/scss/base16/phd.scss +163 -0
  938. package/highlight.js/scss/base16/pico.scss +163 -0
  939. package/highlight.js/scss/base16/pop.scss +163 -0
  940. package/highlight.js/scss/base16/porple.scss +163 -0
  941. package/highlight.js/scss/base16/qualia.scss +163 -0
  942. package/highlight.js/scss/base16/railscasts.scss +163 -0
  943. package/highlight.js/scss/base16/rebecca.scss +163 -0
  944. package/highlight.js/scss/base16/ros-pine-dawn.scss +163 -0
  945. package/highlight.js/scss/base16/ros-pine-moon.scss +163 -0
  946. package/highlight.js/scss/base16/ros-pine.scss +163 -0
  947. package/highlight.js/scss/base16/sagelight.scss +163 -0
  948. package/highlight.js/scss/base16/sandcastle.scss +163 -0
  949. package/highlight.js/scss/base16/seti-ui.scss +163 -0
  950. package/highlight.js/scss/base16/shapeshifter.scss +163 -0
  951. package/highlight.js/scss/base16/silk-dark.scss +163 -0
  952. package/highlight.js/scss/base16/silk-light.scss +163 -0
  953. package/highlight.js/scss/base16/snazzy.scss +163 -0
  954. package/highlight.js/scss/base16/solar-flare-light.scss +163 -0
  955. package/highlight.js/scss/base16/solar-flare.scss +163 -0
  956. package/highlight.js/scss/base16/solarized-dark.scss +163 -0
  957. package/highlight.js/scss/base16/solarized-light.scss +163 -0
  958. package/highlight.js/scss/base16/spacemacs.scss +163 -0
  959. package/highlight.js/scss/base16/summercamp.scss +163 -0
  960. package/highlight.js/scss/base16/summerfruit-dark.scss +163 -0
  961. package/highlight.js/scss/base16/summerfruit-light.scss +163 -0
  962. package/highlight.js/scss/base16/synth-midnight-terminal-dark.scss +163 -0
  963. package/highlight.js/scss/base16/synth-midnight-terminal-light.scss +163 -0
  964. package/highlight.js/scss/base16/tango.scss +163 -0
  965. package/highlight.js/scss/base16/tender.scss +163 -0
  966. package/highlight.js/scss/base16/tomorrow-night.scss +163 -0
  967. package/highlight.js/scss/base16/tomorrow.scss +163 -0
  968. package/highlight.js/scss/base16/twilight.scss +163 -0
  969. package/highlight.js/scss/base16/unikitty-dark.scss +163 -0
  970. package/highlight.js/scss/base16/unikitty-light.scss +163 -0
  971. package/highlight.js/scss/base16/vulcan.scss +163 -0
  972. package/highlight.js/scss/base16/windows-10-light.scss +163 -0
  973. package/highlight.js/scss/base16/windows-10.scss +163 -0
  974. package/highlight.js/scss/base16/windows-95-light.scss +163 -0
  975. package/highlight.js/scss/base16/windows-95.scss +163 -0
  976. package/highlight.js/scss/base16/windows-high-contrast-light.scss +163 -0
  977. package/highlight.js/scss/base16/windows-high-contrast.scss +163 -0
  978. package/highlight.js/scss/base16/windows-nt-light.scss +163 -0
  979. package/highlight.js/scss/base16/windows-nt.scss +163 -0
  980. package/highlight.js/scss/base16/woodland.scss +163 -0
  981. package/highlight.js/scss/base16/xcode-dusk.scss +163 -0
  982. package/highlight.js/scss/base16/zenburn.scss +163 -0
  983. package/highlight.js/scss/brown-paper.scss +63 -0
  984. package/highlight.js/scss/codepen-embed.scss +57 -0
  985. package/highlight.js/scss/color-brewer.scss +66 -0
  986. package/highlight.js/scss/cybertopia-cherry.scss +103 -0
  987. package/highlight.js/scss/cybertopia-dimmer.scss +103 -0
  988. package/highlight.js/scss/cybertopia-icecap.scss +103 -0
  989. package/highlight.js/scss/cybertopia-saturated.scss +103 -0
  990. package/highlight.js/scss/dark.scss +62 -0
  991. package/highlight.js/scss/default.scss +117 -0
  992. package/highlight.js/scss/devibeans.scss +90 -0
  993. package/highlight.js/scss/docco.scss +83 -0
  994. package/highlight.js/scss/far.scss +67 -0
  995. package/highlight.js/scss/felipec.scss +94 -0
  996. package/highlight.js/scss/foundation.scss +80 -0
  997. package/highlight.js/scss/github-dark-dimmed.scss +117 -0
  998. package/highlight.js/scss/github-dark.scss +118 -0
  999. package/highlight.js/scss/github.scss +118 -0
  1000. package/highlight.js/scss/gml.scss +72 -0
  1001. package/highlight.js/scss/googlecode.scss +79 -0
  1002. package/highlight.js/scss/gradient-dark.scss +90 -0
  1003. package/highlight.js/scss/gradient-light.scss +90 -0
  1004. package/highlight.js/scss/grayscale.scss +89 -0
  1005. package/highlight.js/scss/hybrid.scss +88 -0
  1006. package/highlight.js/scss/idea.scss +86 -0
  1007. package/highlight.js/scss/intellij-light.scss +107 -0
  1008. package/highlight.js/scss/ir-black.scss +66 -0
  1009. package/highlight.js/scss/isbl-editor-dark.scss +94 -0
  1010. package/highlight.js/scss/isbl-editor-light.scss +93 -0
  1011. package/highlight.js/scss/kimbie-dark.scss +69 -0
  1012. package/highlight.js/scss/kimbie-light.scss +69 -0
  1013. package/highlight.js/scss/lightfair.scss +81 -0
  1014. package/highlight.js/scss/lioshi.scss +76 -0
  1015. package/highlight.js/scss/magula.scss +66 -0
  1016. package/highlight.js/scss/mono-blue.scss +56 -0
  1017. package/highlight.js/scss/monokai-sublime.scss +76 -0
  1018. package/highlight.js/scss/monokai.scss +70 -0
  1019. package/highlight.js/scss/night-owl.scss +174 -0
  1020. package/highlight.js/scss/nnfx-dark.scss +104 -0
  1021. package/highlight.js/scss/nnfx-light.scss +104 -0
  1022. package/highlight.js/scss/nord.scss +275 -0
  1023. package/highlight.js/scss/obsidian.scss +79 -0
  1024. package/highlight.js/scss/panda-syntax-dark.scss +92 -0
  1025. package/highlight.js/scss/panda-syntax-light.scss +89 -0
  1026. package/highlight.js/scss/paraiso-dark.scss +67 -0
  1027. package/highlight.js/scss/paraiso-light.scss +67 -0
  1028. package/highlight.js/scss/pojoaque.scss +76 -0
  1029. package/highlight.js/scss/purebasic.scss +103 -0
  1030. package/highlight.js/scss/qtcreator-dark.scss +76 -0
  1031. package/highlight.js/scss/qtcreator-light.scss +74 -0
  1032. package/highlight.js/scss/rainbow.scss +77 -0
  1033. package/highlight.js/scss/rose-pine-dawn.scss +107 -0
  1034. package/highlight.js/scss/rose-pine-moon.scss +109 -0
  1035. package/highlight.js/scss/rose-pine.scss +109 -0
  1036. package/highlight.js/scss/routeros.scss +86 -0
  1037. package/highlight.js/scss/school-book.scss +62 -0
  1038. package/highlight.js/scss/shades-of-purple.scss +84 -0
  1039. package/highlight.js/scss/srcery.scss +89 -0
  1040. package/highlight.js/scss/stackoverflow-dark.scss +117 -0
  1041. package/highlight.js/scss/stackoverflow-light.scss +117 -0
  1042. package/highlight.js/scss/sunburst.scss +89 -0
  1043. package/highlight.js/scss/tokyo-night-dark.scss +114 -0
  1044. package/highlight.js/scss/tokyo-night-light.scss +114 -0
  1045. package/highlight.js/scss/tomorrow-night-blue.scss +69 -0
  1046. package/highlight.js/scss/tomorrow-night-bright.scss +68 -0
  1047. package/highlight.js/scss/vs.scss +63 -0
  1048. package/highlight.js/scss/vs2015.scss +100 -0
  1049. package/highlight.js/scss/xcode.scss +90 -0
  1050. package/highlight.js/scss/xt256.scss +79 -0
  1051. package/highlight.js/styles/1c-light.css +107 -0
  1052. package/highlight.js/styles/1c-light.min.css +9 -0
  1053. package/highlight.js/styles/a11y-dark.css +94 -0
  1054. package/highlight.js/styles/a11y-dark.min.css +7 -0
  1055. package/highlight.js/styles/a11y-light.css +94 -0
  1056. package/highlight.js/styles/a11y-light.min.css +7 -0
  1057. package/highlight.js/styles/agate.css +127 -0
  1058. package/highlight.js/styles/agate.min.css +20 -0
  1059. package/highlight.js/styles/an-old-hope.css +75 -0
  1060. package/highlight.js/styles/an-old-hope.min.css +9 -0
  1061. package/highlight.js/styles/androidstudio.css +60 -0
  1062. package/highlight.js/styles/androidstudio.min.css +1 -0
  1063. package/highlight.js/styles/arduino-light.css +78 -0
  1064. package/highlight.js/styles/arduino-light.min.css +1 -0
  1065. package/highlight.js/styles/arta.css +66 -0
  1066. package/highlight.js/styles/arta.min.css +1 -0
  1067. package/highlight.js/styles/ascetic.css +45 -0
  1068. package/highlight.js/styles/ascetic.min.css +1 -0
  1069. package/highlight.js/styles/atom-one-dark-reasonable.css +105 -0
  1070. package/highlight.js/styles/atom-one-dark-reasonable.min.css +1 -0
  1071. package/highlight.js/styles/atom-one-dark.css +90 -0
  1072. package/highlight.js/styles/atom-one-dark.min.css +1 -0
  1073. package/highlight.js/styles/atom-one-light.css +90 -0
  1074. package/highlight.js/styles/atom-one-light.min.css +1 -0
  1075. package/highlight.js/styles/base16/3024.css +163 -0
  1076. package/highlight.js/styles/base16/3024.min.css +7 -0
  1077. package/highlight.js/styles/base16/apathy.css +163 -0
  1078. package/highlight.js/styles/base16/apathy.min.css +7 -0
  1079. package/highlight.js/styles/base16/apprentice.css +163 -0
  1080. package/highlight.js/styles/base16/apprentice.min.css +7 -0
  1081. package/highlight.js/styles/base16/ashes.css +163 -0
  1082. package/highlight.js/styles/base16/ashes.min.css +7 -0
  1083. package/highlight.js/styles/base16/atelier-cave-light.css +163 -0
  1084. package/highlight.js/styles/base16/atelier-cave-light.min.css +7 -0
  1085. package/highlight.js/styles/base16/atelier-cave.css +163 -0
  1086. package/highlight.js/styles/base16/atelier-cave.min.css +7 -0
  1087. package/highlight.js/styles/base16/atelier-dune-light.css +163 -0
  1088. package/highlight.js/styles/base16/atelier-dune-light.min.css +7 -0
  1089. package/highlight.js/styles/base16/atelier-dune.css +163 -0
  1090. package/highlight.js/styles/base16/atelier-dune.min.css +7 -0
  1091. package/highlight.js/styles/base16/atelier-estuary-light.css +163 -0
  1092. package/highlight.js/styles/base16/atelier-estuary-light.min.css +7 -0
  1093. package/highlight.js/styles/base16/atelier-estuary.css +163 -0
  1094. package/highlight.js/styles/base16/atelier-estuary.min.css +7 -0
  1095. package/highlight.js/styles/base16/atelier-forest-light.css +163 -0
  1096. package/highlight.js/styles/base16/atelier-forest-light.min.css +7 -0
  1097. package/highlight.js/styles/base16/atelier-forest.css +163 -0
  1098. package/highlight.js/styles/base16/atelier-forest.min.css +7 -0
  1099. package/highlight.js/styles/base16/atelier-heath-light.css +163 -0
  1100. package/highlight.js/styles/base16/atelier-heath-light.min.css +7 -0
  1101. package/highlight.js/styles/base16/atelier-heath.css +163 -0
  1102. package/highlight.js/styles/base16/atelier-heath.min.css +7 -0
  1103. package/highlight.js/styles/base16/atelier-lakeside-light.css +163 -0
  1104. package/highlight.js/styles/base16/atelier-lakeside-light.min.css +7 -0
  1105. package/highlight.js/styles/base16/atelier-lakeside.css +163 -0
  1106. package/highlight.js/styles/base16/atelier-lakeside.min.css +7 -0
  1107. package/highlight.js/styles/base16/atelier-plateau-light.css +163 -0
  1108. package/highlight.js/styles/base16/atelier-plateau-light.min.css +7 -0
  1109. package/highlight.js/styles/base16/atelier-plateau.css +163 -0
  1110. package/highlight.js/styles/base16/atelier-plateau.min.css +7 -0
  1111. package/highlight.js/styles/base16/atelier-savanna-light.css +163 -0
  1112. package/highlight.js/styles/base16/atelier-savanna-light.min.css +7 -0
  1113. package/highlight.js/styles/base16/atelier-savanna.css +163 -0
  1114. package/highlight.js/styles/base16/atelier-savanna.min.css +7 -0
  1115. package/highlight.js/styles/base16/atelier-seaside-light.css +163 -0
  1116. package/highlight.js/styles/base16/atelier-seaside-light.min.css +7 -0
  1117. package/highlight.js/styles/base16/atelier-seaside.css +163 -0
  1118. package/highlight.js/styles/base16/atelier-seaside.min.css +7 -0
  1119. package/highlight.js/styles/base16/atelier-sulphurpool-light.css +163 -0
  1120. package/highlight.js/styles/base16/atelier-sulphurpool-light.min.css +7 -0
  1121. package/highlight.js/styles/base16/atelier-sulphurpool.css +163 -0
  1122. package/highlight.js/styles/base16/atelier-sulphurpool.min.css +7 -0
  1123. package/highlight.js/styles/base16/atlas.css +163 -0
  1124. package/highlight.js/styles/base16/atlas.min.css +7 -0
  1125. package/highlight.js/styles/base16/bespin.css +163 -0
  1126. package/highlight.js/styles/base16/bespin.min.css +7 -0
  1127. package/highlight.js/styles/base16/black-metal-bathory.css +163 -0
  1128. package/highlight.js/styles/base16/black-metal-bathory.min.css +7 -0
  1129. package/highlight.js/styles/base16/black-metal-burzum.css +163 -0
  1130. package/highlight.js/styles/base16/black-metal-burzum.min.css +7 -0
  1131. package/highlight.js/styles/base16/black-metal-dark-funeral.css +163 -0
  1132. package/highlight.js/styles/base16/black-metal-dark-funeral.min.css +7 -0
  1133. package/highlight.js/styles/base16/black-metal-gorgoroth.css +163 -0
  1134. package/highlight.js/styles/base16/black-metal-gorgoroth.min.css +7 -0
  1135. package/highlight.js/styles/base16/black-metal-immortal.css +163 -0
  1136. package/highlight.js/styles/base16/black-metal-immortal.min.css +7 -0
  1137. package/highlight.js/styles/base16/black-metal-khold.css +163 -0
  1138. package/highlight.js/styles/base16/black-metal-khold.min.css +7 -0
  1139. package/highlight.js/styles/base16/black-metal-marduk.css +163 -0
  1140. package/highlight.js/styles/base16/black-metal-marduk.min.css +7 -0
  1141. package/highlight.js/styles/base16/black-metal-mayhem.css +163 -0
  1142. package/highlight.js/styles/base16/black-metal-mayhem.min.css +7 -0
  1143. package/highlight.js/styles/base16/black-metal-nile.css +163 -0
  1144. package/highlight.js/styles/base16/black-metal-nile.min.css +7 -0
  1145. package/highlight.js/styles/base16/black-metal-venom.css +163 -0
  1146. package/highlight.js/styles/base16/black-metal-venom.min.css +7 -0
  1147. package/highlight.js/styles/base16/black-metal.css +163 -0
  1148. package/highlight.js/styles/base16/black-metal.min.css +7 -0
  1149. package/highlight.js/styles/base16/brewer.css +163 -0
  1150. package/highlight.js/styles/base16/brewer.min.css +7 -0
  1151. package/highlight.js/styles/base16/bright.css +163 -0
  1152. package/highlight.js/styles/base16/bright.min.css +7 -0
  1153. package/highlight.js/styles/base16/brogrammer.css +163 -0
  1154. package/highlight.js/styles/base16/brogrammer.min.css +7 -0
  1155. package/highlight.js/styles/base16/brush-trees-dark.css +163 -0
  1156. package/highlight.js/styles/base16/brush-trees-dark.min.css +7 -0
  1157. package/highlight.js/styles/base16/brush-trees.css +163 -0
  1158. package/highlight.js/styles/base16/brush-trees.min.css +7 -0
  1159. package/highlight.js/styles/base16/chalk.css +163 -0
  1160. package/highlight.js/styles/base16/chalk.min.css +7 -0
  1161. package/highlight.js/styles/base16/circus.css +163 -0
  1162. package/highlight.js/styles/base16/circus.min.css +7 -0
  1163. package/highlight.js/styles/base16/classic-dark.css +163 -0
  1164. package/highlight.js/styles/base16/classic-dark.min.css +7 -0
  1165. package/highlight.js/styles/base16/classic-light.css +163 -0
  1166. package/highlight.js/styles/base16/classic-light.min.css +7 -0
  1167. package/highlight.js/styles/base16/codeschool.css +163 -0
  1168. package/highlight.js/styles/base16/codeschool.min.css +7 -0
  1169. package/highlight.js/styles/base16/colors.css +163 -0
  1170. package/highlight.js/styles/base16/colors.min.css +7 -0
  1171. package/highlight.js/styles/base16/cupcake.css +163 -0
  1172. package/highlight.js/styles/base16/cupcake.min.css +7 -0
  1173. package/highlight.js/styles/base16/cupertino.css +163 -0
  1174. package/highlight.js/styles/base16/cupertino.min.css +7 -0
  1175. package/highlight.js/styles/base16/danqing.css +163 -0
  1176. package/highlight.js/styles/base16/danqing.min.css +7 -0
  1177. package/highlight.js/styles/base16/darcula.css +163 -0
  1178. package/highlight.js/styles/base16/darcula.min.css +7 -0
  1179. package/highlight.js/styles/base16/dark-violet.css +163 -0
  1180. package/highlight.js/styles/base16/dark-violet.min.css +7 -0
  1181. package/highlight.js/styles/base16/darkmoss.css +163 -0
  1182. package/highlight.js/styles/base16/darkmoss.min.css +7 -0
  1183. package/highlight.js/styles/base16/darktooth.css +163 -0
  1184. package/highlight.js/styles/base16/darktooth.min.css +7 -0
  1185. package/highlight.js/styles/base16/decaf.css +163 -0
  1186. package/highlight.js/styles/base16/decaf.min.css +7 -0
  1187. package/highlight.js/styles/base16/default-dark.css +163 -0
  1188. package/highlight.js/styles/base16/default-dark.min.css +7 -0
  1189. package/highlight.js/styles/base16/default-light.css +163 -0
  1190. package/highlight.js/styles/base16/default-light.min.css +7 -0
  1191. package/highlight.js/styles/base16/dirtysea.css +163 -0
  1192. package/highlight.js/styles/base16/dirtysea.min.css +7 -0
  1193. package/highlight.js/styles/base16/dracula.css +163 -0
  1194. package/highlight.js/styles/base16/dracula.min.css +7 -0
  1195. package/highlight.js/styles/base16/edge-dark.css +163 -0
  1196. package/highlight.js/styles/base16/edge-dark.min.css +7 -0
  1197. package/highlight.js/styles/base16/edge-light.css +163 -0
  1198. package/highlight.js/styles/base16/edge-light.min.css +7 -0
  1199. package/highlight.js/styles/base16/eighties.css +163 -0
  1200. package/highlight.js/styles/base16/eighties.min.css +7 -0
  1201. package/highlight.js/styles/base16/embers.css +163 -0
  1202. package/highlight.js/styles/base16/embers.min.css +7 -0
  1203. package/highlight.js/styles/base16/equilibrium-dark.css +163 -0
  1204. package/highlight.js/styles/base16/equilibrium-dark.min.css +7 -0
  1205. package/highlight.js/styles/base16/equilibrium-gray-dark.css +163 -0
  1206. package/highlight.js/styles/base16/equilibrium-gray-dark.min.css +7 -0
  1207. package/highlight.js/styles/base16/equilibrium-gray-light.css +163 -0
  1208. package/highlight.js/styles/base16/equilibrium-gray-light.min.css +7 -0
  1209. package/highlight.js/styles/base16/equilibrium-light.css +163 -0
  1210. package/highlight.js/styles/base16/equilibrium-light.min.css +7 -0
  1211. package/highlight.js/styles/base16/espresso.css +163 -0
  1212. package/highlight.js/styles/base16/espresso.min.css +7 -0
  1213. package/highlight.js/styles/base16/eva-dim.css +163 -0
  1214. package/highlight.js/styles/base16/eva-dim.min.css +7 -0
  1215. package/highlight.js/styles/base16/eva.css +163 -0
  1216. package/highlight.js/styles/base16/eva.min.css +7 -0
  1217. package/highlight.js/styles/base16/flat.css +163 -0
  1218. package/highlight.js/styles/base16/flat.min.css +7 -0
  1219. package/highlight.js/styles/base16/framer.css +163 -0
  1220. package/highlight.js/styles/base16/framer.min.css +7 -0
  1221. package/highlight.js/styles/base16/fruit-soda.css +163 -0
  1222. package/highlight.js/styles/base16/fruit-soda.min.css +7 -0
  1223. package/highlight.js/styles/base16/gigavolt.css +163 -0
  1224. package/highlight.js/styles/base16/gigavolt.min.css +7 -0
  1225. package/highlight.js/styles/base16/github.css +163 -0
  1226. package/highlight.js/styles/base16/github.min.css +7 -0
  1227. package/highlight.js/styles/base16/google-dark.css +163 -0
  1228. package/highlight.js/styles/base16/google-dark.min.css +7 -0
  1229. package/highlight.js/styles/base16/google-light.css +163 -0
  1230. package/highlight.js/styles/base16/google-light.min.css +7 -0
  1231. package/highlight.js/styles/base16/grayscale-dark.css +163 -0
  1232. package/highlight.js/styles/base16/grayscale-dark.min.css +7 -0
  1233. package/highlight.js/styles/base16/grayscale-light.css +163 -0
  1234. package/highlight.js/styles/base16/grayscale-light.min.css +7 -0
  1235. package/highlight.js/styles/base16/green-screen.css +163 -0
  1236. package/highlight.js/styles/base16/green-screen.min.css +7 -0
  1237. package/highlight.js/styles/base16/gruvbox-dark-hard.css +163 -0
  1238. package/highlight.js/styles/base16/gruvbox-dark-hard.min.css +7 -0
  1239. package/highlight.js/styles/base16/gruvbox-dark-medium.css +163 -0
  1240. package/highlight.js/styles/base16/gruvbox-dark-medium.min.css +7 -0
  1241. package/highlight.js/styles/base16/gruvbox-dark-pale.css +163 -0
  1242. package/highlight.js/styles/base16/gruvbox-dark-pale.min.css +7 -0
  1243. package/highlight.js/styles/base16/gruvbox-dark-soft.css +163 -0
  1244. package/highlight.js/styles/base16/gruvbox-dark-soft.min.css +7 -0
  1245. package/highlight.js/styles/base16/gruvbox-light-hard.css +163 -0
  1246. package/highlight.js/styles/base16/gruvbox-light-hard.min.css +7 -0
  1247. package/highlight.js/styles/base16/gruvbox-light-medium.css +163 -0
  1248. package/highlight.js/styles/base16/gruvbox-light-medium.min.css +7 -0
  1249. package/highlight.js/styles/base16/gruvbox-light-soft.css +163 -0
  1250. package/highlight.js/styles/base16/gruvbox-light-soft.min.css +7 -0
  1251. package/highlight.js/styles/base16/hardcore.css +163 -0
  1252. package/highlight.js/styles/base16/hardcore.min.css +7 -0
  1253. package/highlight.js/styles/base16/harmonic16-dark.css +163 -0
  1254. package/highlight.js/styles/base16/harmonic16-dark.min.css +7 -0
  1255. package/highlight.js/styles/base16/harmonic16-light.css +163 -0
  1256. package/highlight.js/styles/base16/harmonic16-light.min.css +7 -0
  1257. package/highlight.js/styles/base16/heetch-dark.css +163 -0
  1258. package/highlight.js/styles/base16/heetch-dark.min.css +7 -0
  1259. package/highlight.js/styles/base16/heetch-light.css +163 -0
  1260. package/highlight.js/styles/base16/heetch-light.min.css +7 -0
  1261. package/highlight.js/styles/base16/helios.css +163 -0
  1262. package/highlight.js/styles/base16/helios.min.css +7 -0
  1263. package/highlight.js/styles/base16/hopscotch.css +163 -0
  1264. package/highlight.js/styles/base16/hopscotch.min.css +7 -0
  1265. package/highlight.js/styles/base16/horizon-dark.css +163 -0
  1266. package/highlight.js/styles/base16/horizon-dark.min.css +7 -0
  1267. package/highlight.js/styles/base16/horizon-light.css +163 -0
  1268. package/highlight.js/styles/base16/horizon-light.min.css +7 -0
  1269. package/highlight.js/styles/base16/humanoid-dark.css +163 -0
  1270. package/highlight.js/styles/base16/humanoid-dark.min.css +7 -0
  1271. package/highlight.js/styles/base16/humanoid-light.css +163 -0
  1272. package/highlight.js/styles/base16/humanoid-light.min.css +7 -0
  1273. package/highlight.js/styles/base16/ia-dark.css +163 -0
  1274. package/highlight.js/styles/base16/ia-dark.min.css +7 -0
  1275. package/highlight.js/styles/base16/ia-light.css +163 -0
  1276. package/highlight.js/styles/base16/ia-light.min.css +7 -0
  1277. package/highlight.js/styles/base16/icy-dark.css +163 -0
  1278. package/highlight.js/styles/base16/icy-dark.min.css +7 -0
  1279. package/highlight.js/styles/base16/ir-black.css +163 -0
  1280. package/highlight.js/styles/base16/ir-black.min.css +7 -0
  1281. package/highlight.js/styles/base16/isotope.css +163 -0
  1282. package/highlight.js/styles/base16/isotope.min.css +7 -0
  1283. package/highlight.js/styles/base16/kimber.css +163 -0
  1284. package/highlight.js/styles/base16/kimber.min.css +7 -0
  1285. package/highlight.js/styles/base16/london-tube.css +163 -0
  1286. package/highlight.js/styles/base16/london-tube.min.css +7 -0
  1287. package/highlight.js/styles/base16/macintosh.css +163 -0
  1288. package/highlight.js/styles/base16/macintosh.min.css +7 -0
  1289. package/highlight.js/styles/base16/marrakesh.css +163 -0
  1290. package/highlight.js/styles/base16/marrakesh.min.css +7 -0
  1291. package/highlight.js/styles/base16/materia.css +163 -0
  1292. package/highlight.js/styles/base16/materia.min.css +7 -0
  1293. package/highlight.js/styles/base16/material-darker.css +163 -0
  1294. package/highlight.js/styles/base16/material-darker.min.css +7 -0
  1295. package/highlight.js/styles/base16/material-lighter.css +163 -0
  1296. package/highlight.js/styles/base16/material-lighter.min.css +7 -0
  1297. package/highlight.js/styles/base16/material-palenight.css +163 -0
  1298. package/highlight.js/styles/base16/material-palenight.min.css +7 -0
  1299. package/highlight.js/styles/base16/material-vivid.css +163 -0
  1300. package/highlight.js/styles/base16/material-vivid.min.css +7 -0
  1301. package/highlight.js/styles/base16/material.css +163 -0
  1302. package/highlight.js/styles/base16/material.min.css +7 -0
  1303. package/highlight.js/styles/base16/mellow-purple.css +163 -0
  1304. package/highlight.js/styles/base16/mellow-purple.min.css +7 -0
  1305. package/highlight.js/styles/base16/mexico-light.css +163 -0
  1306. package/highlight.js/styles/base16/mexico-light.min.css +7 -0
  1307. package/highlight.js/styles/base16/mocha.css +163 -0
  1308. package/highlight.js/styles/base16/mocha.min.css +7 -0
  1309. package/highlight.js/styles/base16/monokai.css +163 -0
  1310. package/highlight.js/styles/base16/monokai.min.css +7 -0
  1311. package/highlight.js/styles/base16/nebula.css +163 -0
  1312. package/highlight.js/styles/base16/nebula.min.css +7 -0
  1313. package/highlight.js/styles/base16/nord.css +163 -0
  1314. package/highlight.js/styles/base16/nord.min.css +7 -0
  1315. package/highlight.js/styles/base16/nova.css +163 -0
  1316. package/highlight.js/styles/base16/nova.min.css +7 -0
  1317. package/highlight.js/styles/base16/ocean.css +163 -0
  1318. package/highlight.js/styles/base16/ocean.min.css +7 -0
  1319. package/highlight.js/styles/base16/oceanicnext.css +163 -0
  1320. package/highlight.js/styles/base16/oceanicnext.min.css +7 -0
  1321. package/highlight.js/styles/base16/one-light.css +163 -0
  1322. package/highlight.js/styles/base16/one-light.min.css +7 -0
  1323. package/highlight.js/styles/base16/onedark.css +163 -0
  1324. package/highlight.js/styles/base16/onedark.min.css +7 -0
  1325. package/highlight.js/styles/base16/outrun-dark.css +163 -0
  1326. package/highlight.js/styles/base16/outrun-dark.min.css +7 -0
  1327. package/highlight.js/styles/base16/papercolor-dark.css +163 -0
  1328. package/highlight.js/styles/base16/papercolor-dark.min.css +7 -0
  1329. package/highlight.js/styles/base16/papercolor-light.css +163 -0
  1330. package/highlight.js/styles/base16/papercolor-light.min.css +7 -0
  1331. package/highlight.js/styles/base16/paraiso.css +163 -0
  1332. package/highlight.js/styles/base16/paraiso.min.css +7 -0
  1333. package/highlight.js/styles/base16/pasque.css +163 -0
  1334. package/highlight.js/styles/base16/pasque.min.css +7 -0
  1335. package/highlight.js/styles/base16/phd.css +163 -0
  1336. package/highlight.js/styles/base16/phd.min.css +7 -0
  1337. package/highlight.js/styles/base16/pico.css +163 -0
  1338. package/highlight.js/styles/base16/pico.min.css +7 -0
  1339. package/highlight.js/styles/base16/pop.css +163 -0
  1340. package/highlight.js/styles/base16/pop.min.css +7 -0
  1341. package/highlight.js/styles/base16/porple.css +163 -0
  1342. package/highlight.js/styles/base16/porple.min.css +7 -0
  1343. package/highlight.js/styles/base16/qualia.css +163 -0
  1344. package/highlight.js/styles/base16/qualia.min.css +7 -0
  1345. package/highlight.js/styles/base16/railscasts.css +163 -0
  1346. package/highlight.js/styles/base16/railscasts.min.css +7 -0
  1347. package/highlight.js/styles/base16/rebecca.css +163 -0
  1348. package/highlight.js/styles/base16/rebecca.min.css +7 -0
  1349. package/highlight.js/styles/base16/ros-pine-dawn.css +163 -0
  1350. package/highlight.js/styles/base16/ros-pine-dawn.min.css +7 -0
  1351. package/highlight.js/styles/base16/ros-pine-moon.css +163 -0
  1352. package/highlight.js/styles/base16/ros-pine-moon.min.css +7 -0
  1353. package/highlight.js/styles/base16/ros-pine.css +163 -0
  1354. package/highlight.js/styles/base16/ros-pine.min.css +7 -0
  1355. package/highlight.js/styles/base16/sagelight.css +163 -0
  1356. package/highlight.js/styles/base16/sagelight.min.css +7 -0
  1357. package/highlight.js/styles/base16/sandcastle.css +163 -0
  1358. package/highlight.js/styles/base16/sandcastle.min.css +7 -0
  1359. package/highlight.js/styles/base16/seti-ui.css +163 -0
  1360. package/highlight.js/styles/base16/seti-ui.min.css +7 -0
  1361. package/highlight.js/styles/base16/shapeshifter.css +163 -0
  1362. package/highlight.js/styles/base16/shapeshifter.min.css +7 -0
  1363. package/highlight.js/styles/base16/silk-dark.css +163 -0
  1364. package/highlight.js/styles/base16/silk-dark.min.css +7 -0
  1365. package/highlight.js/styles/base16/silk-light.css +163 -0
  1366. package/highlight.js/styles/base16/silk-light.min.css +7 -0
  1367. package/highlight.js/styles/base16/snazzy.css +163 -0
  1368. package/highlight.js/styles/base16/snazzy.min.css +7 -0
  1369. package/highlight.js/styles/base16/solar-flare-light.css +163 -0
  1370. package/highlight.js/styles/base16/solar-flare-light.min.css +7 -0
  1371. package/highlight.js/styles/base16/solar-flare.css +163 -0
  1372. package/highlight.js/styles/base16/solar-flare.min.css +7 -0
  1373. package/highlight.js/styles/base16/solarized-dark.css +163 -0
  1374. package/highlight.js/styles/base16/solarized-dark.min.css +7 -0
  1375. package/highlight.js/styles/base16/solarized-light.css +163 -0
  1376. package/highlight.js/styles/base16/solarized-light.min.css +7 -0
  1377. package/highlight.js/styles/base16/spacemacs.css +163 -0
  1378. package/highlight.js/styles/base16/spacemacs.min.css +7 -0
  1379. package/highlight.js/styles/base16/summercamp.css +163 -0
  1380. package/highlight.js/styles/base16/summercamp.min.css +7 -0
  1381. package/highlight.js/styles/base16/summerfruit-dark.css +163 -0
  1382. package/highlight.js/styles/base16/summerfruit-dark.min.css +7 -0
  1383. package/highlight.js/styles/base16/summerfruit-light.css +163 -0
  1384. package/highlight.js/styles/base16/summerfruit-light.min.css +7 -0
  1385. package/highlight.js/styles/base16/synth-midnight-terminal-dark.css +163 -0
  1386. package/highlight.js/styles/base16/synth-midnight-terminal-dark.min.css +7 -0
  1387. package/highlight.js/styles/base16/synth-midnight-terminal-light.css +163 -0
  1388. package/highlight.js/styles/base16/synth-midnight-terminal-light.min.css +7 -0
  1389. package/highlight.js/styles/base16/tango.css +163 -0
  1390. package/highlight.js/styles/base16/tango.min.css +7 -0
  1391. package/highlight.js/styles/base16/tender.css +163 -0
  1392. package/highlight.js/styles/base16/tender.min.css +7 -0
  1393. package/highlight.js/styles/base16/tomorrow-night.css +163 -0
  1394. package/highlight.js/styles/base16/tomorrow-night.min.css +7 -0
  1395. package/highlight.js/styles/base16/tomorrow.css +163 -0
  1396. package/highlight.js/styles/base16/tomorrow.min.css +7 -0
  1397. package/highlight.js/styles/base16/twilight.css +163 -0
  1398. package/highlight.js/styles/base16/twilight.min.css +7 -0
  1399. package/highlight.js/styles/base16/unikitty-dark.css +163 -0
  1400. package/highlight.js/styles/base16/unikitty-dark.min.css +7 -0
  1401. package/highlight.js/styles/base16/unikitty-light.css +163 -0
  1402. package/highlight.js/styles/base16/unikitty-light.min.css +7 -0
  1403. package/highlight.js/styles/base16/vulcan.css +163 -0
  1404. package/highlight.js/styles/base16/vulcan.min.css +7 -0
  1405. package/highlight.js/styles/base16/windows-10-light.css +163 -0
  1406. package/highlight.js/styles/base16/windows-10-light.min.css +7 -0
  1407. package/highlight.js/styles/base16/windows-10.css +163 -0
  1408. package/highlight.js/styles/base16/windows-10.min.css +7 -0
  1409. package/highlight.js/styles/base16/windows-95-light.css +163 -0
  1410. package/highlight.js/styles/base16/windows-95-light.min.css +7 -0
  1411. package/highlight.js/styles/base16/windows-95.css +163 -0
  1412. package/highlight.js/styles/base16/windows-95.min.css +7 -0
  1413. package/highlight.js/styles/base16/windows-high-contrast-light.css +163 -0
  1414. package/highlight.js/styles/base16/windows-high-contrast-light.min.css +7 -0
  1415. package/highlight.js/styles/base16/windows-high-contrast.css +163 -0
  1416. package/highlight.js/styles/base16/windows-high-contrast.min.css +7 -0
  1417. package/highlight.js/styles/base16/windows-nt-light.css +163 -0
  1418. package/highlight.js/styles/base16/windows-nt-light.min.css +7 -0
  1419. package/highlight.js/styles/base16/windows-nt.css +163 -0
  1420. package/highlight.js/styles/base16/windows-nt.min.css +7 -0
  1421. package/highlight.js/styles/base16/woodland.css +163 -0
  1422. package/highlight.js/styles/base16/woodland.min.css +7 -0
  1423. package/highlight.js/styles/base16/xcode-dusk.css +163 -0
  1424. package/highlight.js/styles/base16/xcode-dusk.min.css +7 -0
  1425. package/highlight.js/styles/base16/zenburn.css +163 -0
  1426. package/highlight.js/styles/base16/zenburn.min.css +7 -0
  1427. package/highlight.js/styles/brown-paper.css +63 -0
  1428. package/highlight.js/styles/brown-paper.min.css +1 -0
  1429. package/highlight.js/styles/brown-papersq.png +0 -0
  1430. package/highlight.js/styles/codepen-embed.css +57 -0
  1431. package/highlight.js/styles/codepen-embed.min.css +1 -0
  1432. package/highlight.js/styles/color-brewer.css +66 -0
  1433. package/highlight.js/styles/color-brewer.min.css +1 -0
  1434. package/highlight.js/styles/cybertopia-cherry.css +103 -0
  1435. package/highlight.js/styles/cybertopia-cherry.min.css +1 -0
  1436. package/highlight.js/styles/cybertopia-dimmer.css +103 -0
  1437. package/highlight.js/styles/cybertopia-dimmer.min.css +1 -0
  1438. package/highlight.js/styles/cybertopia-icecap.css +103 -0
  1439. package/highlight.js/styles/cybertopia-icecap.min.css +1 -0
  1440. package/highlight.js/styles/cybertopia-saturated.css +103 -0
  1441. package/highlight.js/styles/cybertopia-saturated.min.css +1 -0
  1442. package/highlight.js/styles/dark.css +62 -0
  1443. package/highlight.js/styles/dark.min.css +1 -0
  1444. package/highlight.js/styles/default.css +117 -0
  1445. package/highlight.js/styles/default.min.css +9 -0
  1446. package/highlight.js/styles/devibeans.css +90 -0
  1447. package/highlight.js/styles/devibeans.min.css +7 -0
  1448. package/highlight.js/styles/docco.css +83 -0
  1449. package/highlight.js/styles/docco.min.css +1 -0
  1450. package/highlight.js/styles/far.css +67 -0
  1451. package/highlight.js/styles/far.min.css +1 -0
  1452. package/highlight.js/styles/felipec.css +94 -0
  1453. package/highlight.js/styles/felipec.min.css +7 -0
  1454. package/highlight.js/styles/foundation.css +80 -0
  1455. package/highlight.js/styles/foundation.min.css +1 -0
  1456. package/highlight.js/styles/github-dark-dimmed.css +117 -0
  1457. package/highlight.js/styles/github-dark-dimmed.min.css +9 -0
  1458. package/highlight.js/styles/github-dark.css +118 -0
  1459. package/highlight.js/styles/github-dark.min.css +10 -0
  1460. package/highlight.js/styles/github.css +118 -0
  1461. package/highlight.js/styles/github.min.css +10 -0
  1462. package/highlight.js/styles/gml.css +72 -0
  1463. package/highlight.js/styles/gml.min.css +1 -0
  1464. package/highlight.js/styles/googlecode.css +79 -0
  1465. package/highlight.js/styles/googlecode.min.css +1 -0
  1466. package/highlight.js/styles/gradient-dark.css +90 -0
  1467. package/highlight.js/styles/gradient-dark.min.css +1 -0
  1468. package/highlight.js/styles/gradient-light.css +90 -0
  1469. package/highlight.js/styles/gradient-light.min.css +1 -0
  1470. package/highlight.js/styles/grayscale.css +89 -0
  1471. package/highlight.js/styles/grayscale.min.css +1 -0
  1472. package/highlight.js/styles/hybrid.css +95 -0
  1473. package/highlight.js/styles/hybrid.min.css +1 -0
  1474. package/highlight.js/styles/idea.css +86 -0
  1475. package/highlight.js/styles/idea.min.css +1 -0
  1476. package/highlight.js/styles/intellij-light.css +107 -0
  1477. package/highlight.js/styles/intellij-light.min.css +1 -0
  1478. package/highlight.js/styles/ir-black.css +66 -0
  1479. package/highlight.js/styles/ir-black.min.css +1 -0
  1480. package/highlight.js/styles/isbl-editor-dark.css +94 -0
  1481. package/highlight.js/styles/isbl-editor-dark.min.css +1 -0
  1482. package/highlight.js/styles/isbl-editor-light.css +93 -0
  1483. package/highlight.js/styles/isbl-editor-light.min.css +1 -0
  1484. package/highlight.js/styles/kimbie-dark.css +69 -0
  1485. package/highlight.js/styles/kimbie-dark.min.css +1 -0
  1486. package/highlight.js/styles/kimbie-light.css +69 -0
  1487. package/highlight.js/styles/kimbie-light.min.css +1 -0
  1488. package/highlight.js/styles/lightfair.css +81 -0
  1489. package/highlight.js/styles/lightfair.min.css +1 -0
  1490. package/highlight.js/styles/lioshi.css +76 -0
  1491. package/highlight.js/styles/lioshi.min.css +1 -0
  1492. package/highlight.js/styles/magula.css +66 -0
  1493. package/highlight.js/styles/magula.min.css +1 -0
  1494. package/highlight.js/styles/mono-blue.css +56 -0
  1495. package/highlight.js/styles/mono-blue.min.css +1 -0
  1496. package/highlight.js/styles/monokai-sublime.css +76 -0
  1497. package/highlight.js/styles/monokai-sublime.min.css +1 -0
  1498. package/highlight.js/styles/monokai.css +70 -0
  1499. package/highlight.js/styles/monokai.min.css +1 -0
  1500. package/highlight.js/styles/night-owl.css +174 -0
  1501. package/highlight.js/styles/night-owl.min.css +1 -0
  1502. package/highlight.js/styles/nnfx-dark.css +104 -0
  1503. package/highlight.js/styles/nnfx-dark.min.css +10 -0
  1504. package/highlight.js/styles/nnfx-light.css +104 -0
  1505. package/highlight.js/styles/nnfx-light.min.css +10 -0
  1506. package/highlight.js/styles/nord.css +275 -0
  1507. package/highlight.js/styles/nord.min.css +1 -0
  1508. package/highlight.js/styles/obsidian.css +79 -0
  1509. package/highlight.js/styles/obsidian.min.css +1 -0
  1510. package/highlight.js/styles/panda-syntax-dark.css +92 -0
  1511. package/highlight.js/styles/panda-syntax-dark.min.css +1 -0
  1512. package/highlight.js/styles/panda-syntax-light.css +89 -0
  1513. package/highlight.js/styles/panda-syntax-light.min.css +1 -0
  1514. package/highlight.js/styles/paraiso-dark.css +67 -0
  1515. package/highlight.js/styles/paraiso-dark.min.css +1 -0
  1516. package/highlight.js/styles/paraiso-light.css +67 -0
  1517. package/highlight.js/styles/paraiso-light.min.css +1 -0
  1518. package/highlight.js/styles/pojoaque.css +76 -0
  1519. package/highlight.js/styles/pojoaque.jpg +0 -0
  1520. package/highlight.js/styles/pojoaque.min.css +1 -0
  1521. package/highlight.js/styles/purebasic.css +103 -0
  1522. package/highlight.js/styles/purebasic.min.css +1 -0
  1523. package/highlight.js/styles/qtcreator-dark.css +76 -0
  1524. package/highlight.js/styles/qtcreator-dark.min.css +1 -0
  1525. package/highlight.js/styles/qtcreator-light.css +74 -0
  1526. package/highlight.js/styles/qtcreator-light.min.css +1 -0
  1527. package/highlight.js/styles/rainbow.css +77 -0
  1528. package/highlight.js/styles/rainbow.min.css +1 -0
  1529. package/highlight.js/styles/rose-pine-dawn.css +107 -0
  1530. package/highlight.js/styles/rose-pine-dawn.min.css +4 -0
  1531. package/highlight.js/styles/rose-pine-moon.css +109 -0
  1532. package/highlight.js/styles/rose-pine-moon.min.css +4 -0
  1533. package/highlight.js/styles/rose-pine.css +109 -0
  1534. package/highlight.js/styles/rose-pine.min.css +4 -0
  1535. package/highlight.js/styles/routeros.css +86 -0
  1536. package/highlight.js/styles/routeros.min.css +1 -0
  1537. package/highlight.js/styles/school-book.css +62 -0
  1538. package/highlight.js/styles/school-book.min.css +1 -0
  1539. package/highlight.js/styles/shades-of-purple.css +84 -0
  1540. package/highlight.js/styles/shades-of-purple.min.css +1 -0
  1541. package/highlight.js/styles/srcery.css +89 -0
  1542. package/highlight.js/styles/srcery.min.css +1 -0
  1543. package/highlight.js/styles/stackoverflow-dark.css +117 -0
  1544. package/highlight.js/styles/stackoverflow-dark.min.css +13 -0
  1545. package/highlight.js/styles/stackoverflow-light.css +117 -0
  1546. package/highlight.js/styles/stackoverflow-light.min.css +13 -0
  1547. package/highlight.js/styles/sunburst.css +89 -0
  1548. package/highlight.js/styles/sunburst.min.css +1 -0
  1549. package/highlight.js/styles/tokyo-night-dark.css +114 -0
  1550. package/highlight.js/styles/tokyo-night-dark.min.css +8 -0
  1551. package/highlight.js/styles/tokyo-night-light.css +114 -0
  1552. package/highlight.js/styles/tokyo-night-light.min.css +8 -0
  1553. package/highlight.js/styles/tomorrow-night-blue.css +69 -0
  1554. package/highlight.js/styles/tomorrow-night-blue.min.css +1 -0
  1555. package/highlight.js/styles/tomorrow-night-bright.css +68 -0
  1556. package/highlight.js/styles/tomorrow-night-bright.min.css +1 -0
  1557. package/highlight.js/styles/vs.css +63 -0
  1558. package/highlight.js/styles/vs.min.css +1 -0
  1559. package/highlight.js/styles/vs2015.css +100 -0
  1560. package/highlight.js/styles/vs2015.min.css +1 -0
  1561. package/highlight.js/styles/xcode.css +90 -0
  1562. package/highlight.js/styles/xcode.min.css +1 -0
  1563. package/highlight.js/styles/xt256.css +79 -0
  1564. package/highlight.js/styles/xt256.min.css +1 -0
  1565. package/highlight.js/types/index.d.ts +274 -0
  1566. package/index.css +95 -0
  1567. package/package.json +38 -0
  1568. package/types/editor.d.ts +27 -0
  1569. package/types/index.d.ts +9 -0
  1570. package/types/languages.d.ts +28 -0
  1571. package/types/theme.d.ts +9 -0
@@ -0,0 +1,3556 @@
1
+ ## Version 11.11.1
2
+
3
+ - Fixes regression with Rust grammar.
4
+
5
+
6
+ ## Version 11.11.0
7
+
8
+ CAVEATS / POTENTIALLY BREAKING CHANGES
9
+
10
+ - Nothing yet.
11
+
12
+
13
+ Core Grammars:
14
+
15
+ - fix(rust) - adds emoji support in single quote strings [joshgoebel][]
16
+ - fix(apache) - support line continuation via `\` [Josh Goebel][]
17
+ - fix(makefile) - allow strings inside `$()` expressions [aneesh98][]
18
+ - enh(arcade) updated to ArcGIS Arcade version 1.29 [Kristian Ekenes][]
19
+ - enh(css) add all properties listed on MDN (96 additions including `anchor-name`, `aspect-ratio`, `backdrop-filter`, `container`, `margin-trim`, `place-content`, `scroll-timeline`, ...) [BaliBalo][]
20
+ - enh(excel) add built-in functions for Excel 365 release to 2024 [Danny Winrow][]
21
+ - enh(erlang) OTP 27 triple-quoted strings [nixxquality][]
22
+ - enh(erlang) OTP 27 doc attribute [nixxquality][]
23
+ - enh(erlang) OTP 27 Sigil type [nixxquality][]
24
+ - enh(erlang) OTP25/27 maybe statement [nixxquality][]
25
+ - enh(dart) Support digit-separators in number literals [Sam Rawlins][]
26
+ - enh(csharp) add Contextual keywords `file`, `args`, `dynamic`, `record`, `required` and `scoped` [Alvin Joy][]
27
+ - enh(lua) add 'pluto' as an alias [Sainan]
28
+ - enh(bash) add reserved keywords `time` and `coproc` [Álvaro Mondéjar][]
29
+ - enh(nix) update keywords [h7x4][]
30
+ - enh(nix) support paths [h7x4][]
31
+ - enh(nix) support lookup paths [h7x4][]
32
+ - enh(nix) support operators [h7x4][]
33
+ - enh(nix) support REPL keywords [h7x4][]
34
+ - enh(nix) support markdown comments [h7x4][]
35
+ - enh(nix) support basic function params [h7x4][]
36
+ - enh(nix) better parsing of attrsets [h7x4][]
37
+ - fix(c) - Fixed hex numbers with decimals [Dxuian]
38
+ - fix(typescript) - Fixedoptional property not highlighted correctly [Dxuian]
39
+ - fix(ruby) - fix `|=` operator false positives (as block arguments) [Aboobacker MK]
40
+ - enh(gcode) rewrote language for modern gcode support [Barthélémy Bonhomme][]
41
+ - fix(sql) - Fixed sql primary key and foreign key spacing issue [Dxuian]
42
+ - fix(cpp) added flat_set and flat_map as a part of cpp 23 version [Lavan]
43
+ - fix(yaml) - Fixed special chars in yaml [Dxuian]
44
+ - fix(basic) - Fixed closing quotation marks not required for a PRINT statement [Somya]
45
+ - fix(nix) remove `add` builtin [h7x4][]
46
+ - fix(nix) mark `or` as builtin instead of literal [h7x4][]
47
+ - fix(nix) handle `'''` string escapes [h7x4][]
48
+ - fix(nix) handle backslash string escapes [h7x4][]
49
+ - fix(nix) don't mix escapes for `"` and `''` strings [h7x4][]
50
+ - fix(swift) - Fixed syntax highlighting for class func/var declarations [guuido]
51
+ - fix(yaml) - Fixed wrong escaping behavior in single quoted strings [guuido]
52
+ - enh(nim) - Add `concept` and `defer` to list of Nim keywords [Jake Leahy]
53
+
54
+ New Grammars:
55
+
56
+ - added 3rd party TTCN-3 grammar to SUPPORTED_LANGUAGES [Osmocom][]
57
+ - added 3rd party Odin grammar to SUPPORTED_LANGUAGES [clsource][]
58
+ - added 3rd party Liquid grammar to SUPPORTED_LANGUAGES [Laurel King][]
59
+
60
+ Developer Tools:
61
+
62
+ - Nothing yet.
63
+
64
+ Themes:
65
+
66
+ - Added `Rosé Pine` theme [William Wilkinson][]
67
+ - Added `Cybertopia Cherry` theme [Alexandre ZANNI][]
68
+ - Added `Cybertopia Dimmer` theme [Alexandre ZANNI][]
69
+ - Added `Cybertopia Icecap` theme [Alexandre ZANNI][]
70
+ - Added `Cybertopia Saturated` theme [Alexandre ZANNI][]
71
+
72
+ Improvements:
73
+
74
+ - Resolve the memory leak problem when creating multiple Highlight.js instances [Imken][]
75
+
76
+ CONTRIBUTORS
77
+
78
+ [Josh Goebel]: https://github.com/joshgoebel
79
+ [aneesh98]: https://github.com/aneesh98
80
+ [BaliBalo]: https://github.com/BaliBalo
81
+ [William Wilkinson]: https://github.com/wilkinson4
82
+ [nixxquality]: https://github.com/nixxquality
83
+ [srawlins]: https://github.com/srawlins
84
+ [Alvin Joy]: https://github.com/alvinsjoy
85
+ [Dxuian]:https://github.com/Dxuian
86
+ [Aboobacker MK]: https://github.com/tachyons
87
+ [Imken]: https://github.com/immccn123
88
+ [Sainan]: https://github.com/Sainan
89
+ [Osmocom]: https://github.com/osmocom
90
+ [Álvaro Mondéjar]: https://github.com/mondeja
91
+ [Alexandre ZANNI]: https://github.com/noraj
92
+ [Barthélémy Bonhomme]: https://github.com/barthy-koeln
93
+ [Lavan]: https://github.com/jvlavan
94
+ [Somya]: https://github.com/somya-05
95
+ [guuido]: https://github.com/guuido
96
+ [clsource]: https://github.com/clsource
97
+ [Jake Leahy]: https://github.com/ire4ever1190
98
+ [Laurel King]: https://github.com/laurelthorburn
99
+ [Kristian Ekenes]: https://github.com/ekenes
100
+ [Danny Winrow]: https://github.com/dannywinrow
101
+
102
+
103
+ ## Version 11.10.0
104
+
105
+ CAVEATS / POTENTIALLY BREAKING CHANGES
106
+
107
+ - Drops support for Node 16.x, which is no longer supported by Node.js.
108
+
109
+ Core Grammars:
110
+
111
+ - enh(typescript) add support for `satisfies` operator [Kisaragi Hiu][]
112
+ - enc(c) added more C23 keywords [Melkor-1][]
113
+ - enh(json) added jsonc as an alias [BackupMiles][]
114
+ - enh(gml) updated to latest language version (GML v2024.2) [gnysek][]
115
+ - enh(c) added more C23 keywords and preprcoessor directives [Eisenwave][]
116
+ - enh(js/ts) support namespaced tagged template strings [Aral Balkan][]
117
+ - enh(perl) fix false-positive variable match at end of string [Josh Goebel][]
118
+ - fix(cpp) not all kinds of number literals are highlighted correctly [Lê Duy Quang][]
119
+ - fix(css) fix overly greedy pseudo class matching [Bradley Mackey][]
120
+ - enh(arcade) updated to ArcGIS Arcade version 1.24 [Kristian Ekenes][]
121
+ - fix(typescript): params types [Mohamed Ali][]
122
+ - fix(rust) fix escaped double quotes in string [Mohamed Ali][]
123
+ - fix(rust) fix for r# raw identifier not being highlighted correctly. [JaeBaek Lee][]
124
+ - enh(rust) Adding union to be recognized as a keyword in Rust. [JaeBaek Lee][]
125
+ - fix(yaml) fix for yaml with keys having brackets highlighted incorrectly [Aneesh Kulkarni][]
126
+ - fix(csharp) add raw string highlighting for C# 11. [Tara][]
127
+ - fix(bash) fix # within token being detected as the start of a comment [Felix Uhl][]
128
+ - fix(python) fix `or` conflicts with string highlighting [Mohamed Ali][]
129
+ - enh(python) adds a scope to the `self` variable [Lee Falin][]
130
+ - enh(delphi) allow digits to be omitted for hex and binary literals [Jonah Jeleniewski][]
131
+ - enh(delphi) add support for digit separators [Jonah Jeleniewski][]
132
+ - enh(delphi) add support for character strings with non-decimal numerics [Jonah Jeleniewski][]
133
+ - fix(javascript) incorrect function name highlighting [CY Fung][]
134
+ - fix(1c) fix escaped symbols "+-;():=,[]" literals [Vitaly Barilko][]
135
+ - fix(swift) correctly highlight generics and conformances in type definitions [Bradley Mackey][]
136
+ - enh(swift) add package keyword [Bradley Mackey][]
137
+ - fix(swift) ensure keyword attributes highlight correctly [Bradley Mackey][]
138
+ - fix(types) fix interface LanguageDetail > keywords [Patrick Chiu]
139
+ - enh(java) add `goto` to be recognized as a keyword in Java [Alvin Joy][]
140
+ - enh(bash) add keyword `sudo` [Alvin Joy][]
141
+ - fix(haxe) captures `new` keyword without capturing it within variables/class names [Cameron Taylor][]
142
+ - fix(go) fix go number literals to accept `_` separators, add hex p exponents [Lisa Ugray][]
143
+ - enh(markdown) add entity support [David Schach][] [TaraLei][]
144
+ - enh(css) add `justify-items` and `justify-self` attributes [Vasily Polovnyov][]
145
+ - enh(css) add `accent-color`, `appearance`, `color-scheme`, `rotate`, `scale` and `translate` attributes [Carl Räfting][]
146
+ - fix(fortran) fixes parsing of keywords delimited by dots [Julien Bloino][]
147
+ - enh(css) add `select`, `option`, `optgroup`, `picture` and `source` to list of known tags [Vasily Polovnyov][]
148
+ - enh(css) add `inset`, `inset-*`, `border-start-*-radius` and `border-end-*-radius` attributes [Vasily Polovnyov][]
149
+ - enh(css) add `text-decoration-skip-ink`, `text-decoration-thickness` and `text-underline-offset` attributes [Vasily Polovnyov][]
150
+ - enh(java) add `when` to be recognized as a keyword in Java [Chiel van de Steeg][]
151
+
152
+ New Grammars:
153
+
154
+ - added 3rd party CODEOWNERS grammar to SUPPORTED_LANGUAGES [nataliia-radina][]
155
+ - added 3rd party Luau grammar to SUPPORTED_LANGUAGES [Robloxian Demo][]
156
+ - added 3rd party ReScript grammar to SUPPORTED_LANGUAGES [Paul Tsnobiladzé][]
157
+ - added 3rd party Zig grammar to SUPPORTED_LANGUAGES [Hyou BunKen][]
158
+ - added 3rd party WGSL grammar to SUPPORTED_LANGUAGES [Arman Uguray][]
159
+ - added 3rd party Unison grammar to SUPPORTED_LANGUAGES [Rúnar Bjarnason][]
160
+ - added 3rd party Phix grammar to SUPPORTED_LANGUAGES [PeteLomax][]
161
+ - added 3rd party Mirth grammar to SUPPORTED_LANGUAGES [Sierra][]
162
+ - added 3rd party JSONata grammar to SUPPORTED_LANGUAGES [Vlad Dimov][]
163
+
164
+ Developer Tool:
165
+
166
+ - enh(tools): order CSS options picklist [David Schach][]
167
+ - enh(tools): remove duplicate CSS options [David Schach][]
168
+ - (typescript): deprecate old `highlight` API [Misha Kaletsky][]
169
+
170
+ Themes:
171
+
172
+ - Added `1c-light` theme a like in the IDE 1C:Enterprise 8 (for 1c) [Vitaly Barilko][]
173
+
174
+ [Kisaragi Hiu]: https://github.com/kisaragi-hiu
175
+ [Melkor-1]: https://github.com/Melkor-1
176
+ [PeteLomax]: https://github.com/petelomax
177
+ [gnysek]: https://github.com/gnysek
178
+ [Eisenwave]: https://github.com/Eisenwave
179
+ [Aral Balkan]: https://github.com/aral
180
+ [Lê Duy Quang]: https://github.com/leduyquang753
181
+ [Mohamed Ali]: https://github.com/MohamedAli00949
182
+ [JaeBaek Lee]: https://github.com/ThinkingVincent
183
+ [Bradley Mackey]: https://github.com/bradleymackey
184
+ [Kristian Ekenes]: https://github.com/ekenes
185
+ [Aneesh Kulkarni]: https://github.com/aneesh98
186
+ [Bruno Meneguele]: https://github.com/bmeneg
187
+ [Tara]: https://github.com/taralei
188
+ [Felix Uhl]: https://github.com/iFreilicht
189
+ [nataliia-radina]: https://github.com/Nataliia-Radina
190
+ [Robloxian Demo]: https://github.com/RobloxianDemo
191
+ [Paul Tsnobiladzé]: https://github.com/tsnobip
192
+ [Jonah Jeleniewski]: https://github.com/cirras
193
+ [Josh Goebel]: https://github.com/joshgoebel
194
+ [CY Fung]: https://github.com/cyfung1031
195
+ [Vitaly Barilko]: https://github.com/Diversus23
196
+ [Patrick Chiu]: https://github.com/patrick-kw-chiu
197
+ [Alvin Joy]: https://github.com/alvinsjoy
198
+ [Lisa Ugray]: https://github.com/lugray
199
+ [TaraLei]: https://github.com/TaraLei
200
+ [Cameron Taylor]: https://github.com/ninjamuffin99
201
+ [Vasily Polovnyov]: https://github.com/vast
202
+ [Arman Uguray]: https://github.com/armansito
203
+ [Rúnar Bjarnason]: https://github.com/runarorama
204
+ [Carl Räfting]: https://github.com/carlrafting
205
+ [BackupMiles]: https://github.com/BackupMiles
206
+ [Julien Bloino]: https://github.com/jbloino
207
+ [Sierra]: https://github.com/casuallyblue
208
+ [Vlad Dimov]: https://github.com/DevDimov
209
+ [Chiel van de Steeg]: https://github.com/cvdsteeg
210
+
211
+
212
+ ## Version 11.9.0
213
+
214
+ CAVEATS / POTENTIALLY BREAKING CHANGES
215
+
216
+ - Drops support for Node 14.x, which is no longer supported by Node.js.
217
+ - In the `node` build `styles/*.css` files now ship un-minified
218
+ with minified counterparts as: `styles/*.min.css` [mvorisek][]
219
+ (this makes things consistent with our `cdn` builds)
220
+
221
+ Parser:
222
+
223
+ - (enh) prevent re-highlighting of an element [joshgoebel][]
224
+ - (chore) Remove discontinued badges from README [Bradley Mackey][]
225
+ - (chore) Fix build size report [Bradley Mackey][]
226
+
227
+ New Grammars:
228
+
229
+ - added 3rd party Iptables grammar to SUPPORTED_LANGUAGES [Checconio][]
230
+ - added 3rd party x86asmatt grammar to SUPPORTED_LANGUAGES [gondow][]
231
+ - added 3rd party riscv64 grammar to SUPPORTED_LANGUAGES [aana-h2][]
232
+ - added 3rd party Ballerina grammar to SUPPORTED_LANGUAGES [Yasith Deelaka][]
233
+
234
+ Core Grammars:
235
+
236
+ - fix(cpp) fixed highlighter break state [Md Saad Akhtar][]
237
+ - fix(rust) added negative-lookahead for callable keywords `if` `while` `for` [Omar Hussein][]
238
+ - enh(armasm) added `x0-x30` and `w0-w30` ARMv8 registers [Nicholas Thompson][]
239
+ - enh(haxe) added `final`, `is`, `macro` keywords and `$` identifiers [Robert Borghese][]
240
+ - enh(haxe) support numeric separators and suffixes [Robert Borghese][]
241
+ - fix(haxe) fixed metadata arguments and support non-colon syntax [Robert Borghese][]
242
+ - fix(haxe) differentiate `abstract` declaration from keyword [Robert Borghese][]
243
+ - fix(bash) do not delimit a string by an escaped apostrophe [hancar][]
244
+ - enh(swift) support `macro` keyword [Bradley Mackey][]
245
+ - enh(swift) support parameter pack keywords [Bradley Mackey][]
246
+ - enh(swift) regex literal support [Bradley Mackey][]
247
+ - enh(swift) `@unchecked` and `@Sendable` support [Bradley Mackey][]
248
+ - enh(scala) add using directives support `//> using foo bar` [Jamie Thompson][]
249
+ - fix(scala) fixed comments in constructor arguments not being properly highlighted [Isaac Nonato][]
250
+ - enh(swift) ownership modifiers support [Bradley Mackey][]
251
+ - enh(nsis) Add `!assert` compiler flag [idleberg][]
252
+ - fix(haskell) do not treat double dashes inside infix operators as comments [Zlondrej][]
253
+ - enh(rust) added `eprintln!` macro [qoheniac][]
254
+ - enh(leaf) update syntax to 4.0 [Samuel Bishop][]
255
+ - fix(reasonml) simplify syntax and align it with ocaml [jchavarri][]
256
+ - fix(swift) `warn_unqualified_access` is an attribute [Bradley Mackey][]
257
+ - enh(swift) macro attributes are highlighted as keywords [Bradley Mackey][]
258
+ - enh(stan) updated for version 2.33 (#3859) [Brian Ward][]
259
+ - enh(llvm) match additional types [wtz][]
260
+ - fix(css) added '_' css variable detection [Md Saad Akhtar][]
261
+ - enh(groovy) add `record` and `var` as keywords [Guillaume Laforge][]
262
+
263
+ Developer Tool:
264
+
265
+ - (chore) Update dev tool to use the new `highlight` API. [Shah Shabbir Ahmmed][]
266
+ - (enh) Auto-update the highlighted output when the language dropdown changes. [Shah Shabbir Ahmmed][]
267
+
268
+ [Robert Borghese]: https://github.com/RobertBorghese
269
+ [Isaac Nonato]: https://github.com/isaacnonato
270
+ [Shah Shabbir Ahmmed]: https://github.com/shabbir23ah
271
+ [Josh Goebel]: https://github.com/joshgoebel
272
+ [Checconio]: https://github.com/Checconio
273
+ [Bradley Mackey]: https://github.com/bradleymackey
274
+ [mvorisek]: https://github.com/mvorisek
275
+ [qoheniac]: https://github.com/qoheniac
276
+ [Samuel Bishop]: https://github.com/dannflor
277
+ [gondow]: https://github.com/gondow
278
+ [jchavarri]: https://github.com/jchavarri
279
+ [aana-h2]: https://github.com/aana-h2
280
+ [Nicholas Thompson]: https://github.com/NAThompson
281
+ [Yasith Deelaka]: https://github.com/YasithD
282
+ [Brian Ward]: https://github.com/WardBrian
283
+ [wtz]: https://github.com/wangtz0607
284
+ [Md Saad Akhtar]: https://github.com/akhtarmdsaad
285
+ [Guillaume Laforge]: https://github.com/glaforge
286
+
287
+
288
+ ## Version 11.8.0
289
+
290
+ Parser engine:
291
+
292
+ - added a function to default export to generate a fresh highlighter instance to be used by extensions [WisamMechano][]
293
+ - added BETA `__emitTokens` key to grammars to allow then to direct their own parsing, only using Highlight.js for the HTML rendering [Josh Goebel][]
294
+ - (enh) add `removePlugin` api [faga295][]
295
+ - (fix) typo in language name of `JavaScript` [Cyrus Kao][]
296
+
297
+ New Grammars:
298
+
299
+ - added 3rd party Lang grammar to SUPPORTED_LANGUAGES [AdamRaichu][]
300
+ - added 3rd party C3 grammar to SUPPORTED_LANGUAGES [aliaegik][]
301
+
302
+ Core Grammars:
303
+
304
+ - enh(sql) support `_` in variable names [joshgoebel][]
305
+ - enh(mathematica) update keywords list to 13.2.1 [arnoudbuzing][]
306
+ - enh(protobuf) add `proto` alias for Protobuf [dimitropoulos][]
307
+ - enh(sqf) latest changes in Arma 3 v2.11 [Leopard20][]
308
+ - enh(js/ts) Added support for GraphQL tagged template strings [Ali Ukani][]
309
+ - enh(javascript) add sessionStorage to list of built-in variables [Jeroen van Vianen][]
310
+ - enh(http) Add support for HTTP/3 [Rijenkii][]
311
+ - added 3rd party Motoko grammar to SUPPORTED_LANGUAGES [rvanasa][]
312
+ - added 3rd party Candid grammar to SUPPORTED_LANGUAGES [rvanasa][]
313
+ - fix(haskell) Added support for characters [CrystalSplitter][]
314
+ - enh(dart) Add `base`, `interface`, `sealed`, and `when` keywords [Sam Rawlins][]
315
+ - enh(php) detect newer more flexible NOWdoc syntax (#3679) [Timur Kamaev][]
316
+ - enh(python) improve autodetection of code with type hinting any function's return type (making the `->` operator legal) [Keyacom][]
317
+ - enh(bash) add `select` and `until` as keywords
318
+
319
+ [arnoudbuzing]: https://github.com/arnoudbuzing
320
+ [aliaegik]: https://github.com/aliaegik
321
+ [Josh Goebel]: https://github.com/joshgoebel
322
+ [Timur Kamaev]: https://github.com/doiftrue
323
+ [Leopard20]: https://github.com/Leopard20/
324
+ [WisamMechano]: https://github.com/wisammechano
325
+ [faga295]: https://github.com/faga295
326
+ [AdamRaichu]: https://github.com/AdamRaichu
327
+ [Ali Ukani]: https://github.com/ali
328
+ [Jeroen van Vianen]: https://github.com/morinel
329
+ [gnysek]: https://github.com/gnysek
330
+ [Rijenkii]: https://github.com/rijenkii
331
+ [faga295]: https://github.com/faga295
332
+ [rvanasa]: https://github.com/rvanasa
333
+ [CrystalSplitter]: https://github.com/CrystalSplitter
334
+ [Sam Rawlins]: https://github.com/srawlins
335
+ [Keyacom]: https://github.com/Keyacom
336
+ [Boris Verkhovskiy]: https://github.com/verhovsky
337
+ [Cyrus Kao]: https://github.com/CyrusKao
338
+ [Zlondrej]: https://github.com/zlondrej
339
+
340
+
341
+ ## Version 11.7.0
342
+
343
+ New Grammars:
344
+
345
+ - added 3rd party LookML grammar to SUPPORTED_LANGUAGES [Josh Temple][]
346
+ - added 3rd party FunC grammar to SUPPORTED_LANGUAGES [Nikita Sobolev][]
347
+ - Added 3rd party Flix grammar to SUPPORTED_LANGUAGES [The Flix Organisation][]
348
+ - Added 3rd party RVT grammar to SUPPORTED_LANGUAGES [Sopitive][]
349
+
350
+ Grammars:
351
+
352
+ - enh(scheme) add `scm` alias for Scheme [matyklug18][]
353
+ - fix(typescript) patterns like `<T =` are not JSX [Josh Goebel][]
354
+ - fix(bash) recognize the `((` keyword [Nick Chambers][]
355
+ - enh(Ruby) misc improvements (kws, class names, etc) [Josh Goebel][]
356
+ - fix(js) do not flag `import()` as a function, rather a keyword [nathnolt][]
357
+ - fix(bash) recognize the `((` keyword [Nick Chambers][]
358
+ - fix(nix) support escaped dollar signs in strings [h7x4][]
359
+ - enh(cmake) support bracket comments [Hirse][]
360
+ - enh(java) add yield keyword to java [MBoegers][]
361
+ - enh(java) add permits keyword to java [MBoegers][]
362
+ - fix(javascript/typescript) correct identifier matching when using numbers [Lachlan Heywood][]
363
+
364
+ Improvements:
365
+
366
+ - Documentation typo fix by [Eddymens][]
367
+
368
+ [matyklug18]: https://github.com/matyklug18
369
+ [Josh Goebel]: https://github.com/joshgoebel
370
+ [Josh Temple]: https://github.com/joshtemple
371
+ [nathnolt]: https://github.com/nathnolt
372
+ [Nick Chambers]: https://github.com/uplime
373
+ [h7x4]: https://github.com/h7x4
374
+ [Hirse]: https://github.com/Hirse
375
+ [The Flix Organisation]: https://github.com/flix
376
+ [MBoegers]: https://github.com/MBoegers
377
+ [Lachlan Heywood]: https://github.com/lachieh
378
+ [Eddymens]: https://github.com/eddymens
379
+ [Sopitive]: https://github.com/Sopitive
380
+
381
+
382
+ ## Version 11.6.0
383
+
384
+ Supported Node.js versions:
385
+
386
+ - (chore) Drops support for Node 12.x, which is no longer supported by Node.js.
387
+
388
+
389
+ Default build changes:
390
+
391
+ - add `wasm` to default `:common` build (#3526) [Josh Goebel][]
392
+ - add `graphql` to default `:common` build (#3526) [Josh Goebel][]
393
+
394
+
395
+ Grammars:
396
+ - fix(json) changed null/booleans from `keyword` to `literal` [shikhar13012001][]
397
+ - enh(gml) reorganized and added additional keywords [Bluecoreg][]
398
+ - enh(csharp) Added support for the new `scoped` keyword in C# (#3571) [David Pine][]
399
+ - enh(scala) add `transparent` keyword [Matt Bovel][]
400
+ - fix(rust) highlight types immediately preceeding `::` (#3540) [Josh Goebel][]
401
+ - Added 3rd party Apex grammar to SUPPORTED_LANGUAGES (#3546) [David Schach][]
402
+ - fix(rust) recognize `include_bytes!` macro (#3541) [Serial-ATA][]
403
+ - fix(java) do not intepret `==` as a variable declaration [Mousetail][]
404
+ - enh(swift) add SE-0335 existential `any` keyword (#3515) [Bradley Mackey][]
405
+ - enh(swift) add support for `distributed` keyword [Marcus Ortiz][]
406
+ - enh(xml) recognize Unicode letters instead of only ASCII letters in XML element and attribute names (#3256)[Martin Honnen][]
407
+ - Added 3rd party Toit grammar to SUPPORTED_LANGUAGES [Serzhan Nasredin][]
408
+ - Use substring() instead of deprecated substr() [Tobias Buschor][]
409
+ - Added 3rd party Oak grammar to SUPPORTED_LANGUAGES [Tim Smith][]
410
+ - enh(python) add `match` and `case` keywords [Avrumy Lunger][]
411
+ - Added 3rd party COBOL grammar to SUPPORTED_LANGUAGES [Gabriel Gonçalves][]
412
+
413
+ [shikhar13012001]: https://github.com/shikhar13012001
414
+ [Bluecoreg]: https://github.com/Bluecoreg
415
+ [Matt Bovel]: https://github.com/mbovel
416
+ [David Schach]: https://github.com/dschach
417
+ [Serial-ATA]: https://github.com/Serial-ATA
418
+ [Bradley Mackey]: https://github.com/bradleymackey
419
+ [Marcus Ortiz]: https://github.com/mportiz08
420
+ [Martin Honnen]: https://github.com/martin-honnen
421
+ [Serzhan Nasredin]: https://github.com/snxx-lppxx
422
+ [Tobias Buschor]: https://github.com/nuxodin/
423
+ [Tim Smith]: https://github.com/timlabs
424
+ [Avrumy Lunger]: https://github.com/vrumger
425
+ [Mousetail]: https://github.com/mousetail
426
+ [Gabriel Gonçalves]: https://github.com/KTSnowy
427
+ [Nikita Sobolev]: https://github.com/sobolevn
428
+ [Misha Kaletsky]: https://github.com/mmkal
429
+
430
+ ## Version 11.5.0
431
+
432
+ Themes:
433
+ - Added `Tokyo-Night-dark` theme [Henri Vandersleyen][]
434
+ - Added `Tokyo-Night-light` theme [Henri Vandersleyen][]
435
+ - Added `panda-syntax-dark` theme [Annmarie Switzer][]
436
+ - Added `panda-syntax-light` theme [Annmarie Switzer][]
437
+
438
+ New Grammars:
439
+
440
+ - Added GraphQL to SUPPORTED_LANGUAGES [John Foster][]
441
+ - Added Macaulay2 to SUPPORTED_LANGUAGES [Doug Torrance][]
442
+
443
+ Grammars:
444
+
445
+ - enh(ruby) lots of small Ruby cleanups/improvements [Josh Goebel][]
446
+ - enh(objectivec) add `type` and `variable.language` scopes [Josh Goebel][]
447
+ - enh(xml) support processing instructions (#3492) [Josh Goebel][]
448
+ - enh(ruby ) better support multi-line IRB prompts
449
+ - enh(bash) improved keyword `$pattern` (numbers allowed in command names) [Martin Mattel][]
450
+ - add `meta.prompt` scope for REPL prompts, etc [Josh Goebel][]
451
+ - fix(markdown) Handle `***Hello world***` without breaking [Josh Goebel][]
452
+ - enh(php) add support for PHP Attributes [Wojciech Kania][]
453
+ - fix(java) prevent false positive variable init on `else` [Josh Goebel][]
454
+ - enh(php) named arguments [Wojciech Kania][]
455
+ - fix(php) PHP constants [Wojciech Kania][]
456
+ - fix(angelscript) incomplete int8, int16, int32, int64 highlighting [Melissa Geels][]
457
+ - enh(ts) modify TypeScript-specific keywords and types list [anydonym][]
458
+ - fix(brainfuck) fix highlighting of initial ++/-- [Christina Hanson][]
459
+ - fix(llvm) escaping in strings and number formats [Flakebi][]
460
+ - enh(elixir) recognize references to modules [Mark Ericksen][]
461
+ - enh(css): add support for more properties [Nicolaos Skimas][]
462
+
463
+ [Martin Mattel]: https://github.com/mmattel
464
+ [John Foster]: https://github.com/jf990
465
+ [Wojciech Kania]: https://github.com/wkania
466
+ [Melissa Geels]: https://github.com/codecat
467
+ [anydonym]: https://github.com/anydonym
468
+ [henri Vandersleyen]: https://github.com/Vanderscycle
469
+ [Christina Hanson]: https://github.com/LyricLy
470
+ [Flakebi]: https://github.com/Flakebi
471
+ [Josh Goebel]: https://github.com/joshgoebel
472
+ [Mark Ericksen]: https://github.com/brainlid
473
+ [Nicolaos Skimas]: https://github.com/dev-nicolaos
474
+ [Doug Torrance]: https://github.com/d-torrance
475
+ [Annmarie Switzer]: https://github.com/annmarie-switzer
476
+
477
+
478
+ ## Version 11.4.0
479
+
480
+ New Language:
481
+
482
+ - Added 3rd party Pine Script grammar to SUPPORTED_LANGUAGES [Jeylani B][]
483
+ - Added 3rd party cURL grammar to SUPPORTED_LANGUAGES [highlightjs-curl](https://github.com/highlightjs/highlightjs-curl)
484
+
485
+ Themes:
486
+
487
+ - `Default` is now much closer WCAG AA (contrast) (#3402) [Josh Goebel]
488
+ - `Dark` now meets WCAG AA (contrast) (#3402) [Josh Goebel]
489
+ - Added `intellij-light` theme [Pegasis]
490
+ - Added `felipec` theme [Felipe Contreras]
491
+
492
+ 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.
493
+
494
+ Grammars:
495
+
496
+ - enh(twig) update keywords list for symfony (#3453) [Matthieu Lempereur][]
497
+ - enh(arcade) updated to ArcGIS Arcade version 1.16 [John Foster][]
498
+ - enh(php) Left and right-side of double colon [Wojciech Kania][]
499
+ - enh(php) add PHP constants [Wojciech Kania][]
500
+ - enh(php) add PHP 8.1 keywords [Wojciech Kania][]
501
+ - fix(cpp) fix `vector<<` template false positive (#3437) [Josh Goebel][]
502
+ - enh(php) support First-class Callable Syntax (#3427) [Wojciech Kania][]
503
+ - enh(php) support class constructor call (#3427) [Wojciech Kania][]
504
+ - enh(php) support function invoke (#3427) [Wojciech Kania][]
505
+ - enh(php) Switch highlighter to partially case-insensitive (#3427) [Wojciech Kania][]
506
+ - enh(php) improve `namespace` and `use` highlighting (#3427) [Josh Goebel][]
507
+ - enh(php) `$this` is a `variable.language` now (#3427) [Josh Goebel][]
508
+ - enh(php) add `__COMPILER_HALT_OFFSET__` (#3427) [Josh Goebel][]
509
+ - enh(js/ts) fix => async function title highlights (#3405) [Josh Goebel][]
510
+ - enh(twig) update keywords list (#3415) [Matthieu Lempereur][]
511
+ - fix(python) def, class keywords detected mid-identifier (#3381) [Josh Goebel][]
512
+ - fix(python) Fix recognition of numeric literals followed by keywords without whitespace (#2985) [Richard Gibson][]
513
+ - enh(swift) add SE-0290 unavailability condition (#3382) [Bradley Mackey][]
514
+ - fix(fsharp) Highlight operators, match type names only in type annotations, support quoted identifiers, and other smaller fixes. [Melvyn Laïly][]
515
+ - enh(java) add `sealed` and `non-sealed` keywords (#3386) [Bradley Mackey][]
516
+ - enh(js/ts) improve `CLASS_REFERENCE` (#3411) [Josh Goebel][]
517
+ - enh(nsis) Update defines pattern to allow `!` (#3417) [idleberg][]
518
+ - enh(nsis) Update language strings pattern to allow `!` (#3420) [idleberg][]
519
+ - fix(stan) Updated for Stan 2.28 and other misc. improvements (#3410)
520
+ - enh(nsis) Update variables pattern (#3416) [idleberg][]
521
+ - fix(clojure) Several issues with Clojure highlighting (#3397) [Björn Ebbinghaus][]
522
+ - fix(clojure) `comment` macro catches more than it should (#3395)
523
+ - fix(clojure) `$` in symbol breaks highlighting
524
+ - fix(clojure) Add complete regex for number detection
525
+ - enh(clojure) Add character mode for character literals
526
+ - fix(clojure) Inconsistent namespaced map highlighting
527
+ - enh(clojure) Add `regex` mode to regex literal
528
+ - fix(clojure) Remove inconsistent/broken highlighting for metadata
529
+ - enh(clojure) Add `punctuation` mode for commas.
530
+ - fix(julia) Enable the `jldoctest` alias (#3432) [Fons van der Plas][]
531
+
532
+ Developer Tools:
533
+
534
+ - (chore) add gzip size compression report (#3400) [Bradley Mackey][]
535
+
536
+ Themes:
537
+
538
+ - Modified background color in css for Gradient Light and Gradient Dark themes [Samia Ali][]
539
+
540
+ [John Foster]: https://github.com/jf990
541
+ [Pegasis]: https://github.com/PegasisForever
542
+ [Wojciech Kania]: https://github.com/wkania
543
+ [Jeylani B]: https://github.com/jeyllani
544
+ [Richard Gibson]: https://github.com/gibson042
545
+ [Bradley Mackey]: https://github.com/bradleymackey
546
+ [Melvyn Laïly]: https://github.com/mlaily
547
+ [Björn Ebbinghaus]: https://github.com/MrEbbinghaus
548
+ [Josh Goebel]: https://github.com/joshgoebel
549
+ [Samia Ali]: https://github.com/samiaab1990
550
+ [Matthieu Lempereur]: https://github.com/MrYamous
551
+ [idleberg]: https://github.com/idleberg
552
+ [Fons van der Plas]: https://github.com/fonsp
553
+ [Felipe Contreras]: https://github.com/felipec
554
+
555
+ ## Version 11.3.1
556
+
557
+ Build:
558
+
559
+ - (fix) Grammar CDN modules not generated correctly. (#3363) [Josh Goebel][]
560
+
561
+ [Josh Goebel]: https://github.com/joshgoebel
562
+
563
+
564
+ ## Version 11.3.0
565
+
566
+ Build:
567
+
568
+ - add `HighlightJS` named export (#3295) [Josh Goebel][]
569
+ - add `.default` named export to CJS builds (#3333) [Josh Goebel][]
570
+
571
+ Parser:
572
+
573
+ - add first rough performance testing script (#3280) [Austin Schick][]
574
+ - add `throwUnescapedHTML` to warn against potential HTML injection [Josh Goebel][]
575
+ - expose `regex` helper functions via `hljs` injection [Josh Goebel][]
576
+ - concat
577
+ - lookahead
578
+ - either
579
+ - optional
580
+ - anyNumberOfTimes
581
+
582
+ Grammars:
583
+
584
+ - fix(ts) some complex types would classify as JSX (#3278) [Josh Goebel][]
585
+ - fix(js/ts) less false positives for `class X extends Y` (#3278) [Josh Goebel][]
586
+ - enh(css): add properties from several W3C (Candidate) Recommendations (#3308)
587
+ - fix(js/ts) `Float32Array` highlighted incorrectly (#3353) [Josh Goebel][]
588
+ - fix(css) single-colon psuedo-elements no longer break highlighting (#3240) [Josh Goebel][]
589
+ - fix(scss) single-colon psuedo-elements no longer break highlighting (#3240) [Josh Goebel][]
590
+ - enh(fsharp) rewrite most of the grammar, with many improvements [Melvyn Laïly][]
591
+ - enh(go) better type highlighting, add `error` type [Josh Goebel][]
592
+ - fix(js/ts) regex inside `SUBST` is no longer highlighted [Josh Goebel][]
593
+ - fix(python) added support for unicode identifiers (#3280) [Austin Schick][]
594
+ - enh(css/less/stylus/scss) improve consistency of function dispatch (#3301) [Josh Goebel][]
595
+ - enh(css/less/stylus/scss) detect block comments more fully (#3301) [Josh Goebel][]
596
+ - fix(cpp) switch is a keyword (#3312) [Josh Goebel][]
597
+ - fix(cpp) fix `xor_eq` keyword highlighting. [Denis Kovalchuk][]
598
+ - enh(c,cpp) highlight type modifiers as type (#3316) [Josh Goebel][]
599
+ - enh(css/less/stylus/scss) add support for CSS Grid properties [monochromer][]
600
+ - enh(java) add support for Java Text Block (#3322) [Teletha][]
601
+ - enh(scala) add missing `do` and `then` keyword (#3323) [Nicolas Stucki][]
602
+ - enh(scala) add missing `enum`, `export` and `given` keywords (#3328) [Nicolas Stucki][]
603
+ - enh(scala) remove symbol syntax and fix quoted code syntax (#3324) [Nicolas Stucki][]
604
+ - enh(scala) add Scala 3 `extension` soft keyword (#3326) [Nicolas Stucki][]
605
+ - enh(scala) add Scala 3 `end` soft keyword (#3327) [Nicolas Stucki][]
606
+ - enh(scala) add `inline` soft keyword (#3329) [Nicolas Stucki][]
607
+ - enh(scala) add `using` soft keyword (#3330) [Nicolas Stucki][]
608
+ - enh(fsharp) added `f#` alias (#3337) [Bahnschrift][]
609
+ - enh(bash) added gnu core utilities (#3342) [katzeprior][]
610
+ - enh(nsis) add new NSIS commands (#3351) [idleberg][]
611
+ - fix(nsis) set `case_insensitive` to `true` (#3351) [idleberg][]
612
+ - fix(css/less/stylus/scss) highlight single-colon psuedo-elements properly (#3240) [zsoltlengyelit][]
613
+ - fix(css) add css hex color alpha support (#3360) [ierehon1905][]
614
+
615
+ [Austin Schick]: https://github.com/austin-schick
616
+ [Josh Goebel]: https://github.com/joshgoebel
617
+ [Denis Kovalchuk]: https://github.com/deniskovalchuk
618
+ [monochromer]: https://github.com/monochromer
619
+ [Teletha]: https://github.com/teletha
620
+ [Nicolas Stucki]: https://github.com/nicolasstucki
621
+ [Bahnschrift]: https://github.com/Bahnschrift
622
+ [Melvyn Laïly]: https://github.com/mlaily
623
+ [katzeprior]: https://github.com/katzeprior
624
+ [zsoltlengyelit]: github.com/zsoltlengyelit
625
+ [Syb Wartna]:https://github.com/waarissyb
626
+ [idleberg]: https://github.com/idleberg
627
+ [ierehon1905]: https://github.com/ierehon1905
628
+
629
+
630
+ ## Version 11.2.0
631
+
632
+ Build:
633
+
634
+ - fix: run Node build CSS files thru CSS processor also (#3284) [Josh Goebel][]
635
+
636
+ Parser:
637
+
638
+ - fix(csharp) Fix assignments flagging as functions [Josh Goebel][]
639
+ - fix(types) Fix some type definition issues (#3274) [Josh Goebel][]
640
+ - fix(verilog) Fix directive handling (#3283) [Josh Goebel][]
641
+ - fix(verilog) Fix binary number false positives on `_` (#3283) [Josh Goebel][]
642
+ - enh(verilog) `__FILE__` and `__LINE__` constants (#3283) [Josh Goebel][]
643
+ - enh(verilog) tighten keyword regex (#3283) [Josh Goebel][]
644
+
645
+
646
+ Grammars:
647
+
648
+ - enh(swift) Add `isolated`/`nonisolated` keywords (#3296) [Bradley Mackey][]
649
+
650
+ New Languages:
651
+
652
+ - Added 3rd party X# grammar to SUPPORTED_LANGUAGES [Patrick Kruselburger][]
653
+ - Added 3rd party MKB grammar to SUPPORTED_LANGUAGES (#3297) [Dereavy][]
654
+
655
+ [Josh Goebel]: https://github.com/joshgoebel
656
+ [Patrick Kruselburger]: https://github.com/PatrickKru
657
+ [Bradley Mackey]: https://github.com/bradleymackey
658
+ [Dereavy]: https://github.com/dereavy
659
+
660
+
661
+ ## Version 11.1.0
662
+
663
+ Grammars:
664
+
665
+ - fix(csharp) add missing `catch` keyword (#3251) [Konrad Rudolph][]
666
+ - add additional keywords to csp.js (#3244) [Elijah Conners][]
667
+ - feat(css) handle css variables syntax (#3239) [Thanos Karagiannis][]
668
+ - fix(markdown) Images with empty alt or links with empty text (#3233) [Josh Goebel][]
669
+ - enh(powershell) added `pwsh` alias (#3236) [tebeco][]
670
+ - fix(r) fix bug highlighting examples in doc comments [Konrad Rudolph][]
671
+ - fix(python) identifiers starting with underscore not highlighted (#3221) [Antoine Lambert][]
672
+ - enh(clojure) added `edn` alias (#3213) [Stel Abrego][]
673
+ - enh(elixir) much improved regular expression sigil support (#3207) [Josh Goebel][]
674
+ - enh(elixir) updated list of keywords (#3212) [Angelika Tyborska][]
675
+ - fix(elixir) fixed number detection when numbers start with a zero (#3212) [Angelika Tyborska][]
676
+ - fix(ps1) Flag highlighted incorrectly (#3167) [Pankaj Patil][]
677
+ - fix(latex) Allow wider syntax for magic comments (#3243) [Benedikt Wilde][]
678
+ - fix(js/ts) Constants may include numbers [Josh Goebel][]
679
+
680
+ [Stel Abrego]: https://github.com/stelcodes
681
+ [Josh Goebel]: https://github.com/joshgoebel
682
+ [Antoine Lambert]: https://github.com/anlambert
683
+ [Elijah Conners]: https://github.com/elijahepepe
684
+ [Angelika Tyborska]: https://github.com/angelikatyborska
685
+ [Konrad Rudolph]: https://github.com/klmr
686
+ [tebeco]: https://github.com/tebeco
687
+ [Pankaj Patil]: https://github.com/patil2099
688
+ [Benedikt Wilde]: https://github.com/schtandard
689
+ [Thanos Karagiannis]: https://github.com/thanoskrg
690
+
691
+
692
+ ## Version 11.0.0
693
+
694
+ **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.
695
+
696
+ ### Potentially breaking changes
697
+
698
+ Unless otherwise attributed items below are thanks to [Josh Goebel][] (ref: [#2558](https://github.com/highlightjs/highlight.js/issues/2558)).
699
+
700
+ *The below list should only be considered to be a high-level summary.*
701
+
702
+ Deprecations / Removals / API Changes:
703
+
704
+ - `initHighlighting()` and `initHighlightingOnLoad()` deprecated. **Use `highlightAll()`.**
705
+ - `highlightBlock(el)` deprecated. **Use `highlightElement(el)`**
706
+ - `before:highlightBlock` & `after:highlightBlock` callbacks deprecated. **Use equivalent `highlightElement` callbacks.**
707
+ - `highlight(languageName, code, ignoreIllegals, continuation)` signature deprecated. **Use `highlight(code, {language, ignoreIllegals})`.**
708
+ - Deprecated `highlight()` signature no longer supports `continuation` argument.
709
+ - `tabReplace` option removed. Consider a plugin.
710
+ - `useBR` option removed. Consider a plugin or CSS.
711
+ - `requireLanguage()` removed. **Use `getLanguage()`.**
712
+ - `endSameAsBegin` mode key removed. **Use `hljs.END_SAME_AS_BEGIN`.**
713
+ - `lexemes` mode key removed. **Use `keywords.$pattern`.**
714
+ - The return values/keys of some APIs have changed slightly.
715
+
716
+ Security:
717
+
718
+ - HTML auto-passthru has been removed. Consider a plugin.
719
+ - Unescaped HTML is now stripped (for security). A warning is logged to the console. (#3057) [Josh Goebel][]
720
+
721
+ Themes:
722
+
723
+ - The default padding of all themes increases (0.5em => 1em).
724
+ - `schoolbook` has been updated to remove the lined background.
725
+ - `github` updated to better match modern GitHub (#1616) [Jan Pilzer][]
726
+ - `github-gist` has been removed in favor of `github` [Jan Pilzer][]
727
+ - Base16 named themes have been updated to their "canonical" versions
728
+ - `nnfx` updated for v11 xml styles and improved css support
729
+
730
+ Language Grammars:
731
+
732
+ - Default CDN build drops support for several languages.
733
+ - Some language grammar files have been removed.
734
+ - Some redundant language aliases have been removed.
735
+
736
+ ### Other changes
737
+
738
+ Parser:
739
+
740
+ - enh(vala) improve language detection for Vala (#3195) [Konrad Rudolph][]
741
+ - enh(r) add support for operators, fix number highlighting bug (#3194, #3195) [Konrad Rudolph][]
742
+ - enh(parser) add `beginScope` and `endScope` to allow separate scoping begin and end (#3159) [Josh Goebel][]
743
+ - enh(parsed) `endScope` now supports multi-class matchers as well (#3159) [Josh Goebel][]
744
+ - enh(parser) `highlightElement` now always tags blocks with a consistent `language-[name]` class [Josh Goebel][]
745
+ - subLanguage `span` tags now also always have the `language-` prefix added
746
+ - enh(parser) support multi-class matchers (#3081) [Josh Goebel][]
747
+ - enh(parser) Detect comments based on english like text, rather than keyword list [Josh Goebel][]
748
+ - adds `title.class.inherited` sub-scope support [Josh Goebel][]
749
+ - adds `title.class` sub-scope support (#3078) [Josh Goebel][]
750
+ - adds `title.function` sub-scope support (#3078) [Josh Goebel][]
751
+ - adds `beforeMatch` compiler extension (#3078) [Josh Goebel][]
752
+ - adds `cssSelector ` configuration option (#3180) [James Edington][]
753
+
754
+ Grammars:
755
+
756
+ - enh(all) `.meta-keyword` => `.meta .keyword` (nested scopes) (#3167) [Josh Goebel][]
757
+ - enh(all) `.meta-string` => `.meta .string` (nested scopes) (#3167) [Josh Goebel][]
758
+ - enh(swift) add `actor` keyword (#3171) [Bradley Mackey][]
759
+ - enh(crystal) highlight variables (#3154) [Josh Goebel][]
760
+ - fix(ruby) Heredoc without interpolation (#3154) [Josh Goebel][]
761
+ - enh(swift) add `@resultBuilder` attribute (#3151) [Bradley Mackey][]
762
+ - enh(processing) added `pde` alias (#3142) [Dylan McBean][]
763
+ - enh(thrift) Use proper scope for types [Josh Goebel][]
764
+ - enh(java) Simplified class-like matcher (#3078) [Josh Goebel][]
765
+ - enh(cpp) Simplified class-like matcher (#3078) [Josh Goebel][]
766
+ - enh(rust) Simplified class-like matcher (#3078) [Josh Goebel][]
767
+ - enh(actionscript) Simplified class-like matcher (#3078) [Josh Goebel][]
768
+ - enh(arcade) `function.title` => `title.function` (#3078) [Josh Goebel][]
769
+ - enh(autoit) `function.title` => `title.function` (#3078) [Josh Goebel][]
770
+ - enh(c) `function.title` => `title.function` (#3078) [Josh Goebel][]
771
+ - enh(rust) support function invoke and `impl` (#3078) [Josh Goebel][]
772
+ - chore(properties) disable auto-detection #3102 [Josh Goebel][]
773
+ - fix(properties) fix incorrect handling of non-alphanumeric keys #3102 [Egor Rogov][]
774
+ - enh(java) support functions with nested template types (#2641) [Josh Goebel][]
775
+ - enh(java) highlight types and literals separate from keywords (#3074) [Josh Goebel][]
776
+ - enh(shell) add alias ShellSession [Ryan Mulligan][]
777
+ - enh(shell) consider one space after prompt as part of prompt [Ryan Mulligan][]
778
+ - fix(nginx) fix bug with $ and @ variables [Josh Goebel][]
779
+ - enh(nginx) improving highlighting of some sections [Josh Goebel][]
780
+ - fix(vim) variable names may not be zero length [Josh Goebel][]
781
+ - enh(sqf) Updated keywords to Arma 3 v2.02 (#3084) [R3voA3][]
782
+ - enh(sqf) Refactored function regex to match CBA component func naming scheme (#3181) [JonBons][]
783
+ - enh(nim) highlight types properly (not as built-ins) [Josh Goebel][]
784
+ - (chore) throttle deprecation messages (#3092) [Mihkel Eidast][]
785
+ - enh(c) Update keyword list for C11/C18 (#3010) [Josh Goebel][]
786
+ - enh(parser) highlight object properties (#3072) [Josh Goebel][]
787
+ - enh(javascript/typescript) highlight object properties (#3072) [Josh Goebel][]
788
+ - enh(haskell) add support for BinaryLiterals (#3150) [Martijn Bastiaan][]
789
+ - enh(haskell) add support for NumericUnderscores (#3150) [Martijn Bastiaan][]
790
+ - enh(haskell) add support for HexFloatLiterals (#3150) [Martijn Bastiaan][]
791
+ - fix(c,cpp) allow declaring multiple functions and (for C++) parenthetical initializers (#3155) [Erik Demaine][]
792
+ - enh(rust) highlight raw byte string literals correctly (#3173) [Nico Abram][]
793
+ - fix(cpp) fix detection of common functions that are function templates (#3178) [Kris van Rens][]
794
+ - enh(cpp) add various keywords and commonly used types for hinting (#3178) [Kris van Rens][]
795
+ - enh(cpp) cleanup reserved keywords and type lists (#3178) [Kris van Rens][]
796
+
797
+ New Languages:
798
+
799
+ - Added 3rd party Glimmer grammar to SUPPORTED_LANGUAGES(#3123) [NullVoxPopuli][]
800
+ - Added Wren support [Josh Goebel][]
801
+ - Added NestedText support [Josh Goebel][]
802
+ - Added WebAssembly language grammar [Josh Goebel][]
803
+ - Added 3rd party Splunk search processing language grammar to SUPPORTED_LANGUAGES (#3090) [Wei Su][]
804
+ - Added 3rd party ZenScript grammar to SUPPORTED_LANGUAGES(#3106) [Jared Luboff][]
805
+ - Added 3rd party Papyrus grammar to SUPPORTED_LANGUAGES(#3125) [Mike Watling][]
806
+
807
+ Theme Improvements:
808
+
809
+ - Added all official Base16 themes (over 150 new themes) [Josh Goebel][]
810
+ - chore(themes) remove `builtin-name` CSS class (#3119) [Josh Goebel][]
811
+ - chore(theme) Update GitHub theme css to match GitHub's current styling (#1616) [Jan Pilzer][]
812
+ - chore(theme) Update Srcery theme css to match its Emacs implementation [Chen Bin][]
813
+
814
+ New Themes:
815
+
816
+ - DeviBeans Dark by [Farzad Sadeghi][]
817
+ - GitHub Dark and GitHub Dark Dimmed [Jan Pilzer][]
818
+
819
+ Dev Improvements:
820
+
821
+ - (chore) greatly improve match scope visualization in dev tool (#3126) [NullVoxPopuli][]
822
+ - (fix) CSS used for devtool needed an adjustment to fix too wide of content (#3133) [NullVoxPopuli][]
823
+
824
+ [Farzad Sadeghi]: https://github.com/terminaldweller
825
+ [Martijn Bastiaan]: https://github.com/martijnbastiaan
826
+ [Bradley Mackey]: https://github.com/bradleymackey
827
+ [Dylan McBean]: https://github.com/DylanMcBean
828
+ [Josh Goebel]: https://github.com/joshgoebel
829
+ [Ryan Mulligan]: https://github.com/ryantm
830
+ [R3voA3]: https://github.com/R3voA3
831
+ [JonBons]: https://github.com/JonBons
832
+ [Wei Su]: https://github.com/swsoyee
833
+ [Jared Luboff]: https://github.com/jaredlll08
834
+ [NullVoxPopuli]: https://github.com/NullVoxPopuli
835
+ [Mike Watling]: https://github.com/Pickysaurus
836
+ [Nico Abram]: https://github.com/nico-abram
837
+ [James Edington]: http://www.ishygddt.xyz/
838
+ [Jan Pilzer]: https://github.com/Hirse
839
+ [Kris van Rens]: https://github.com/krisvanrens
840
+
841
+
842
+ ## Version 10.7.1
843
+
844
+ - fix(parser) Resolves issues with TypeScript types [Josh Goebel][]
845
+
846
+ ### Version 10.7.0
847
+
848
+ Parser:
849
+
850
+ - keywords now have a maximum # of times they provide relevance (#3129) [Josh Goebel][]
851
+ - enh(api) add `unregisterLanguage` method (#3009) [Antoine du Hamel][]
852
+ - enh: Make alias registration case insensitive (#3026) [David Ostrovsky][]
853
+ - fix(parser) `highlightAll()` now works if the library is lazy loaded [Josh Goebel][]
854
+
855
+ New Languages:
856
+
857
+ - Added 3rd party RiScript grammar to SUPPORTED_LANGUAGES (#2988) [John C][]
858
+ - Added 3rd party HLSL grammar to SUPPORTED_LANGUAGES (#3002) [Stef Levesque][]
859
+ - Added 3rd party Q# grammar to SUPPORTED_LANGUAGES(#3006) [Vyron Vasileiadis][]
860
+
861
+ Language grammar improvements:
862
+
863
+ - enh(js/ts) class references (CamelCase) are highlighted (#3169) [Josh Goebel][]
864
+ - enh(js/ts) constants (ALL_CAPS) are highlighted (#3169) [Josh Goebel][]
865
+ - enh(js/ts) highlights function invokation (#3169) [Josh Goebel][]
866
+ - enh(js/ts) functions assigned to variables are now highlighted `title.function` (#3169) [Josh Goebel][]
867
+ - enh(parser) smarter detection of comments (#2827) [Josh Goebel][]
868
+ - fix(python) allow keywords immediately following numbers (#2985) [Josh Goebel][]
869
+ - fix(xml) char immediately following tag close mis-highlighted (#3044) [Josh Goebel][]
870
+ - fix(ruby) fix `defined?()` mis-highlighted as `def` (#3025) [Josh Goebel][]
871
+ - fix(c) comments after `#include <str>` blocks (#3041) [Josh Goebel][]
872
+ - fix(cpp) comments after `#include <str>` blocks (#3041) [Josh Goebel][]
873
+ - enh(cpp) Highlight all function dispatches (#3005) [Josh Goebel][]
874
+ - enh(python) support type hints and better type support (#2972) [Josh Goebel][]
875
+ - enh(gml) Add additional GML 2.3 keywords (#2984) [xDGameStudios][]
876
+ - fix(cpp) constructor support for initializers (#3001) [Josh Goebel][]
877
+ - enh(php) Add `trait` to class-like naming patterns (#2997) [Ayesh][]
878
+ - enh(php) Add `Stringable`, `UnhandledMatchError`, and `WeakMap` classes/interfaces (#2997) [Ayesh][]
879
+ - enh(php) Add `mixed` to list of keywords (#2997) [Ayesh][]
880
+ - enh(php) Add support binary, octal, hex and scientific numerals with underscore separator support (#2997) [Ayesh][]
881
+ - enh(php) Add support for Enums (#3004) [Ayesh][]
882
+ - enh(ecmascript) Add built-in types [Vaibhav Chanana][]
883
+ - enh(kotlin) Add `kts` as an alias for Kotlin (#3021) [Vaibhav Chanana][]
884
+ - enh(css) Add `font-smoothing` to attributes list for CSS (#3027) [AndyKIron][]
885
+ - fix(python) Highlight `print` and `exec` as a builtin (#1468) [Samuel Colvin][]
886
+ - fix(csharp) Fix unit being highlighted instead of uint (#3046) [Spacehamster][]
887
+ - enh(swift) add async/await keywords (#3048) [Bradley Mackey][]
888
+
889
+ Deprecations:
890
+
891
+ - `highlight(languageName, code, ignoreIllegals, continuation)` deprecated as of 10.7
892
+ - Please use the newer API which takes `code` and then accepts options as an object
893
+ - IE: `highlight(code, {language, ignoreIllegals})`
894
+ - `continuation` is for internal use only and no longer supported
895
+ - `highlightBlock(el)` deprecated as of 10.7.
896
+ - Please use `highlightElement(el)` instead.
897
+ - Plugin callbacks renamed `before/after:highlightBlock` => `before/after:highlightElement`
898
+ - Plugin callback now takes `el` vs `block` attribute
899
+ - The old API and callbacks will be supported until v12.
900
+
901
+
902
+ [Stef Levesque]: https://github.com/stef-levesque
903
+ [Josh Goebel]: https://github.com/joshgoebel
904
+ [John Cheung]: https://github.com/Real-John-Cheung
905
+ [xDGameStudios]: https://github.com/xDGameStudios
906
+ [Ayesh]: https://github.com/Ayesh
907
+ [Vyron Vasileiadis]: https://github.com/fedonman
908
+ [Antoine du Hamel]: https://github.com/aduh95
909
+ [Vaibhav Chanana]: https://github.com/il3ven
910
+ [David Ostrovsky]: https://github.com/davido
911
+ [AndyKIron]: https://github.com/AndyKIron
912
+ [Samuel Colvin]: https://github.com/samuelcolvin
913
+
914
+ ## Version 10.6.0
915
+
916
+ New Languages:
917
+
918
+ - Added 3rd party Laravel Blade grammar to SUPPORTED_LANGUAGES (#2944) [Michael Newton][]
919
+
920
+ Language grammar improvements:
921
+
922
+ - enh(scala) fix triple quoted strings (#2987) [Josh Goebel][]
923
+ - enh(perl) Much improved regex detection (#2960) [Josh Goebel][]
924
+ - enh(swift) Improved highlighting for operator and precedencegroup declarations. (#2938) [Steven Van Impe][]
925
+ - fix(xml) Support single-character namespaces. (#2957) [Jan Pilzer][]
926
+ - enh(ruby) Support for character literals (#2950) [Vaibhav Chanana][]
927
+ - enh(powershell) Add three VALID_VERBS and update the reference link (#2981) [davidhcefx][]
928
+ - fix(php) Highlighting of anonymous functions without {} block [Vaibhav Chanana][]
929
+
930
+ Grammar Deprecations:
931
+
932
+ - Deprecate `c-like`, though you should not be using it directly anyways.
933
+ - will be removed in v11.
934
+ - `c` and `cpp` are now wholly unique grammars that will diverge over time
935
+
936
+ Parser:
937
+
938
+ - new simpler `highlightAll()` API (#2962) [Josh Goebel][]
939
+ - this should be a drop-in replacement for both `initHighlighting()` and `initHighlightingOnLoad()`
940
+ - note: it does not prevent itself from being called multiple times (as the previous API did)
941
+ - `beginKeyword` no longer bestows double relevance (#2953) [Josh Goebel][]
942
+ - allow `keywords` to be an array of strings [Josh Goebel][]
943
+ - add `modes.MATCH_NOTHING_RE` that will never match
944
+ - 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][]
945
+
946
+ Deprecations:
947
+
948
+ - `initHighlighting()` and `initHighlightingOnLoad()` deprecated.
949
+ - Please use the new `highlightAll()` API instead.
950
+ - Deprecated as of 10.6.
951
+ - These will both be aliases to `highlightAll` in v11.
952
+
953
+ [Michael Newton]: https://github.com/miken32
954
+ [Steven Van Impe]: https://github.com/svanimpe/
955
+ [Josh Goebel]: https://github.com/joshgoebel
956
+ [Vaibhav Chanana]: https://github.com/il3ven
957
+ [davidhcefx]: https://github.com/davidhcefx
958
+ [Jan Pilzer]: https://github.com/Hirse
959
+
960
+
961
+ ## Version 10.5.0
962
+
963
+ Build:
964
+
965
+ - Add Subresource Integrity digest lists to `cdn-assets` [Josh Goebel][]
966
+ - R and VB.net grammars now ship in our default build (`:common`) [Josh Goebel][]
967
+
968
+ Parser:
969
+
970
+ - add `match` as sugar for simple `begin` only matches (#2834) [Josh Goebel][]
971
+ - allow `illegal` to also be an array of regex (#2834) [Josh Goebel][]
972
+ - add `compilerExtensions` allows grammers to influence mode compilation (#2834) [Josh Goebel][]
973
+ - some internal pieces are now simple compiler extensions
974
+
975
+ New Languages:
976
+
977
+ - Added 3rd party Red & Rebol grammar to SUPPORTED_LANGUAGES (#2872) [Oldes Huhuman][]
978
+
979
+ Language grammar improvements:
980
+
981
+ - enh: CSS grammars now share common foundation, keywords, etc. (#2937) [Josh Goebel][]
982
+ - enh(css): many consistency improvements
983
+ - enh(scss): many consistency improvements
984
+ - enh(stylus): many consistency improvements
985
+ - enh(less): many consistency improvements
986
+ - enh(cpp): Support C++ pack expansion in function arguments [Martin Dørum][]
987
+ - enh(makefile): Add `make` as an alias (#2883) [tripleee][]
988
+ - enh(swift) Improved grammar for strings (#2819) [Steven Van Impe][]
989
+ - enh(swift) Grammar improvements (#2908) [Steven Van Impe][]
990
+ - New grammar for keywords and built-ins
991
+ - Added support for operator highlighting
992
+ - New grammar for attributes
993
+ - Added support for quoted identifiers, implicit parameters, and property wrapper projections
994
+ - Support for more complex expressions in string interpolation
995
+ - enh(swift) Improved highlighting for types and generic arguments (#2920) [Steven Van Impe][]
996
+ - enh(swift) Improved highlighting for functions, initializers, and subscripts (#2930) [Steven Van Impe][]
997
+ - fix(http) avoid recursive sublanguage and tighten rules (#2893) [Josh Goebel][]
998
+ - fix(asciidoc): Handle section titles level 5 (#2868) [Vaibhav Chanana][]
999
+ - fix(asciidoc): Support unconstrained emphasis syntax (#2869) [Guillaume Grossetie][]
1000
+ - enh(scheme) Allow `[]` for argument lists (#2913) [Josh Goebel][]
1001
+ - enh(vb) Large rework of VB.net grammar (#2808) [Jan Pilzer][]
1002
+ - Adds support for Date data types, see (#2775)
1003
+ - Adds support for `REM` comments and fixes `'''` doctags (#2875) (#2851)
1004
+ - Custom number mode to support VB.net specific number flags
1005
+ - Hex (&H), Oct (&O), and binary (&B) prefixes
1006
+ - Separating digits with underscores: 90_946
1007
+ - Type suffixes: 123UI (unsigned integer)
1008
+ - Improves directives detection and adds support for `Enable`, `Disable`, and `Then` keywords
1009
+ - Adds more markup tests
1010
+ - fix(javascript) Empty block-comments break highlighting (#2896) [Jan Pilzer][]
1011
+ - enh(dart) Fix empty block-comments from breaking highlighting (#2898) [Jan Pilzer][]
1012
+ - enh(dart) Fix empty doc-comment eating next line [Jan Pilzer][]
1013
+ - enh(asciidoc) Adds support for unconstrained bold syntax (#2869) [Guillaume Grossetie][]
1014
+ - enh(c-like) Incorrect highlighting for interger suffix (#2919) [Vaibhav Chanana][]
1015
+ - enh(properties) Correctly handle trailing backslash (#2922) [Vaibhav Chanana][]
1016
+
1017
+ Recent Deprecations:
1018
+
1019
+ - HTML "merging" is deprecated. (#2873) [Josh Goebel][]
1020
+ - HTML inside `<pre>` blocks will no longer be magically merged back into the
1021
+ highlighted code's HTML result - it will instead be silently removed.
1022
+ - Consider [using a plugin][htmlPlugin] if you truly need this functionality
1023
+ - Deprecated as of 10.5.0 - will be removed in v11.
1024
+ - `tabReplace` option deprecated. (#2873) [Josh Goebel][]
1025
+ - **Consider:** Use the CSS `tab-size` property, or simply pre-process the
1026
+ text yourself before rendering the initial HTML
1027
+ - otherwise, [use a plugin][tabPlugin]
1028
+ - Deprecated as of 10.5.0 - will be removed in v11.
1029
+ - `useBR` option deprecated. (#2559) [Josh Goebel][]
1030
+ - **Recommended:** You really should just use the HTML `<pre>` tag
1031
+ - or perhaps try CSS `white-space: pre;`
1032
+ - otherwise, [use a plugin][brPlugin]
1033
+ - Deprecated as of 10.3.0 - will be removed in v11.
1034
+ - `requireLanguage` API is deprecated, will be removed in v11.0.
1035
+ - **Consider:** Use `getLanguage` (with custom error handling) or built-time dependencies.
1036
+ - See [Library API](https://highlightjs.readthedocs.io/en/latest/api.html#requirelanguage-name) for more information.
1037
+ - Deprecated as of 10.4.0 - will be removed in v11.
1038
+
1039
+ [htmlPlugin]: https://github.com/highlightjs/highlight.js/issues/2889
1040
+ [tabPlugin]: https://github.com/highlightjs/highlight.js/issues/2874
1041
+ [brPlugin]: https://github.com/highlightjs/highlight.js/issues/2559
1042
+
1043
+ [Martin Dørum]: https://github.com/mortie
1044
+ [Jan Pilzer]: https://github.com/Hirse
1045
+ [Oldes Huhuman]: https://github.com/Oldes
1046
+ [Josh Goebel]: https://github.com/joshgoebel
1047
+ [tripleee]: https://github.com/tripleee
1048
+ [Steven Van Impe]: https://github.com/svanimpe/
1049
+ [Vaibhav Chanana]: https://github.com/il3ven
1050
+ [Guillaume Grossetie]: https://github.com/mogztter
1051
+
1052
+
1053
+ ## Version 10.4.1 (tentative)
1054
+
1055
+ Security
1056
+
1057
+ - (fix) Exponential backtracking fixes for: [Josh Goebel][]
1058
+ - cpp
1059
+ - handlebars
1060
+ - gams
1061
+ - perl
1062
+ - jboss-cli
1063
+ - r
1064
+ - erlang-repl
1065
+ - powershell
1066
+ - routeros
1067
+ - (fix) Polynomial backtracking fixes for: [Josh Goebel][]
1068
+ - asciidoc
1069
+ - reasonml
1070
+ - latex
1071
+ - kotlin
1072
+ - gcode
1073
+ - d
1074
+ - aspectj
1075
+ - moonscript
1076
+ - coffeescript/livescript
1077
+ - csharp
1078
+ - scilab
1079
+ - crystal
1080
+ - elixir
1081
+ - basic
1082
+ - ebnf
1083
+ - ruby
1084
+ - fortran/irpf90
1085
+ - livecodeserver
1086
+ - yaml
1087
+ - x86asm
1088
+ - dsconfig
1089
+ - markdown
1090
+ - ruleslanguage
1091
+ - xquery
1092
+ - sqf
1093
+
1094
+ Very grateful to [Michael Schmidt][] for all the help.
1095
+
1096
+ [Michael Schmidt]: https://github.com/RunDevelopment
1097
+ [Josh Goebel]: https://github.com/joshgoebel
1098
+
1099
+
1100
+ ## Version 10.4.0
1101
+
1102
+ A largish release with many improvements and fixes from quite a few different contributors. Enjoy!
1103
+
1104
+ Deprecations:
1105
+
1106
+ - (chore) `requireLanguage` is deprecated.
1107
+ - Prefer `getLanguage` (with custom error handling) or built-time dependencies.
1108
+ - See [Library API](https://highlightjs.readthedocs.io/en/latest/api.html#requirelanguage-name) for more information.
1109
+
1110
+ Parser:
1111
+
1112
+ - enh(parser) use negative look-ahead for `beginKeywords` support (#2813) [Josh Goebel][]
1113
+ - enh(grammars) allow `classNameAliases` for more complex grammars [Josh Goebel][]
1114
+ - fix(vue): Language name now appears in CSS class (#2807) [Michael Rush][]
1115
+ - (chore) Clean up all regexs to be UTF-8 compliant/ready (#2759) [Josh Goebel][]
1116
+ - enh(grammars) allow `classNameAliases` for more complex grammars [Josh Goebel][]
1117
+
1118
+ New Languages:
1119
+
1120
+ - Added 3rd party Chapel grammar to SUPPORTED_LANGUAGES (#2806) [Brad Chamberlain][]
1121
+ - Added BBCode grammar to SUPPORTED_LANGUAGES (#2867) [Paul Reid][]
1122
+ - enh(javascript) Added `node-repl` for Node.js REPL sessions (#2792) [Marat Nagayev][]
1123
+
1124
+ Language Improvements:
1125
+
1126
+ - enh(shell) Recognize prompts which contain tilde `~` (#2859) [Guillaume Grossetie][]
1127
+ - enh(shell) Add support for multiline commands with line continuation `\` (#2861) [Guillaume Grossetie][]
1128
+ - enh(autodetect) Over 30+ improvements to auto-detect (#2745) [Josh Goebel][]
1129
+ - 4-5% improvement in auto-detect against large sample set
1130
+ - properties, angelscript, lsl, javascript, n1ql, ocaml, ruby
1131
+ - protobuf, hy, scheme, crystal, yaml, r, vbscript, groovy
1132
+ - python, java, php, lisp, matlab, clojure, csharp, css
1133
+ - fix(r) fixed keywords not properly spaced (#2852) [Josh Goebel][]
1134
+ - fix(javascript) fix potential catastrophic backtracking (#2852) [Josh Goebel][]
1135
+ - fix(livescript) fix potential catastrophic backtracking (#2852) [Josh Goebel][]
1136
+ - bug(xml) XML grammar was far too imprecise/fuzzy [Josh Goebel][]
1137
+ - enh(xml) Improve precision to prevent false auto-detect positives [Josh Goebel][]
1138
+ - fix(js/ts) Prevent for/while/if/switch from falsly matching as functions (#2803) [Josh Goebel][]
1139
+ - enh(julia) Update keyword lists for Julia 1.x (#2781) [Fredrik Ekre][]
1140
+ - enh(python) Match numeric literals per the language reference [Richard Gibson][]
1141
+ - enh(ruby) Match numeric literals per language documentation [Richard Gibson][]
1142
+ - enh(javascript) Match numeric literals per ECMA-262 spec [Richard Gibson][]
1143
+ - enh(java) Match numeric literals per Java Language Specification [Richard Gibson][]
1144
+ - enh(swift) Match numeric literals per language reference [Richard Gibson][]
1145
+ - enh(php) highlight variables (#2785) [Taufik Nurrohman][]
1146
+ - fix(python) Handle comments on decorators (#2804) [Jonathan Sharpe][]
1147
+ - enh(diff) improve highlighting of diff for git patches [Florian Bezdeka][]
1148
+ - fix(llvm) lots of small improvements and fixes (#2830) [Josh Goebel][]
1149
+ - enh(mathematica) Rework entire implementation [Patrick Scheibe][]
1150
+ - Correct matching of the many variations of Mathematica's numbers
1151
+ - Matching of named-characters aka special symbols like `\[Gamma]`
1152
+ - Updated list of version 12.1 built-in symbols
1153
+ - Matching of patterns, slots, message-names and braces
1154
+ - fix(swift) Handle keywords that start with `#` [Marcus Ortiz][]
1155
+ - enh(swift) Match `some` keyword [Marcus Ortiz][]
1156
+ - enh(swift) Match `@main` attribute [Marcus Ortiz][]
1157
+
1158
+ Dev Improvements:
1159
+
1160
+ - chore(dev) add theme picker to the tools/developer tool (#2770) [Josh Goebel][]
1161
+ - fix(dev) the Vue.js plugin no longer throws an exception when hljs is not in the global namespace [Kyle Brown][]
1162
+
1163
+ New themes:
1164
+
1165
+ - *StackOverflow Dark* by [Jan Pilzer][]
1166
+ - *StackOverflow Light* by [Jan Pilzer][]
1167
+
1168
+ [Guillaume Grossetie]: https://github.com/mogztter
1169
+ [Brad Chamberlain]: https://github.com/bradcray
1170
+ [Marat Nagayev]: https://github.com/nagayev
1171
+ [Fredrik Ekre]: https://github.com/fredrikekre
1172
+ [Richard Gibson]: https://github.com/gibson042
1173
+ [Josh Goebel]: https://github.com/joshgoebel
1174
+ [Taufik Nurrohman]: https://github.com/taufik-nurrohman
1175
+ [Jan Pilzer]: https://github.com/Hirse
1176
+ [Jonathan Sharpe]: https://github.com/textbook
1177
+ [Michael Rush]: https://github.com/rushimusmaximus
1178
+ [Patrick Scheibe]: https://github.com/halirutan
1179
+ [Kyle Brown]: https://github.com/kylebrown9
1180
+ [Marcus Ortiz]: https://github.com/mportiz08
1181
+ [Paul Reid]: https://github.com/RedGuy12
1182
+
1183
+
1184
+ ## Version 10.3.1
1185
+
1186
+ Prior version let some look-behind regex sneak in, which does not work
1187
+ yet on Safari. This release removes those incompatible regexes.
1188
+
1189
+ Fix:
1190
+
1191
+ - fix(Safari) Remove currently unsupported look-behind regex ([fix][187e7cfc]) [Josh Goebel][]
1192
+
1193
+ [Josh Goebel]: https://github.com/joshgoebel
1194
+ [187e7cfc]: https://github.com/highlightjs/highlight.js/commit/187e7cfcb06277ce13b5f35fb6c37ab7a7b46de9
1195
+
1196
+
1197
+ ## Version 10.3.0
1198
+
1199
+ Language Improvements:
1200
+
1201
+ - enh(latex) Complete ground up rewrite of LaTex grammar [schtandard][]
1202
+ - fix(cpp) implement backslash line continuation in comments (#2757) [Konrad Rudolph][]
1203
+ - fix(cpp) improve parsing issues with templates (#2752) [Josh Goebel][]
1204
+ - enh(cpp) add support for `enum (struct|class)` and `union` (#2752) [Josh Goebel][]
1205
+ - fix(js/ts) Fix nesting of `{}` inside template literals SUBST expression (#2748) [Josh Goebel][]
1206
+ - enh(js/ts) Highlight class methods as functions (#2727) [Josh Goebel][]
1207
+ - fix(js/ts) `constructor` is now highlighted as a function title (not keyword) (#2727) [Josh Goebel][]
1208
+ - fix(c-like) preprocessor directives not detected after else (#2738) [Josh Goebel][]
1209
+ - enh(javascript) allow `#` for private class fields (#2701) [Chris Krycho][]
1210
+ - fix(js) prevent runaway regex (#2746) [Josh Goebel][]
1211
+ - fix(bash) enh(bash) allow nested params (#2731) [Josh Goebel][]
1212
+ - fix(python) Fix highlighting of keywords and strings (#2713, #2715) [Konrad Rudolph][]
1213
+ - fix(fsharp) Prevent `(*)` from being detected as a multi-line comment [Josh Goebel][]
1214
+ - enh(bash) add support for heredocs (#2684) [Josh Goebel][]
1215
+ - enh(r) major overhaul of the R language grammar (and fix a few bugs) (#2680) [Konrad Rudolph][]
1216
+ - enh(csharp) Add all C# 9 keywords, and other missing keywords (#2679) [David Pine][]
1217
+ - enh(objectivec) Add `objective-c++` and `obj-c++` aliases for Objective-C [Josh Goebel][]
1218
+ - enh(java) Add support for `record` (#2685) [Josh Goebel][]
1219
+ - fix(csharp) prevent modifier keywords wrongly flagged as `title` (#2683) [Josh Goebel][]
1220
+ - enh(axapta) Update keyword list for Axapta (X++) (#2686) [Ryan Jonasson][]
1221
+ - fix(fortran) FORTRAN 77-style comments (#2677) [Philipp Engel][]
1222
+ - fix(javascript) Comments inside params should be highlighted (#2702) [Josh Goebel][]
1223
+ - fix(scala) Comments inside class header should be highlighted (#1559) [Josh Goebel][]
1224
+ - fix(c-like) Correctly highlight modifiers (`final`) in class declaration (#2696) [Josh Goebel][]
1225
+ - enh(angelscript) Improve heredocs, numbers, metadata blocks (#2724) [Melissa Geels][]
1226
+ - enh(javascript) Implement Numeric Separators (#2617) [Antoine du Hamel][]
1227
+ - enh(typescript) TypeScript also gains support for numeric separators (#2617) [Antoine du Hamel][]
1228
+ - enh(php) Add support for PHP 8 `match` keyword and add `php8` as an alias (#2733) [Ayesh Karunaratne][]
1229
+ - fix(handlebars) Support if else keyboards (#2659) [Tom Wallace][]
1230
+
1231
+ Deprecations:
1232
+
1233
+ - `useBR` option deprecated and will be removed in v11.0. (#2559) [Josh Goebel][]
1234
+
1235
+ [Chris Krycho]: https://github.com/chriskrycho
1236
+ [David Pine]: https://github.com/IEvangelist
1237
+
1238
+
1239
+ [Ryan Jonasson]: https://github.com/ryanjonasson
1240
+ [Philipp Engel]: https://github.com/interkosmos
1241
+ [Konrad Rudolph]: https://github.com/klmr
1242
+ [Melissa Geels]: https://github.com/codecat
1243
+ [Antoine du Hamel]: https://github.com/aduh95
1244
+ [Ayesh Karunaratne]: https://github.com/Ayesh
1245
+ [Tom Wallace]: https://github.com/thomasmichaelwallace
1246
+ [schtandard]: https://github.com/schtandard
1247
+
1248
+
1249
+ ## Version 10.2.1
1250
+
1251
+ Parser Engine:
1252
+
1253
+ - fix(parser) complete fix for resuming matches from same index (#2678) [Josh Goebel][]
1254
+
1255
+ [Josh Goebel]: https://github.com/yyyc514
1256
+
1257
+
1258
+ ## Version 10.2.0
1259
+
1260
+ Parser Engine:
1261
+
1262
+ - (fix) When ignoring a potential match highlighting can terminate early (#2649) [Josh Goebel][]
1263
+
1264
+
1265
+ New themes:
1266
+
1267
+ - *Gradient Light* by [Samia Ali]()
1268
+
1269
+ Deprecations:
1270
+
1271
+ - `fixMarkup` is now deprecated and will be removed in v11.0. (#2534) [Josh Goebel][]
1272
+
1273
+ Big picture:
1274
+
1275
+ - Add simple Vue plugin for basic use cases (#2544) [Josh Goebel][]
1276
+
1277
+ Language Improvements:
1278
+
1279
+ - fix(bash) Fewer false positives for keywords in arguments (#2669) [sirosen][]
1280
+ - fix(js) Prevent long series of /////// from causing freezes (#2656) [Josh Goebel][]
1281
+ - enh(csharp) Add `init` and `record` keywords for C# 9.0 (#2660) [Youssef Victor][]
1282
+ - enh(matlab) Add new R2019b `arguments` keyword and fix `enumeration` keyword (#2619) [Andrew Janke][]
1283
+ - fix(kotlin) Remove very old keywords and update example code (#2623) [kageru][]
1284
+ - fix(night) Prevent object prototypes method values from being returned in `getLanguage` (#2636) [night][]
1285
+ - enh(java) Add support for `enum`, which will identify as a `class` now (#2643) [ezksd][]
1286
+ - enh(nsis) Add support for NSIS 3.06 commands (#2653) [idleberg][]
1287
+ - enh(php) detect newer more flexible HEREdoc syntax (#2658) [eytienne][]
1288
+
1289
+ [Youssef Victor]: https://github.com/Youssef1313
1290
+ [Josh Goebel]: https://github.com/joshgoebel
1291
+ [Andrew Janke]: https://github.com/apjanke
1292
+ [Samia Ali]: https://github.com/samiaab1990
1293
+ [kageru]: https://github.com/kageru
1294
+ [night]: https://github.com/night
1295
+ [ezksd]: https://github.com/ezksd
1296
+ [idleberg]: https://github.com/idleberg
1297
+ [eytienne]: https://github.com/eytienne
1298
+ [sirosen]: https://github.com/sirosen
1299
+
1300
+ ## Version 10.1.1
1301
+
1302
+ Fixes:
1303
+
1304
+ - Resolve issue on Node 6 due to dangling comma (#2608) [Edwin Hoogerbeets][]
1305
+ - Resolve `index.d.ts is not a module` error (#2603) [Josh Goebel][]
1306
+
1307
+ [Josh Goebel]: https://github.com/joshgoebel
1308
+ [Edwin Hoogerbeets]: https://github.com/ehoogerbeets
1309
+
1310
+
1311
+ ## Version 10.1.0
1312
+
1313
+ New themes:
1314
+
1315
+ - *NNFX* and *NNFX-dark* by [Jim Mason][]
1316
+ - *lioshi* by [lioshi][]
1317
+
1318
+ Parser Engine:
1319
+
1320
+ - (parser) Now escapes quotes in text content when escaping HTML (#2564) [Josh Goebel][]
1321
+ - (parser) Adds `keywords.$pattern` key to grammar definitions (#2519) [Josh Goebel][]
1322
+ - (parser) Adds SHEBANG utility mode [Josh Goebel][]
1323
+ - (parser) Adds `registerAliases` method (#2540) [Taufik Nurrohman][]
1324
+ - (enh) Added `on:begin` callback for modes (#2261) [Josh Goebel][]
1325
+ - (enh) Added `on:end` callback for modes (#2261) [Josh Goebel][]
1326
+ - (enh) Added ability to programatically ignore begin and end matches (#2261) [Josh Goebel][]
1327
+ - (enh) Added `END_SAME_AS_BEGIN` mode to replace `endSameAsBegin` parser attribute (#2261) [Josh Goebel][]
1328
+ - (fix) `fixMarkup` would rarely destroy markup when `useBR` was enabled (#2532) [Josh Goebel][]
1329
+
1330
+ Deprecations:
1331
+
1332
+ - `htmlbars` grammar is now deprecated. Use `handlebars` instead. (#2344) [Nils Knappmeier][]
1333
+ - when using `highlightBlock` `result.re` deprecated. Use `result.relevance` instead. (#2552) [Josh Goebel][]
1334
+ - ditto for `result.second_best.re` => `result.second_best.relevance` (#2552)
1335
+ - `lexemes` is now deprecated in favor of `keywords.$pattern` key (#2519) [Josh Goebel][]
1336
+ - `endSameAsBegin` is now deprecated. (#2261) [Josh Goebel][]
1337
+
1338
+ Language Improvements:
1339
+
1340
+ - fix(groovy) strings are not allowed inside ternary clauses (#2217) [Josh Goebel][]
1341
+ - fix(typescript) add `readonly` keyword (#2562) [Martin (Lhoerion)][]
1342
+ - fix(javascript) fix regex inside parens after a non-regex (#2530) [Josh Goebel][]
1343
+ - enh(typescript) use identifier to match potential keywords, preventing false positivites (#2519) [Josh Goebel][]
1344
+ - enh(javascript) use identifier to match potential keywords, preventing false positivites (#2519) [Josh Goebel][]
1345
+ - [enh] Add `OPTIMIZE:` and `HACK:` to the labels highlighted inside comments [Josh Goebel][]
1346
+ - enh(typescript/javascript/coffeescript/livescript) derive ECMAscript keywords from a common foudation (#2518) [Josh Goebel][]
1347
+ - enh(typescript) add setInterval, setTimeout, clearInterval, clearTimeout (#2514) [Josh Goebel][]
1348
+ - enh(javascript) add setInterval, setTimeout, clearInterval, clearTimeout (#2514) [Vania Kucher][]
1349
+ - enh(cpp) add `pair`, `make_pair`, `priority_queue` as built-ins (#2538) [Hankun Lin][]
1350
+ - enh(cpp) recognize `priority_queue` `pair` as cpp containers (#2541) [Hankun Lin][]
1351
+ - fix(javascript) prevent `set` keyword conflicting with setTimeout, etc. (#2514) [Vania Kucher][]
1352
+ - fix(cpp) Fix highlighting of unterminated raw strings (#2261) [David Benjamin][]
1353
+ - fix(javascript) `=>` function with nested `()` in params now works (#2502) [Josh Goebel][]
1354
+ - fix(typescript) `=>` function with nested `()` in params now works (#2502) [Josh Goebel][]
1355
+ - fix(yaml) Fix tags to include non-word characters (#2486) [Peter Plantinga][]
1356
+ - fix(swift) `@objcMembers` was being partially highlighted (#2543) [Nick Randall][]
1357
+ - enh(dart) Add `late` and `required` keywords, the `Never` built-in type, and nullable built-in types (#2550) [Sam Rawlins][]
1358
+ - enh(erlang) Add underscore separators to numeric literals (#2554) [Sergey Prokhorov][]
1359
+ - enh(handlebars) Support for sub-expressions, path-expressions, hashes, block-parameters and literals (#2344) [Nils Knappmeier][]
1360
+ - enh(protobuf) Support multiline comments (#2597) [Pavel Evstigneev][]
1361
+ - fix(toml) Improve key parsing (#2595) [Antoine du Hamel][]
1362
+
1363
+ [Josh Goebel]: https://github.com/joshgoebel
1364
+ [Peter Plantinga]: https://github.com/pplantinga
1365
+ [David Benjamin]: https://github.com/davidben
1366
+ [Vania Kucher]: https://github.com/qWici
1367
+ [Hankun Lin]: https://github.com/Linhk1606
1368
+ [Nick Randall]: https://github.com/nicked
1369
+ [Sam Rawlins]: https://github.com/srawlins
1370
+ [Sergey Prokhorov]: https://github.com/seriyps
1371
+ [Nils Knappmeier]: https://github.com/nknapp
1372
+ [Martin (Lhoerion)]: https://github.com/Lhoerion
1373
+ [Jim Mason]: https://github.com/RocketMan
1374
+ [lioshi]: https://github.com/lioshi
1375
+ [Pavel Evstigneev]: https://github.com/Paxa
1376
+ [Antoine du Hamel]: https://github.com/aduh95
1377
+
1378
+
1379
+ ## Version 10.0.2
1380
+
1381
+ Brower build:
1382
+
1383
+ - [Issue](https://github.com/highlightjs/highlight.js/issues/2505) (bug) Fix: Version 10 fails to load as CommonJS module. (#2511) [Josh Goebel][]
1384
+ - [Issue](https://github.com/highlightjs/highlight.js/issues/2505) (removal) AMD module loading support has been removed. (#2511) [Josh Goebel][]
1385
+
1386
+ Parser Engine Changes:
1387
+
1388
+ - [Issue](https://github.com/highlightjs/highlight.js/issues/2522) fix(parser) Fix freez issue with illegal 0 width matches (#2524) [Josh Goebel][]
1389
+
1390
+
1391
+ [Josh Goebel]: https://github.com/joshgoebel
1392
+
1393
+
1394
+ ## Version 10.0.1
1395
+
1396
+ Parser Engine Changes:
1397
+
1398
+ - (bug) Fix sublanguage with no relevance score (#2506) [Josh Goebel][]
1399
+
1400
+ [Josh Goebel]: https://github.com/joshgoebel
1401
+
1402
+
1403
+ ## Version 10.0.0
1404
+
1405
+ New languages:
1406
+
1407
+ - add(php-template) Explicit language to detect PHP templates (vs xml) [Josh Goebel][]
1408
+ - enh(python) Added `python-repl` for Python REPL sessions
1409
+ - add(never) Added 3rd party Never language support
1410
+
1411
+ New themes:
1412
+
1413
+ - *Srcery* by [Chen Bin][]
1414
+
1415
+ Parser Engine Changes:
1416
+
1417
+ - (bug) Fix `beginKeywords` to ignore . matches (#2434) [Josh Goebel][]
1418
+ - (enh) add `before:highlight` plugin API callback (#2395) [Josh Goebel][]
1419
+ - (enh) add `after:highlight` plugin API callback (#2395) [Josh Goebel][]
1420
+ - (enh) split out parse tree generation and HTML rendering concerns (#2404) [Josh Goebel][]
1421
+ - (enh) every language can have a `name` attribute now (#2400) [Josh Goebel][]
1422
+ - (enh) improve regular expression detect (less false-positives) (#2380) [Josh Goebel][]
1423
+ - (enh) make `noHighlightRe` and `languagePrefixRe` configurable (#2374) [Josh Goebel][]
1424
+
1425
+ Language Improvements:
1426
+
1427
+ - enh(python) Exclude parens from functions params (#2490) [Álvaro Mondéjar][]
1428
+ - enh(swift) Add `compactMap` to keywords as built_in (#2478) [Omid Golparvar][]
1429
+ - enh(nim) adds `func` keyword (#2468) [Adnan Yaqoob][]
1430
+ - enh(xml) deprecate ActionScript inside script tags (#2444) [Josh Goebel][]
1431
+ - fix(javascript) prevent get/set variables conflicting with keywords (#2440) [Josh Goebel][]
1432
+ - bug(clojure) Now highlights `defn-` properly (#2438) [Josh Goebel][]
1433
+ - enh(bash) default value is another variable (#2439) [Josh Goebel][]
1434
+ - enh(bash) string nested within string (#2439) [Josh Goebel][]
1435
+ - enh(bash) Add arithmetic expression support (#2439) [Josh Goebel][]
1436
+ - enh(clojure) Add support for global definitions name (#2347) [Alexandre Grison][]
1437
+ - enh(fortran) Support Fortran 77 style comments (#2416) [Josh Goebel][]
1438
+ - (csharp) add support for `@identifier` style identifiers (#2414) [Josh Goebel][]
1439
+ - fix(elixir) Support function names with a slash (#2406) [Josh Goebel][]
1440
+ - fix(javascript) comma is allowed in a "value container" (#2403) [Josh Goebel][]
1441
+ - enh(apache) add `deny` and `allow` keywords [Josh Goebel][]
1442
+ - enh(apache) highlight numeric attributes values [Josh Goebel][]
1443
+ - enh(apache) highlight IP addresses, ports, and strings in sections [Josh Goebel][]
1444
+ - enh(php) added more keywords and include `<?=` syntax to meta [Taufik Nurrohman][]
1445
+ - fix(protobuf) Fix `rpc` when followed by a block (#) [Josh Goebel][]
1446
+ - enh(zephir) almost complete rework of the zephir grammar (#2387) [Josh Goebel][]
1447
+ - (markdown) much improved code block support (#2382) [Josh Goebel][]
1448
+ - (markdown) improve bold/italic nesting (#2382) [Josh Goebel][]
1449
+ - enh(csharp) Support `where` keyword as class constraint (#2378) [Josh Goebel][]
1450
+ - enh(csharp) Allow reference path in class inheritance lists (#2378) [Josh Goebel][]
1451
+ - enh(csharp) Add generic modifiers (in, out) (#2378) [Josh Goebel][]
1452
+ - (fortran) enh(fortran) support intrinsic data types (#2379) [Josh Goebel][]
1453
+ - enh(java) annotations can include numbers (#2377) [Josh Goebel][]
1454
+ - enh(java) annotations can take params (#2377) [Josh Goebel][]
1455
+ - enh(java) allow annotations inside function call params (#2377) [Josh Goebel][]
1456
+ - enh(parser) pre/post-highlightBlock callbacks via plugin (#2285) [Josh Goebel][]
1457
+ - (fortran) Add Fortran 2018 keywords and coarray intrinsics (#2361) [Sam Miller][]
1458
+ - (delphi) highlight hexadecimal, octal, and binary numbers (#2370) [Robert Riebisch]()
1459
+ - enh(plaintext) added `text` and `txt` as alias (#2360) [Taufik Nurrohman][]
1460
+ - enh(powershell) added PowerShell v5.1/v7 default aliases as "built_in"s (#2423) [Sean Williams][]
1461
+ - enh(yaml) added support for timestamps (#2475) [Peter Plantinga][]
1462
+
1463
+ Developer Tools:
1464
+
1465
+ - added Dockerfile for optionally developing with a container
1466
+
1467
+ [Omid Golparvar]: https://github.com/omidgolparvar
1468
+ [Alexandre Grison]: https://github.com/agrison
1469
+ [Josh Goebel]: https://github.com/joshgoebel
1470
+ [Chen Bin]: https://github.com/redguardtoo
1471
+ [Sam Miller]: https://github.com/smillerc
1472
+ [Robert Riebisch]: https://github.com/bttrx
1473
+ [Taufik Nurrohman]: https://github.com/taufik-nurrohman
1474
+ [Josh Goebel]: https://github.com/joshgoebel
1475
+ [Sean Williams]: https://github.com/hmmwhatsthisdo
1476
+ [Adnan Yaqoob]: https://github.com/adnanyaqoobvirk
1477
+ [Álvaro Mondéjar]: https://github.com/mondeja
1478
+
1479
+
1480
+ ## Version 9.18.1
1481
+
1482
+ Grammar Improvements:
1483
+
1484
+ - bug(coffeescript) fix freezing bug due to badly behaved regex (#2376) [Josh Goebel][]
1485
+
1486
+ [Josh Goebel]: https://github.com/joshgoebel
1487
+
1488
+
1489
+ ## Version 9.18.0
1490
+
1491
+ New languages:
1492
+
1493
+ - none.
1494
+
1495
+ New themes:
1496
+
1497
+ - none.
1498
+
1499
+ Core Changes:
1500
+
1501
+ - none.
1502
+
1503
+ Language Improvements:
1504
+
1505
+ - (javascript) fix JSX self-closing tag issues (#2322) [Josh Goebel][]
1506
+ - (fortran) added `block` and `endblock` keywords (#2343) [Philipp Engel][]
1507
+ - (javascript) support jsx fragments (#2333) [Josh Goebel][]
1508
+ - (ini) support TOML arrays, clean up grammar (#2335) [Josh Goebel][]
1509
+ - (vbnet) add nameof operator to the keywords (#2329) [Youssef Victor][]
1510
+ - (stan) updated with improved coverage of language keywords and patterns. (#1829) [Jeffrey Arnold][]
1511
+ - enh(cpp) Detect namespaced function types (`A::typeName func(...)`) (#2332) [Josh Goebel][]
1512
+ - enh(cpp) Detect namespaced functions also (`A::functionName`) (#2332) [Josh Goebel][]
1513
+ - enh(cpp) Properly detect decltype(auto) (#2332) [Josh Goebel][]
1514
+ - enh(cpp) recognize primitive types (`int8_t`, etc.) as function types (#2332) [Josh Goebel][]
1515
+
1516
+ Developer Tools:
1517
+
1518
+ - feat(developer): add button to show parsed structure (#2345) [Nils Knappmeier][]
1519
+
1520
+ [Jeffrey Arnold]: https://github.com/jrnold
1521
+ [Josh Goebel]: https://github.com/joshgoebel
1522
+ [Philipp Engel]: https://github.com/interkosmos
1523
+ [Youssef Victor]: https://github.com/Youssef1313
1524
+ [Nils Knappmeier]: https://github.com/nknapp
1525
+
1526
+
1527
+ ## Version 9.17.1
1528
+
1529
+ Fixes:
1530
+
1531
+ - fix(parser): resolve IE 11 issue with Object.freeze() (#2319) [Josh Goebel][]
1532
+
1533
+ [Josh Goebel]: https://github.com/joshgoebel
1534
+
1535
+
1536
+ ## Version 9.17.0
1537
+
1538
+ New languages:
1539
+
1540
+ - none.
1541
+
1542
+ New themes:
1543
+
1544
+ - *Gradient Dark* by [Samia Ali][]
1545
+
1546
+ Core Improvements:
1547
+
1548
+ - chore(parser): switch from `createElementNS` to `createElement` (#2314) [Josh Goebel][]
1549
+ - enh(parser): add better error when a language requirement is missing (#2311) [Josh Goebel][]
1550
+ - fix(parser/docs): disallow `self` mode at the top-level of a language (#2294) [Josh Goebel][]
1551
+ - enh(parser) add safe & debug modes. Better error handling for crash conditions. (#2286) [Josh Goebel][]
1552
+ - fix(parser): Fix merger HTML attribute quoting (#2235) [Josh Goebel][]
1553
+ - fix(parser): Look-ahead regex now work for end matches also (#2237) [Josh Goebel][]
1554
+ - fix(parser): Better errors when a language is missing (#2236) [Josh Goebel][]
1555
+ - fix(parser): freeze built-in modes to prevent grammars altering them (#2271) [Josh Goebel][]
1556
+ - fix(themes): fix inconsistencies between some themes padding/spacing (#2300) [Josh Goebel][]
1557
+ - ehh(build) Add CI check for building a "use strict" safe rollup package from NPM builds (#2247) [Josh Goebel][]
1558
+ - fix(pkg): Prefix global addEventListener with window to be able to minify with closure compiler (#2305) [Kirill Saksin]()
1559
+
1560
+ Language Improvements:
1561
+
1562
+ - fix(sql): backslash is not used to escape in strings in standard SQL (#1748) [Mike Schall][]
1563
+ - enh(ebnf) add backticks as additional string variant (#2290) [Chris Marchesi][]
1564
+ - chore(javascript): add esm related extensions to aliases (#2298) [Rongjian Zhang][]
1565
+ - fix(kotlin): fix termination of """ string literals (#2295) [Josh Goebel][]
1566
+ - fix(mercury): don't change global STRING modes (#2271) [Josh Goebel][]
1567
+ - enh(xml) expand and improve document type highlighting (#2287) [w3suli][]
1568
+ - enh(ebnf) add underscore as allowed meta identifier character, and dot as terminator (#2281) [Chris Marchesi][]
1569
+ - fix(makefile) fix double relevance for assigns, improves auto-detection (#2278) [Josh Goebel][]
1570
+ - enh(xml) support for highlighting entities (#2260) [w3suli][]
1571
+ - enh(gml) fix naming of keyword class (consistency fix) (#2254) [Liam Nobel][]
1572
+ - enh(javascript): Add support for jsdoc comments (#2245) [Milutin Kristofic][]
1573
+ - fix(python) fix `if` getting confused as an f-string (#2200) [Josh Goebel][] and [Carl Baxter][]
1574
+ - enh(powershell) major overhaul, huge improvements (#2224)
1575
+ - enh(css) Improve @rule highlighting, including properties (#2241) [Josh Goebel][]
1576
+ - enh(css) Improve highlighting of numbers inside expr/func `calc(2px+3px)` (#2241)
1577
+ - enh(scss) Pull some of the CSS improvements back into SCSS (#2241)
1578
+ - fix(go): Fix escaped character literals (#2266) [David Benjamin][]
1579
+ - fix(objectivec): Fix various preprocessor highlighting issues (#2265) [David Benjamin][]
1580
+ - fix(objectivec): Handle multibyte character literals (#2268) [David Benjamin][]
1581
+ - enh(cpp): Add additional keywords (#2289) [Adrian Ostrowski][]
1582
+
1583
+ [Josh Goebel]: https://github.com/joshgoebel
1584
+ [Liam Nobel]: https://github.com/liamnobel
1585
+ [Carl Baxter]: https://github.com/cdbax
1586
+ [Milutin Kristofic]: https://github.com/milutin
1587
+ [w3suli]: https://github.com/w3suli
1588
+ [David Benjamin]: https://github.com/davidben
1589
+ [Chris Marchesi]: https://github.com/vancluever
1590
+ [Adrian Ostrowski]: https://github.com/aostrowski
1591
+ [Rongjian Zhang]: https://github.com/pd4d10
1592
+ [Mike Schall]: https://github.com/schallm
1593
+ [Kirill Saksin]: https://github.com/saksmt
1594
+ [Samia Ali]:https://github.com/samiaab1990
1595
+ [Erik Demaine]:https://github.com/edemaine
1596
+
1597
+
1598
+ ## Version 9.16.2
1599
+
1600
+ New languages:
1601
+ none.
1602
+
1603
+ New styles:
1604
+ none.
1605
+
1606
+ Improvements:
1607
+ - fix(arduino) Resolves issue with arduino.js not being "use strict" safe (#2247)
1608
+
1609
+
1610
+ ## Version 9.16.1
1611
+
1612
+ New languages:
1613
+ none.
1614
+
1615
+ New styles:
1616
+ - *Night Owl* by [Carl Baxter][]
1617
+
1618
+ Improvements:
1619
+ - Add CLI tool to quickly check for relevance conflicts [Mark Ellis][] (#1554)
1620
+ - enhance(twig) update list of filter and tags (#2090)
1621
+ - fix(crystal): correctly highlight `!~` method definition (#2222)
1622
+ - fix dropping characters if we choke up on a 0-width match (#2219)
1623
+ - (accesslog) improve accesslog relevancy scoring (#2172)
1624
+ - fix(shell): fix parsing of prompts with forward slash (#2218)
1625
+ - improve parser to properly support look-ahead regex in begin matchers (#2135)
1626
+ - blacklist super-common keywords from having relevance (#2179)
1627
+ - fix(swift): support for `@dynamicMemberLookup` and `@propertyWrapper` (#2202)
1628
+ - fix: `endWithParent` inside `starts` now always works (#2201)
1629
+ - fix(typescript): constructor in declaration doesn't break highlighting
1630
+ - fix(typescript): only match function keyword as a separate identifier (#2191)
1631
+ - feature(arduino) make arduino a super-set of cpp grammar
1632
+ - fix(javascript): fix object attributes immediately following line comments
1633
+ - fix(xml): remove `vbscript` as potential script tag subLanguage
1634
+ - fix(Elixir): improve regex for numbers
1635
+ - fix(YAML): improve matching for keys, blocks and numbers
1636
+ - fix(Pony): improve regex for numbers
1637
+ - fix(handlebars): add support for raw-blocks, and triple-mustaches(#2175)
1638
+ - fix(handlebars): fix parsing of block-comments containing closing mustaches (#2175)
1639
+ - fix(handlebars): add support for segment-literal notation, and escaped mustaches (#2184)
1640
+ - JSON: support for comments in JSON (#2016)
1641
+ - fix(cpp): improve string literal matching
1642
+ - fix(highlight.js): omit empty span-tags in the output (#2182)
1643
+ - fix(Go): improve function declaration matching
1644
+ - fix(python): added support for f-string literal curly braces (#2195)
1645
+ - fix(cpp): add `future` built-in (#1610)
1646
+ - fix(python): support comments within function parameters (#2214)
1647
+
1648
+ [Carl Baxter]: https://github.com/cdbax
1649
+ [Mark Ellis]: https://github.com/ellismarkf
1650
+
1651
+ ## Version 9.15.10
1652
+ New languages:
1653
+ none.
1654
+ New styles:
1655
+ none.
1656
+ Improvements:
1657
+ - support for ruby's squiggly heredoc (#2049)
1658
+ - support css custom properties (#2082)
1659
+ - fix(PureBASIC): update to 5.60 (#1508)
1660
+ - fix(Kotlin): parenthesized types in function declaration (#2107)
1661
+ - fix(Kotlin): nested comment (#2104)
1662
+ - fix(isbl): contains key typo (#2103)
1663
+ - fix(github-gist.css): match Github styles (#2100)
1664
+ - fix(elm): update to latest elm syntax (#2088)
1665
+ - fix: Support highlighting inline HTML and CSS tagged template strings in JS and TS (#2105)
1666
+ - feat(YAML): add YAML to common languages (#1952)
1667
+ - feat(xml): Add support for Windows Script File (.wsf), inline VBScript in XML `script` tags (#1690)
1668
+
1669
+ ## Version 9.15.9
1670
+
1671
+ Improvements:
1672
+ - fix(AutoHotkey): order and extended highlighting (#1579)
1673
+ - fix(Go): correctly highlight hex numbers, rather than stopping at last 'd' or 'f'. (#2060)
1674
+ - fix(Mathematica): Improvements to language (#2065)
1675
+ - fix(Node): Adds SCSS build (#2079)
1676
+ - fix(Rust): update keywords (#2052)
1677
+ - fix(Stata): Added keywords for the meta-analysis suite introduced in Stata 16 (#2081)
1678
+ - fix(Bash): escape double quotes (#2048)
1679
+
1680
+ ## Version 9.15.8
1681
+
1682
+ New languages:
1683
+ none.
1684
+ New styles:
1685
+ none.
1686
+ Improvements:
1687
+ - fix(bash): revert escaped double quotes - broke Firefox/Safari.
1688
+
1689
+ ## Version 9.15.7
1690
+ New languages:
1691
+ none.
1692
+ New styles:
1693
+ none.
1694
+ Improvements:
1695
+ - fix(powershell): Add cmdlets (#2022)
1696
+ - fix(Bash): escaped double quotes (#2041)
1697
+ - fix(c++): add aliases 'hh', 'hxx', 'cxx' (#2017)
1698
+ - fix(ini/toml): Support comments on the same line. (#2039)
1699
+ - fix(JSX): not rendering well in a function without parentheses. (#2024)
1700
+ - fix(LiveCode): language definition update (#2021)
1701
+ - fix(markdown): indented lists (#2004)
1702
+ - fix(styles/school-book): don't style all the pre, use .hljs instead (#2034)
1703
+ - fix(JSX): Modify JSX tag detection to use XML language regex in place of simplistic \w+
1704
+
1705
+ ## Version 9.15.6
1706
+ New languages:
1707
+ none.
1708
+ New styles:
1709
+ none.
1710
+ Improvements:
1711
+ - Move dependencies to be devDependencies.
1712
+ - Fixed security issues in dev dependencies.
1713
+
1714
+ ## Version 9.15.5
1715
+ New languages:
1716
+ none.
1717
+ New styles:
1718
+ none.
1719
+ Improvements:
1720
+ 🔥 Hot fix: updated build tool.
1721
+
1722
+ ## Version 9.15.4
1723
+ New languages:
1724
+ none.
1725
+ New styles:
1726
+ none.
1727
+ Improvements:
1728
+ 🔥 Hot fix: reverted hljs cli build tool, as it was causing issues with install.
1729
+
1730
+ ## Version 9.15.3
1731
+ New languages:
1732
+ none.
1733
+ New styles:
1734
+ none.
1735
+ Improvements:
1736
+ 🔥 Hot fix: reverted hljs cli build tool, as it was causing issues with install.
1737
+
1738
+ ## Version 9.15.2
1739
+ New languages:
1740
+ none.
1741
+ New styles:
1742
+ none.
1743
+ Improvements:
1744
+ 🔥 Hot fix that was preventing highlight.js from installing.
1745
+
1746
+ ## Version 9.15.1
1747
+
1748
+ New languages:
1749
+ none.
1750
+
1751
+ New styles:
1752
+ none.
1753
+
1754
+ Improvements:
1755
+
1756
+ - 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.
1757
+ - Support external language files in minified version of highlight.js (#1888)
1758
+
1759
+ ## Version 9.15
1760
+
1761
+ New languages:
1762
+ none.
1763
+
1764
+ New styles:
1765
+ none.
1766
+
1767
+ Improvements:
1768
+ - new cli tool `hljs` - allows easier [building from command line](docs/building-testing.rst#building-a-bundle-from-the-command-line).
1769
+ - cpp: Fully support C++11 raw strings. (#1897)
1770
+ - Python: Treat False None and True as literals (#1920)
1771
+
1772
+ ## Version 9.14.2
1773
+
1774
+ New languages:
1775
+ none.
1776
+ New styles:
1777
+ none.
1778
+ Improvements:
1779
+ - *Gauss* fixed to stop global namespace pollution [Scott Hyndman][].
1780
+ - fix(Tcl): removed apostrophe string delimiters (don't exist)
1781
+
1782
+ [Scott Hyndman]: https://github.com/shyndman
1783
+
1784
+ ## Version 9.14.1
1785
+
1786
+ New languages:
1787
+ none.
1788
+ New styles:
1789
+ none.
1790
+ Improvements:
1791
+ - Pony: language improvements (#1958)
1792
+
1793
+ ## Version 9.14.0
1794
+
1795
+ New languages:
1796
+ none.
1797
+ New styles:
1798
+ none.
1799
+ Improvements:
1800
+ - Pony: add missing "object" highlighting (#1932)
1801
+ - Added *XQuery* built-in functions, prolog declarations, as well as parsing of function bodies, computed and direct constructors, by [Duncan Paterson][]
1802
+ - fix(dart): Corrects highlighting with string interpolation. (#1946)
1803
+ - fix(swift): be eager on optional-using types (!/?) (#1919)
1804
+ - fix(tex): Changed cyrillic to unicode (IE11 throw SCRIPT5021) (#1601)
1805
+ - fix(JavaScript): Recognize get/set accessor keywords (#1940)
1806
+ - Fixed Dockerfile definition when using highlight continuation parameter, by [Laurent Voullemier][]
1807
+ - Added tests & new `annotation` and `verbatim` keywords to *Crystal*, by [Benoit de Chezelles][]
1808
+ - Added missing dockerfile markup tests, by [Laurent Voullemier][]
1809
+ Allow empty prompt text in clojure-repl, by [Egor Rogov][]
1810
+ - Fixed several issues with *Crystal* language definition, by [Johannes Müller][]
1811
+ - Added `C#` as an alias for *CSharp* language, by [Ahmed Atito][]
1812
+ - Added generic user-defined proc support, new compiler define, refactor to re-use rules, and add tests to *GAUSS*, by [Matthew Evans][]
1813
+ - Improve *Crystal* language to highlight regexes after some keywords, by [Tsuyusato Kitsune][]
1814
+ - Fix filterByQualifiers: fileInfo can be null
1815
+ - Fixed String interpolation in Dart, by [Scott Hyndman][].
1816
+
1817
+ [Laurent Voullemier]: https://github.com/l-vo
1818
+ [Benoit de Chezelles]: https://github.com/bew
1819
+ [Johannes Müller]: https://github.com/straight-shoota
1820
+ [Ahmed Atito]: https://github.com/atitoa93
1821
+ [Matthew Evans]: https://github.com/matthewevans
1822
+ [Tsuyusato Kitsune]: https://github.com/MakeNowJust
1823
+ [Scott Hyndman]: https://github.com/shyndman
1824
+ [Duncan Paterson]: https://github.com/duncdrum
1825
+
1826
+ ## Version 9.13.1
1827
+
1828
+ Improvements:
1829
+
1830
+ - *C#* function declarations no longer include trailing whitespace, by [JeremyTCD][]
1831
+ - Added new and missing keywords to *AngelScript*, by [Melissa Geels][]
1832
+ - *TypeScript* decorator factories highlighting fix, by [Antoine Boisier-Michaud][]
1833
+ - Added support for multiline strings to *Swift*, by [Alejandro Isaza][]
1834
+ - Fixed issue that was causing some minifiers to fail.
1835
+ - Fixed `autoDetection` to accept language aliases.
1836
+
1837
+ [JeremyTCD]: https://github.com/JeremyTCD
1838
+ [Melissa Geels]: https://github.com/codecat
1839
+ [Antoine Boisier-Michaud]: https://github.com/Aboisier
1840
+ [Alejandro Isaza]: https://github.com/alejandro-isaza
1841
+
1842
+ ## Version 9.13.0
1843
+
1844
+ New languages:
1845
+
1846
+ - *ArcGIS Arcade* by [John Foster][]
1847
+ - *AngelScript* by [Melissa Geels][]
1848
+ - *GML* by [meseta][]
1849
+ - *isbl* built-in language DIRECTUM and Conterra by [Dmitriy Tarasov][].
1850
+ - *PostgreSQL* SQL dialect and PL/pgSQL language by [Egor Rogov][].
1851
+ - *ReasonML* by [Gidi Meir Morris][]
1852
+ - *SAS* by [Mauricio Caceres Bravo][]
1853
+ - *Plaintext* by [Egor Rogov][]
1854
+ - *.properties* by [bostko][] and [Egor Rogov][]
1855
+
1856
+ New styles:
1857
+
1858
+ - *a11y-dark theme* by [Eric Bailey][]
1859
+ - *a11y-light theme* by [Eric Bailey][]
1860
+ - *An Old Hope* by [Gustavo Costa][]
1861
+ - *Atom One Dark Reasonable* by [Gidi Meir Morris][]
1862
+ - *isbl editor dark* by [Dmitriy Tarasov][]
1863
+ - *isbl editor light* by [Dmitriy Tarasov][]
1864
+ - *Lightfair* by [Tristian Kelly][]
1865
+ - [*Nord*][nord-highlightjs] by [Arctic Ice Studio][]
1866
+ - *[🦄 Shades of Purple](https://github.com/ahmadawais/Shades-of-Purple-HighlightJS)* by [Ahmad Awais][]
1867
+
1868
+ Improvements:
1869
+
1870
+ - New attribute `endSameAsBegin` for nested constructs with variable names
1871
+ by [Egor Rogov][].
1872
+ - *Python* highlighting of escaped quotes fixed by [Harmon][]
1873
+ - *PHP*: Added alias for php7, by [Vijaya Chandran Mani][]
1874
+ - *C++* string handling, by [David Benjamin][]
1875
+ - *Swift* Add `@objcMembers` to `@attributes`, by [Berk Çebi][]
1876
+ - Infrastructural changes by [Marcos Cáceres][]
1877
+ - Fixed metachars highighting for *NSIS* by [Jan T. Sott][]
1878
+ - *Yaml* highlight local tags as types by [Léo Lam][]
1879
+ - Improved highlighting for *Elixir* by [Piotr Kaminski][]
1880
+ - New attribute `disableAutodetect` for preventing autodetection by [Egor Rogov][]
1881
+ - *Matlab*: transpose operators and double quote strings, by [JohnC32][] and [Egor Rogov][]
1882
+ - Various documentation typos and improvemets by [Jimmy Wärting][], [Lutz Büch][], [bcleland][]
1883
+ - *Cmake* updated with new keywords and commands by [Deniz Bahadir][]
1884
+
1885
+ [Ahmad Awais]: https://github.com/ahmadawais
1886
+ [Arctic Ice Studio]: https://github.com/arcticicestudio
1887
+ [Dmitriy Tarasov]: https://github.com/MedvedTMN
1888
+ [Egor Rogov]: https://github.com/egor-rogov
1889
+ [Eric Bailey]: https://github.com/ericwbailey
1890
+ [Gidi Meir Morris]: https://github.com/gmmorris
1891
+ [Gustavo Costa]: https://github.com/gusbemacbe
1892
+ [Harmon]: https://github.com/Harmon758
1893
+ [Melissa Geels]: https://github.com/codecat
1894
+ [meseta]: https://github.com/meseta
1895
+ [nord-highlightjs]: https://github.com/arcticicestudio/nord-highlightjs
1896
+ [Tristian Kelly]: https://github.com/TristianK3604
1897
+ [Vijaya Chandran Mani]: https://github.com/vijaycs85
1898
+ [John Foster]: https://github.com/jf990
1899
+ [David Benjamin]: https://github.com/davidben
1900
+ [Berk Çebi]: https://github.com/berkcebi
1901
+ [Mauricio Caceres Bravo]: https://github.com/mcaceresb
1902
+ [bostko]: https://github.com/bostko
1903
+ [Deniz Bahadir]: https://github.com/Bagira80
1904
+ [bcleland]: https://github.com/bcleland
1905
+ [JohnC32]: https://github.com/JohnC32
1906
+ [Lutz Büch]: https://github.com/lutz-100worte
1907
+ [Piotr Kaminski]: https://github.com/pkaminski
1908
+ [Léo Lam]: https://github.com/leoetlino
1909
+ [Jan T. Sott]: https://github.com/idleberg
1910
+ [Jimmy Wärting]: https://github.com/jimmywarting
1911
+ [Marcos Cáceres]: https://github.com/marcoscaceres
1912
+
1913
+ ## Version 9.12.0
1914
+
1915
+ New language:
1916
+
1917
+ - *MikroTik* RouterOS Scripting language by [Ivan Dementev][].
1918
+
1919
+ New style:
1920
+
1921
+ - *VisualStudio 2015 Dark* by [Nicolas LLOBERA][]
1922
+
1923
+ Improvements:
1924
+ - *Crystal* updated with new keywords and syntaxes by [Tsuyusato Kitsune][].
1925
+ - *Julia* updated to the modern definitions by [Alex Arslan][].
1926
+ - *julia-repl* added by [Morten Piibeleht][].
1927
+ - [Stanislav Belov][] wrote a new definition for *1C*, replacing the one that
1928
+ has not been updated for more than 8 years. The new version supports syntax
1929
+ for versions 7.7 and 8.
1930
+ - [Nicolas LLOBERA][] improved C# definition fixing edge cases with function
1931
+ titles detection and added highlighting of `[Attributes]`.
1932
+ - [nnnik][] provided a few correctness fixes for *Autohotkey*.
1933
+ - [Martin Clausen][] made annotation collections in *Clojure* to look
1934
+ consistently with other kinds.
1935
+ - [Alejandro Alonso][] updated *Swift* keywords.
1936
+
1937
+ [Tsuyusato Kitsune]: https://github.com/MakeNowJust
1938
+ [Alex Arslan]: https://github.com/ararslan
1939
+ [Morten Piibeleht]: https://github.com/mortenpi
1940
+ [Stanislav Belov]: https://github.com/4ppl
1941
+ [Ivan Dementev]: https://github.com/DiVAN1x
1942
+ [Nicolas LLOBERA]: https://github.com/Nicolas01
1943
+ [nnnik]: https://github.com/nnnik
1944
+ [Martin Clausen]: https://github.com/maacl
1945
+ [Alejandro Alonso]: https://github.com/Azoy
1946
+
1947
+ ## Version 9.11.0
1948
+
1949
+ New languages:
1950
+
1951
+ - *Shell* by [Tsuyusato Kitsune][]
1952
+ - *jboss-cli* by [Raphaël Parrëe][]
1953
+
1954
+ Improvements:
1955
+
1956
+ - [Joël Porquet] has [greatly improved the definition of *makefile*][5b3e0e6].
1957
+ - *C++* class titles are now highlighted as in other languages with classes.
1958
+ - [Jordi Petit][] added rarely used `or`, `and` and `not` keywords to *C++*.
1959
+ - [Pieter Vantorre][] fixed highlighting of negative floating point values.
1960
+
1961
+
1962
+ [Tsuyusato Kitsune]: https://github.com/MakeNowJust
1963
+ [Jordi Petit]: https://github.com/jordi-petit
1964
+ [Raphaël Parrëe]: https://github.com/rparree
1965
+ [Pieter Vantorre]: https://github.com/NuclearCookie
1966
+ [5b3e0e6]: https://github.com/isagalaev/highlight.js/commit/5b3e0e68bfaae282faff6697d6a490567fa9d44b
1967
+
1968
+
1969
+ ## Version 9.10.0
1970
+
1971
+ Apologies for missing the previous release cycle. Some thing just can't be
1972
+ automated… Anyway, we're back!
1973
+
1974
+ New languages:
1975
+
1976
+ - *Hy* by [Sergey Sobko][]
1977
+ - *Leaf* by [Hale Chan][]
1978
+ - *N1QL* by [Andres Täht][] and [Rene Saarsoo][]
1979
+
1980
+ Improvements:
1981
+
1982
+ - *Rust* got updated with new keywords by [Kasper Andersen][] and then
1983
+ significantly modernized even more by [Eduard-Mihai Burtescu][] (yes, @eddyb,
1984
+ Rust core team member!)
1985
+ - *Python* updated with f-literals by [Philipp A][].
1986
+ - *YAML* updated with unquoted strings support.
1987
+ - *Gauss* updated with new keywords by [Matt Evans][].
1988
+ - *Lua* updated with new keywords by [Joe Blow][].
1989
+ - *Kotlin* updated with new keywords by [Philipp Hauer][].
1990
+ - *TypeScript* got highlighting of function params and updated keywords by
1991
+ [Ike Ku][].
1992
+ - *Scheme* now correctly handles \`-quoted lists thanks to [Guannan Wei].
1993
+ - [Sam Wu][] fixed handling of `<<` in *C++* defines.
1994
+
1995
+ [Philipp A]: https://github.com/flying-sheep
1996
+ [Philipp Hauer]: https://github.com/phauer
1997
+ [Sergey Sobko]: https://github.com/profitware
1998
+ [Hale Chan]: https://github.com/halechan
1999
+ [Matt Evans]: https://github.com/matthewevans
2000
+ [Joe Blow]: https://github.com/mossarelli
2001
+ [Kasper Andersen]: https://github.com/kasma1990
2002
+ [Eduard-Mihai Burtescu]: https://github.com/eddyb
2003
+ [Andres Täht]: https://github.com/andrestaht
2004
+ [Rene Saarsoo]: https://github.com/nene
2005
+ [Philipp Hauer]: https://github.com/phauer
2006
+ [Ike Ku]: https://github.com/dempfi
2007
+ [Guannan Wei]: https://github.com/Kraks
2008
+ [Sam Wu]: https://github.com/samsam2310
2009
+
2010
+
2011
+ ## Version 9.9.0
2012
+
2013
+ New languages
2014
+
2015
+ - *LLVM* by [Michael Rodler][]
2016
+
2017
+ Improvements:
2018
+
2019
+ - *TypeScript* updated with annotations and param lists inside constructors, by
2020
+ [Raphael Parree][].
2021
+ - *CoffeeScript* updated with new keywords and fixed to recognize JavaScript
2022
+ in \`\`\`, thanks to thanks to [Geoffrey Booth][].
2023
+ - Compiler directives in *Delphi* are now correctly highlighted as "meta".
2024
+
2025
+ [Raphael Parree]: https://github.com/rparree
2026
+ [Michael Rodler]: https://github.com/f0rki
2027
+ [Geoffrey Booth]: https://github.com/GeoffreyBooth
2028
+
2029
+
2030
+ ## Version 9.8.0 "New York"
2031
+
2032
+ This version is the second one that deserved a name. Because I'm in New York,
2033
+ and the release isn't missing the deadline only because it's still Tuesday on
2034
+ West Coast.
2035
+
2036
+ New languages:
2037
+
2038
+ - *Clean* by [Camil Staps][]
2039
+ - *Flix* by [Magnus Madsen][]
2040
+
2041
+ Improvements:
2042
+
2043
+ - [Kenton Hamaluik][] did a comprehensive update for *Haxe*.
2044
+ - New commands for *PowerShell* from [Nicolas Le Gall][].
2045
+ - [Jan T. Sott][] updated *NSIS*.
2046
+ - *Java* and *Swift* support unicode characters in identifiers thanks to
2047
+ [Alexander Lichter][].
2048
+
2049
+ [Camil Staps]: https://github.com/camilstaps
2050
+ [Magnus Madsen]: https://github.com/magnus-madsen
2051
+ [Kenton Hamaluik]: https://github.com/FuzzyWuzzie
2052
+ [Nicolas Le Gall]: https://github.com/darkitty
2053
+ [Jan T. Sott]: https://github.com/idleberg
2054
+ [Alexander Lichter]: https://github.com/manniL
2055
+
2056
+
2057
+ ## Version 9.7.0
2058
+
2059
+ A comprehensive bugfix release. This is one of the best things about
2060
+ highlight.js: even boring things keep getting better (even if slow).
2061
+
2062
+ - VHDL updated with PSL keywords and uses more consistent styling.
2063
+ - Nested C-style comments no longer break highlighting in many languages.
2064
+ - JavaScript updated with `=>` functions, highlighted object attributes and
2065
+ parsing within template string substitution blocks (`${...}`).
2066
+ - Fixed another corner case with self-closing `<tag/>` in JSX.
2067
+ - Added `HEALTHCHECK` directive in Docker.
2068
+ - Delphi updated with new Free Pascal keywords.
2069
+ - Fixed digit separator parsing in C++.
2070
+ - C# updated with new keywords and fixed to allow multiple identifiers within
2071
+ generics `<...>`.
2072
+ - Fixed another slow regex in Less.
2073
+
2074
+
2075
+ ## Version 9.6.0
2076
+
2077
+ New languages:
2078
+
2079
+ - *ABNF* and *EBNF* by [Alex McKibben][]
2080
+ - *Awk* by [Matthew Daly][]
2081
+ - *SubUnit* by [Sergey Bronnikov][]
2082
+
2083
+ New styles:
2084
+
2085
+ - *Atom One* in both Dark and Light variants by [Daniel Gamage][]
2086
+
2087
+ Plus, a few smaller updates for *Lasso*, *Elixir*, *C++* and *SQL*.
2088
+
2089
+ [Alex McKibben]: https://github.com/mckibbenta
2090
+ [Daniel Gamage]: https://github.com/danielgamage
2091
+ [Matthew Daly]: https://github.com/matthewbdaly
2092
+ [Sergey Bronnikov]: https://github.com/ligurio
2093
+
2094
+
2095
+ ## Version 9.5.0
2096
+
2097
+ New languages:
2098
+
2099
+ - *Excel* by [Victor Zhou][]
2100
+ - *Linden Scripting Language* by [Builder's Brewery][]
2101
+ - *TAP* (Test Anything Protocol) by [Sergey Bronnikov][]
2102
+ - *Pony* by [Joe Eli McIlvain][]
2103
+ - *Coq* by [Stephan Boyer][]
2104
+ - *dsconfig* and *LDIF* by [Jacob Childress][]
2105
+
2106
+ New styles:
2107
+
2108
+ - *Ocean Dark* by [Gavin Siu][]
2109
+
2110
+ Notable changes:
2111
+
2112
+ - [Minh Nguyễn][] added more built-ins to Objective C.
2113
+ - [Jeremy Hull][] fixed corner cases in C++ preprocessor directives and Diff
2114
+ comments.
2115
+ - [Victor Zhou][] added support for digit separators in C++ numbers.
2116
+
2117
+ [Gavin Siu]: https://github.com/gavsiu
2118
+ [Builder's Brewery]: https://github.com/buildersbrewery
2119
+ [Victor Zhou]: https://github.com/OiCMudkips
2120
+ [Sergey Bronnikov]: https://github.com/ligurio
2121
+ [Joe Eli McIlvain]: https://github.com/jemc
2122
+ [Stephan Boyer]: https://github.com/boyers
2123
+ [Jacob Childress]: https://github.com/braveulysses
2124
+ [Minh Nguyễn]: https://github.com/1ec5
2125
+ [Jeremy Hull]: https://github.com/sourrust
2126
+
2127
+
2128
+ ## Version 9.4.0
2129
+
2130
+ New languages:
2131
+
2132
+ - *PureBASIC* by [Tristano Ajmone][]
2133
+ - *BNF* by [Oleg Efimov][]
2134
+ - *Ada* by [Lars Schulna][]
2135
+
2136
+ New styles:
2137
+
2138
+ - *PureBASIC* by [Tristano Ajmone][]
2139
+
2140
+ Improvements to existing languages and styles:
2141
+
2142
+ - We now highlight function declarations in Go.
2143
+ - [Taisuke Fujimoto][] contributed very convoluted rules for raw and
2144
+ interpolated strings in C#.
2145
+ - [Boone Severson][] updated Verilog to comply with IEEE 1800-2012
2146
+ SystemVerilog.
2147
+ - [Victor Zhou][] improved rules for comments and strings in PowerShell files.
2148
+ - [Janis Voigtländer][] updated the definition of Elm to version 0.17 of the
2149
+ languages. Elm is now featured on the front page of <https://highlightjs.org>.
2150
+ - Special variable `$this` is highlighted as a keyword in PHP.
2151
+ - `usize` and `isize` are now highlighted in Rust.
2152
+ - Fixed labels and directives in x86 assembler.
2153
+
2154
+ [Tristano Ajmone]: https://github.com/tajmone
2155
+ [Taisuke Fujimoto]: https://github.com/temp-impl
2156
+ [Oleg Efimov]: https://github.com/Sannis
2157
+ [Boone Severson]: https://github.com/BooneJS
2158
+ [Victor Zhou]: https://github.com/OiCMudkips
2159
+ [Lars Schulna]: https://github.com/captain-hanuta
2160
+ [Janis Voigtländer]: https://github.com/jvoigtlaender
2161
+
2162
+
2163
+ ## Version 9.3.0
2164
+
2165
+ New languages:
2166
+
2167
+ - *Tagger Script* by [Philipp Wolfer][]
2168
+ - *MoonScript* by [Billy Quith][]
2169
+
2170
+ New styles:
2171
+
2172
+ - *xt256* by [Herbert Shin][]
2173
+
2174
+ Improvements to existing languages and styles:
2175
+
2176
+ - More robust handling of unquoted HTML tag attributes
2177
+ - Relevance tuning for QML which was unnecessary eager at seizing other
2178
+ languages' code
2179
+ - Improve GAMS language parsing
2180
+ - Fixed a bunch of bugs around selectors in Less
2181
+ - Kotlin's got a new definition for annotations, updated keywords and other
2182
+ minor improvements
2183
+ - Added `move` to Rust keywords
2184
+ - Markdown now recognizes \`\`\`-fenced code blocks
2185
+ - Improved detection of function declarations in C++ and C#
2186
+
2187
+ [Philipp Wolfer]: https://github.com/phw
2188
+ [Billy Quith]: https://github.com/billyquith
2189
+ [Herbert Shin]: https://github.com/initbar
2190
+
2191
+
2192
+ ## Version 9.2.0
2193
+
2194
+ New languages:
2195
+
2196
+ - *QML* by [John Foster][]
2197
+ - *HTMLBars* by [Michael Johnston][]
2198
+ - *CSP* by [Taras][]
2199
+ - *Maxima* by [Robert Dodier][]
2200
+
2201
+ New styles:
2202
+
2203
+ - *Gruvbox* by [Qeole][]
2204
+ - *Dracula* by [Denis Ciccale][]
2205
+
2206
+ Improvements to existing languages and styles:
2207
+
2208
+ - We now correctly handle JSX with arbitrary node tree depth.
2209
+ - Argument list for `(lambda)` in Scheme is no longer highlighted as a function
2210
+ call.
2211
+ - Stylus syntax doesn't break on valid CSS.
2212
+ - More correct handling of comments and strings and other improvements for
2213
+ VimScript.
2214
+ - More subtle work on the default style.
2215
+ - We now use anonymous modules for AMD.
2216
+ - `macro_rules!` is now recognized as a built-in in Rust.
2217
+
2218
+ [John Foster]: https://github.com/jf990
2219
+ [Qeole]: https://github.com/Qeole
2220
+ [Denis Ciccale]: https://github.com/dciccale
2221
+ [Michael Johnston]: https://github.com/lastobelus
2222
+ [Taras]: https://github.com/oxdef
2223
+ [Robert Dodier]: https://github.com/robert-dodier
2224
+
2225
+
2226
+ ## Version 9.1.0
2227
+
2228
+ New languages:
2229
+
2230
+ - *Stan* by [Brendan Rocks][]
2231
+ - *BASIC* by [Raphaël Assénat][]
2232
+ - *GAUSS* by [Matt Evans][]
2233
+ - *DTS* by [Martin Braun][]
2234
+ - *Arduino* by [Stefania Mellai][]
2235
+
2236
+ New Styles:
2237
+
2238
+ - *Arduino Light* by [Stefania Mellai][]
2239
+
2240
+ Improvements to existing languages and styles:
2241
+
2242
+ - Handle return type annotations in Python
2243
+ - Allow shebang headers in Javascript
2244
+ - Support strings in Rust meta
2245
+ - Recognize `struct` as a class-level definition in Rust
2246
+ - Recognize b-prefixed chars and strings in Rust
2247
+ - Better numbers handling in Verilog
2248
+
2249
+ [Brendan Rocks]: http://brendanrocks.com
2250
+ [Raphaël Assénat]: https://github.com/raphnet
2251
+ [Matt Evans]: https://github.com/matthewevans
2252
+ [Martin Braun]: https://github.com/mbr0wn
2253
+ [Stefania Mellai]: https://github.com/smellai
2254
+
2255
+
2256
+ ## Version 9.0.0
2257
+
2258
+ The new major version brings a reworked styling system. Highlight.js now defines
2259
+ a limited set of highlightable classes giving a consistent result across all the
2260
+ styles and languages. You can read a more detailed explanation and background in
2261
+ the [tracking issue][#348] that started this long process back in May.
2262
+
2263
+ This change is backwards incompatible for those who uses highlight.js with a
2264
+ custom stylesheet. The [new style guide][sg] explains how to write styles
2265
+ in this new world.
2266
+
2267
+ Bundled themes have also suffered a significant amount of improvements and may
2268
+ look different in places, but all the things now consistent and make more sense.
2269
+ Among others, the Default style has got a refresh and will probably be tweaked
2270
+ some more in next releases. Please do give your feedback in our
2271
+ [issue tracker][issues].
2272
+
2273
+ New languages in this release:
2274
+
2275
+ - *Caché Object Script* by [Nikita Savchenko][]
2276
+ - *YAML* by [Stefan Wienert][]
2277
+ - *MIPS Assembler* by [Nebuleon Fumika][]
2278
+ - *HSP* by [prince][]
2279
+
2280
+ Improvements to existing languages and styles:
2281
+
2282
+ - ECMAScript 6 modules import now do not require closing semicolon.
2283
+ - ECMAScript 6 classes constructors now highlighted.
2284
+ - Template string support for Typescript, as for ECMAScript 6.
2285
+ - Scala case classes params highlight fixed.
2286
+ - Built-in names introduced in Julia v0.4 added by [Kenta Sato][].
2287
+ - Refreshed Default style.
2288
+
2289
+ Other notable changes:
2290
+
2291
+ - [Web workers support][webworkers] added bu [Jan Kühle][].
2292
+ - We now have tests for compressed browser builds as well.
2293
+ - The building tool chain has been switched to node.js 4.x. and is now
2294
+ shamelessly uses ES6 features all over the place, courtesy of [Jeremy Hull][].
2295
+ - License added to non-compressed browser build.
2296
+
2297
+ [Jan Kühle]: https://github.com/frigus02
2298
+ [Stefan Wienert]: https://github.com/zealot128
2299
+ [Kenta Sato]: https://github.com/bicycle1885
2300
+ [Nikita Savchenko]: https://github.com/ZitRos
2301
+ [webworkers]: https://github.com/isagalaev/highlight.js#web-workers
2302
+ [Jeremy Hull]: https://github.com/sourrust
2303
+ [#348]: https://github.com/isagalaev/highlight.js/issues/348
2304
+ [sg]: http://highlightjs.readthedocs.org/en/latest/style-guide.html
2305
+ [issues]: https://github.com/isagalaev/highlight.js/issues
2306
+ [Nebuleon Fumika]: https://github.com/Nebuleon
2307
+ [prince]: https://github.com/prince-0203
2308
+
2309
+
2310
+ ## Version 8.9.1
2311
+
2312
+ Some last-minute changes reverted due to strange bug with minified browser build:
2313
+
2314
+ - Scala case classes params highlight fixed
2315
+ - ECMAScript 6 modules import now do not require closing semicolon
2316
+ - ECMAScript 6 classes constructors now highlighted
2317
+ - Template string support for Typescript, as for ECMAScript 6
2318
+ - License added to not minified browser build
2319
+
2320
+
2321
+ ## Version 8.9.0
2322
+
2323
+ New languages:
2324
+
2325
+ - *crmsh* by [Kristoffer Gronlund][]
2326
+ - *SQF* by [Soren Enevoldsen][]
2327
+
2328
+ [Kristoffer Gronlund]: https://github.com/krig
2329
+ [Soren Enevoldsen]: https://github.com/senevoldsen90
2330
+
2331
+ Notable fixes and improvements to existing languages:
2332
+
2333
+ - Added `abstract` and `namespace` keywords to TypeScript by [Daniel Rosenwasser][]
2334
+ - Added `label` support to Dockerfile by [Ladislav Prskavec][]
2335
+ - Crystal highlighting improved by [Tsuyusato Kitsune][]
2336
+ - Missing Swift keywords added by [Nate Cook][]
2337
+ - Improve detection of C block comments
2338
+ - ~~Scala case classes params highlight fixed~~
2339
+ - ~~ECMAScript 6 modules import now do not require closing semicolon~~
2340
+ - ~~ECMAScript 6 classes constructors now highlighted~~
2341
+ - ~~Template string support for Typescript, as for ECMAScript 6~~
2342
+
2343
+ Other notable changes:
2344
+
2345
+ - ~~License added to not minified browser build~~
2346
+
2347
+ [Kristoffer Gronlund]: https://github.com/krig
2348
+ [Søren Enevoldsen]: https://github.com/senevoldsen90
2349
+ [Daniel Rosenwasser]: https://github.com/DanielRosenwasser
2350
+ [Ladislav Prskavec]: https://github.com/abtris
2351
+ [Tsuyusato Kitsune]: https://github.com/MakeNowJust
2352
+ [Nate Cook]: https://github.com/natecook1000
2353
+
2354
+
2355
+ ## Version 8.8.0
2356
+
2357
+ New languages:
2358
+
2359
+ - *Golo* by [Philippe Charrière][]
2360
+ - *GAMS* by [Stefan Bechert][]
2361
+ - *IRPF90* by [Anthony Scemama][]
2362
+ - *Access logs* by [Oleg Efimov][]
2363
+ - *Crystal* by [Tsuyusato Kitsune][]
2364
+
2365
+ Notable fixes and improvements to existing languages:
2366
+
2367
+ - JavaScript highlighting no longer fails with ES6 default parameters
2368
+ - Added keywords `async` and `await` to Python
2369
+ - PHP heredoc support improved
2370
+ - Allow preprocessor directives within C++ functions
2371
+
2372
+ Other notable changes:
2373
+
2374
+ - Change versions to X.Y.Z SemVer-compatible format
2375
+ - Added ability to build all targets at once
2376
+
2377
+ [Philippe Charrière]: https://github.com/k33g
2378
+ [Stefan Bechert]: https://github.com/b-pos465
2379
+ [Anthony Scemama]: https://github.com/scemama
2380
+ [Oleg Efimov]: https://github.com/Sannis
2381
+ [Tsuyusato Kitsune]: https://github.com/MakeNowJust
2382
+
2383
+
2384
+ ## Version 8.7
2385
+
2386
+ New languages:
2387
+
2388
+ - *Zephir* by [Oleg Efimov][]
2389
+ - *Elm* by [Janis Voigtländer][]
2390
+ - *XQuery* by [Dirk Kirsten][]
2391
+ - *Mojolicious* by [Dotan Dimet][]
2392
+ - *AutoIt* by Manh Tuan from [J2TeaM][]
2393
+ - *Toml* (ini extension) by [Guillaume Gomez][]
2394
+
2395
+ New styles:
2396
+
2397
+ - *Hopscotch* by [Jan T. Sott][]
2398
+ - *Grayscale* by [MY Sun][]
2399
+
2400
+ Notable fixes and improvements to existing languages:
2401
+
2402
+ - Fix encoding of images when copied over in certain builds
2403
+ - Fix incorrect highlighting of the word "bug" in comments
2404
+ - Treat decorators different from matrix multiplication in Python
2405
+ - Fix traits inheritance highlighting in Rust
2406
+ - Fix incorrect document
2407
+ - Oracle keywords added to SQL language definition by [Vadimtro][]
2408
+ - Postgres keywords added to SQL language definition by [Benjamin Auder][]
2409
+ - Fix registers in x86asm being highlighted as a hex number
2410
+ - Fix highlighting for numbers with a leading decimal point
2411
+ - Correctly highlight numbers and strings inside of C/C++ macros
2412
+ - C/C++ functions now support pointer, reference, and move returns
2413
+
2414
+ [Oleg Efimov]: https://github.com/Sannis
2415
+ [Guillaume Gomez]: https://github.com/GuillaumeGomez
2416
+ [Janis Voigtländer]: https://github.com/jvoigtlaender
2417
+ [Jan T. Sott]: https://github.com/idleberg
2418
+ [Dirk Kirsten]: https://github.com/dirkk
2419
+ [MY Sun]: https://github.com/simonmysun
2420
+ [Vadimtro]: https://github.com/Vadimtro
2421
+ [Benjamin Auder]: https://github.com/ghost
2422
+ [Dotan Dimet]: https://github.com/dotandimet
2423
+ [J2TeaM]: https://github.com/J2TeaM
2424
+
2425
+
2426
+ ## Version 8.6
2427
+
2428
+ New languages:
2429
+
2430
+ - *C/AL* by [Kenneth Fuglsang][]
2431
+ - *DNS zone file* by [Tim Schumacher][]
2432
+ - *Ceylon* by [Lucas Werkmeister][]
2433
+ - *OpenSCAD* by [Dan Panzarella][]
2434
+ - *Inform7* by [Bruno Dias][]
2435
+ - *armasm* by [Dan Panzarella][]
2436
+ - *TP* by [Jay Strybis][]
2437
+
2438
+ New styles:
2439
+
2440
+ - *Atelier Cave*, *Atelier Estuary*,
2441
+ *Atelier Plateau* and *Atelier Savanna* by [Bram de Haan][]
2442
+ - *Github Gist* by [Louis Barranqueiro][]
2443
+
2444
+ Notable fixes and improvements to existing languages:
2445
+
2446
+ - Multi-line raw strings from C++11 are now supported
2447
+ - Fix class names with dashes in HAML
2448
+ - The `async` keyword from ES6/7 is now supported
2449
+ - TypeScript functions handle type and parameter complexity better
2450
+ - We unified phpdoc/javadoc/yardoc etc modes across all languages
2451
+ - CSS .class selectors relevance was dropped to prevent wrong language detection
2452
+ - Images is now included to CDN build
2453
+ - Release process is now automated
2454
+
2455
+ [Bram de Haan]: https://github.com/atelierbram
2456
+ [Kenneth Fuglsang]: https://github.com/kfuglsang
2457
+ [Louis Barranqueiro]: https://github.com/LouisBarranqueiro
2458
+ [Tim Schumacher]: https://github.com/enko
2459
+ [Lucas Werkmeister]: https://github.com/lucaswerkmeister
2460
+ [Dan Panzarella]: https://github.com/pzl
2461
+ [Bruno Dias]: https://github.com/sequitur
2462
+ [Jay Strybis]: https://github.com/unreal
2463
+
2464
+
2465
+ ## Version 8.5
2466
+
2467
+ New languages:
2468
+
2469
+ - *pf.conf* by [Peter Piwowarski][]
2470
+ - *Julia* by [Kenta Sato][]
2471
+ - *Prolog* by [Raivo Laanemets][]
2472
+ - *Docker* by [Alexis Hénaut][]
2473
+ - *Fortran* by [Anthony Scemama][] and [Thomas Applencourt][]
2474
+ - *Kotlin* by [Sergey Mashkov][]
2475
+
2476
+ New styles:
2477
+
2478
+ - *Agate* by [Taufik Nurrohman][]
2479
+ - *Darcula* by [JetBrains][]
2480
+ - *Atelier Sulphurpool* by [Bram de Haan][]
2481
+ - *Android Studio* by [Pedro Oliveira][]
2482
+
2483
+ Notable fixes and improvements to existing languages:
2484
+
2485
+ - ES6 features in JavaScript are better supported now by [Gu Yiling][].
2486
+ - Swift now recognizes body-less method definitions.
2487
+ - Single expression functions `def foo, do: ... ` now work in Elixir.
2488
+ - More uniform detection of built-in classes in Objective C.
2489
+ - Fixes for number literals and processor directives in Rust.
2490
+ - HTML `<script>` tag now allows any language, not just JavaScript.
2491
+ - Multi-line comments are supported now in MatLab.
2492
+
2493
+ [Taufik Nurrohman]: https://github.com/taufik-nurrohman
2494
+ [Jet Brains]: https://www.jetbrains.com/
2495
+ [Peter Piwowarski]: https://github.com/oldlaptop
2496
+ [Kenta Sato]: https://github.com/bicycle1885
2497
+ [Bram de Haan]: https://github.com/atelierbram
2498
+ [Raivo Laanemets]: https://github.com/rla
2499
+ [Alexis Hénaut]: https://github.com/AlexisNo
2500
+ [Anthony Scemama]: https://github.com/scemama
2501
+ [Pedro Oliveira]: https://github.com/kanytu
2502
+ [Gu Yiling]: https://github.com/Justineo
2503
+ [Sergey Mashkov]: https://github.com/cy6erGn0m
2504
+ [Thomas Applencourt]: https://github.com/TApplencourt
2505
+
2506
+
2507
+ ## Version 8.4
2508
+
2509
+ We've got the new [demo page][]! The obvious new feature is the new look, but
2510
+ apart from that it's got smarter: by presenting languages in groups it avoids
2511
+ running 10000 highlighting attempts after first load which was slowing it down
2512
+ and giving bad overall impression. It is now also being generated from test
2513
+ code snippets so the authors of new languages don't have to update both tests
2514
+ and the demo page with the same thing.
2515
+
2516
+ Other notable changes:
2517
+
2518
+ - The `template_comment` class is gone in favor of the more general `comment`.
2519
+ - Number parsing unified and improved across languages.
2520
+ - C++, Java and C# now use unified grammar to highlight titles in
2521
+ function/method definitions.
2522
+ - The browser build is now usable as an AMD module, there's no separate build
2523
+ target for that anymore.
2524
+ - OCaml has got a [comprehensive overhaul][ocaml] by [Mickaël Delahaye][].
2525
+ - Clojure's data structures and literals are now highlighted outside of lists
2526
+ and we can now highlight Clojure's REPL sessions.
2527
+
2528
+ New languages:
2529
+
2530
+ - *AspectJ* by [Hakan Özler][]
2531
+ - *STEP Part 21* by [Adam Joseph Cook][]
2532
+ - *SML* derived by [Edwin Dalorzo][] from OCaml definition
2533
+ - *Mercury* by [mucaho][]
2534
+ - *Smali* by [Dennis Titze][]
2535
+ - *Verilog* by [Jon Evans][]
2536
+ - *Stata* by [Brian Quistorff][]
2537
+
2538
+ [Hakan Özler]: https://github.com/ozlerhakan
2539
+ [Adam Joseph Cook]: https://github.com/adamjcook
2540
+ [demo page]: https://highlightjs.org/static/demo/
2541
+ [Ivan Sagalaev]: https://github.com/isagalaev
2542
+ [Edwin Dalorzo]: https://github.com/edalorzo
2543
+ [mucaho]: https://github.com/mucaho
2544
+ [Dennis Titze]: https://github.com/titze
2545
+ [Jon Evans]: https://github.com/craftyjon
2546
+ [Brian Quistorff]: https://github.com/bquistorff
2547
+ [ocaml]: https://github.com/isagalaev/highlight.js/pull/608#issue-46190207
2548
+ [Mickaël Delahaye]: https://github.com/polazarus
2549
+
2550
+
2551
+ ## Version 8.3
2552
+
2553
+ We streamlined our tool chain, it is now based entirely on node.js instead of
2554
+ being a mix of node.js, Python and Java. The build script options and arguments
2555
+ remained the same, and we've noted all the changes in the [documentation][b].
2556
+ Apart from reducing complexity, the new build script is also faster from not
2557
+ having to start Java machine repeatedly. The credits for the work go to [Jeremy
2558
+ Hull][].
2559
+
2560
+ Some notable fixes:
2561
+
2562
+ - PHP and JavaScript mixed in HTML now live happily with each other.
2563
+ - JavaScript regexes now understand ES6 flags "u" and "y".
2564
+ - `throw` keyword is no longer detected as a method name in Java.
2565
+ - Fixed parsing of numbers and symbols in Clojure thanks to [input from Ivan
2566
+ Kleshnin][ik].
2567
+
2568
+ New languages in this release:
2569
+
2570
+ - *Less* by [Max Mikhailov][]
2571
+ - *Stylus* by [Bryant Williams][]
2572
+ - *Tcl* by [Radek Liska][]
2573
+ - *Puppet* by [Jose Molina Colmenero][]
2574
+ - *Processing* by [Erik Paluka][]
2575
+ - *Twig* templates by [Luke Holder][]
2576
+ - *PowerShell* by [David Mohundro][], based on [the work of Nicholas Blumhardt][ps]
2577
+ - *XL* by [Christophe de Dinechin][]
2578
+ - *LiveScript* by [Taneli Vatanen][] and [Jen Evers-Corvina][]
2579
+ - *ERB* (Ruby in HTML) by [Lucas Mazza][]
2580
+ - *Roboconf* by [Vincent Zurczak][]
2581
+
2582
+ [b]: http://highlightjs.readthedocs.org/en/latest/building-testing.html
2583
+ [Jeremy Hull]: https://github.com/sourrust
2584
+ [ik]: https://twitter.com/IvanKleshnin/status/514041599484231680
2585
+ [Max Mikhailov]: https://github.com/seven-phases-max
2586
+ [Bryant Williams]: https://github.com/scien
2587
+ [Radek Liska]: https://github.com/Nindaleth
2588
+ [Jose Molina Colmenero]: https://github.com/Moliholy
2589
+ [Erik Paluka]: https://github.com/paluka
2590
+ [Luke Holder]: https://github.com/lukeholder
2591
+ [David Mohundro]: https://github.com/drmohundro
2592
+ [ps]: https://github.com/OctopusDeploy/Library/blob/master/app/shared/presentation/highlighting/powershell.js
2593
+ [Christophe de Dinechin]: https://github.com/c3d
2594
+ [Taneli Vatanen]: https://github.com/Daiz-
2595
+ [Jen Evers-Corvina]: https://github.com/sevvie
2596
+ [Lucas Mazza]: https://github.com/lucasmazza
2597
+ [Vincent Zurczak]: https://github.com/vincent-zurczak
2598
+
2599
+
2600
+ ## Version 8.2
2601
+
2602
+ We've finally got [real tests][test] and [continuous testing on Travis][ci]
2603
+ thanks to [Jeremy Hull][] and [Chris Eidhof][]. The tests designed to cover
2604
+ everything: language detection, correct parsing of individual language features
2605
+ and various special cases. This is a very important change that gives us
2606
+ confidence in extending language definitions and refactoring library core.
2607
+
2608
+ We're going to redesign the old [demo/test suite][demo] into an interactive
2609
+ demo web app. If you're confident front-end developer or designer and want to
2610
+ help us with it, drop a comment into [the issue][#542] on GitHub.
2611
+
2612
+ [test]: https://github.com/isagalaev/highlight.js/tree/master/test
2613
+ [demo]: https://highlightjs.org/static/test.html
2614
+ [#542]: https://github.com/isagalaev/highlight.js/issues/542
2615
+ [ci]: https://travis-ci.org/isagalaev/highlight.js
2616
+ [Jeremy Hull]: https://github.com/sourrust
2617
+ [Chris Eidhof]: https://github.com/chriseidhof
2618
+
2619
+ As usually there's a handful of new languages in this release:
2620
+
2621
+ - *Groovy* by [Guillaume Laforge][]
2622
+ - *Dart* by [Maxim Dikun][]
2623
+ - *Dust* by [Michael Allen][]
2624
+ - *Scheme* by [JP Verkamp][]
2625
+ - *G-Code* by [Adam Joseph Cook][]
2626
+ - *Q* from Kx Systems by [Sergey Vidyuk][]
2627
+
2628
+ [Guillaume Laforge]: https://github.com/glaforge
2629
+ [Maxim Dikun]: https://github.com/dikmax
2630
+ [Michael Allen]: https://github.com/bfui
2631
+ [JP Verkamp]: https://github.com/jpverkamp
2632
+ [Adam Joseph Cook]: https://github.com/adamjcook
2633
+ [Sergey Vidyuk]: https://github.com/sv
2634
+
2635
+ Other improvements:
2636
+
2637
+ - [Erik Osheim][] heavily reworked Scala definitions making it richer.
2638
+ - [Lucas Mazza][] fixed Ruby hashes highlighting
2639
+ - Lisp variants (Lisp, Clojure and Scheme) are unified in regard to naming
2640
+ the first symbol in parentheses: it's "keyword" in general case and also
2641
+ "built_in" for built-in functions in Clojure and Scheme.
2642
+
2643
+ [Erik Osheim]: https://github.com/non
2644
+ [Lucas Mazza]: https://github.com/lucasmazza
2645
+
2646
+
2647
+ ## Version 8.1
2648
+
2649
+ New languages:
2650
+
2651
+ - *Gherkin* by [Sam Pikesley][]
2652
+ - *Elixir* by [Josh Adams][]
2653
+ - *NSIS* by [Jan T. Sott][]
2654
+ - *VIM script* by [Jun Yang][]
2655
+ - *Protocol Buffers* by [Dan Tao][]
2656
+ - *Nix* by [Domen Kožar][]
2657
+ - *x86asm* by [innocenat][]
2658
+ - *Cap'n Proto* and *Thrift* by [Oleg Efimov][]
2659
+ - *Monkey* by [Arthur Bikmullin][]
2660
+ - *TypeScript* by [Panu Horsmalahti][]
2661
+ - *Nimrod* by [Flaviu Tamas][]
2662
+ - *Gradle* by [Damian Mee][]
2663
+ - *Haxe* by [Christopher Kaster][]
2664
+ - *Swift* by [Chris Eidhof][] and [Nate Cook][]
2665
+
2666
+ New styles:
2667
+
2668
+ - *Kimbie*, light and dark variants by [Jan T. Sott][]
2669
+ - *Color brewer* by [Fabrício Tavares de Oliveira][]
2670
+ - *Codepen.io embed* by [Justin Perry][]
2671
+ - *Hybrid* by [Nic West][]
2672
+
2673
+ [Sam Pikesley]: https://github.com/pikesley
2674
+ [Sindre Sorhus]: https://github.com/sindresorhus
2675
+ [Josh Adams]: https://github.com/knewter
2676
+ [Jan T. Sott]: https://github.com/idleberg
2677
+ [Jun Yang]: https://github.com/harttle
2678
+ [Dan Tao]: https://github.com/dtao
2679
+ [Domen Kožar]: https://github.com/iElectric
2680
+ [innocenat]: https://github.com/innocenat
2681
+ [Oleg Efimov]: https://github.com/Sannis
2682
+ [Arthur Bikmullin]: https://github.com/devolonter
2683
+ [Panu Horsmalahti]: https://github.com/panuhorsmalahti
2684
+ [Flaviu Tamas]: https://github.com/flaviut
2685
+ [Damian Mee]: https://github.com/chester1000
2686
+ [Christopher Kaster]: http://christopher.kaster.ws
2687
+ [Fabrício Tavares de Oliveira]: https://github.com/fabriciotav
2688
+ [Justin Perry]: https://github.com/ourmaninamsterdam
2689
+ [Nic West]: https://github.com/nicwest
2690
+ [Chris Eidhof]: https://github.com/chriseidhof
2691
+ [Nate Cook]: https://github.com/natecook1000
2692
+
2693
+ Other improvements:
2694
+
2695
+ - The README is heavily reworked and brought up to date by [Jeremy Hull][].
2696
+ - Added [`listLanguages()`][ll] method in the API.
2697
+ - Improved C/C++/C# detection.
2698
+ - Added a bunch of new language aliases, documented the existing ones. Thanks to
2699
+ [Sindre Sorhus][] for background research.
2700
+ - Added phrasal English words to boost relevance in comments.
2701
+ - Many improvements to SQL definition made by [Heiko August][],
2702
+ [Nikolay Lisienko][] and [Travis Odom][].
2703
+ - The shorter `lang-` prefix for language names in HTML classes supported
2704
+ alongside `language-`. Thanks to [Jeff Escalante][].
2705
+ - Ruby's got support for interactive console sessions. Thanks to
2706
+ [Pascal Hurni][].
2707
+ - Added built-in functions for R language. Thanks to [Artem A. Klevtsov][].
2708
+ - Rust's got definition for lifetime parameters and improved string syntax.
2709
+ Thanks to [Roman Shmatov][].
2710
+ - Various improvements to Objective-C definition by [Matt Diephouse][].
2711
+ - Fixed highlighting of generics in Java.
2712
+
2713
+ [ll]: http://highlightjs.readthedocs.org/en/latest/api.html#listlanguages
2714
+ [Sindre Sorhus]: https://github.com/sindresorhus
2715
+ [Heiko August]: https://github.com/auge8472
2716
+ [Nikolay Lisienko]: https://github.com/neor-ru
2717
+ [Travis Odom]: https://github.com/Burstaholic
2718
+ [Jeff Escalante]: https://github.com/jenius
2719
+ [Pascal Hurni]: https://github.com/phurni
2720
+ [Jiyin Yiyong]: https://github.com/jiyinyiyong
2721
+ [Artem A. Klevtsov]: https://github.com/unikum
2722
+ [Roman Shmatov]: https://github.com/shmatov
2723
+ [Jeremy Hull]: https://github.com/sourrust
2724
+ [Matt Diephouse]: https://github.com/mdiep
2725
+
2726
+
2727
+ ## Version 8.0
2728
+
2729
+ This new major release is quite a big overhaul bringing both new features and
2730
+ some backwards incompatible changes. However, chances are that the majority of
2731
+ users won't be affected by the latter: the basic scenario described in the
2732
+ README is left intact.
2733
+
2734
+ Here's what did change in an incompatible way:
2735
+
2736
+ - We're now prefixing all classes located in [CSS classes reference][cr] with
2737
+ `hljs-`, by default, because some class names would collide with other
2738
+ people's stylesheets. If you were using an older version, you might still want
2739
+ the previous behavior, but still want to upgrade. To suppress this new
2740
+ behavior, you would initialize like so:
2741
+
2742
+ ```html
2743
+ <script type="text/javascript">
2744
+ hljs.configure({classPrefix: ''});
2745
+ hljs.initHighlightingOnLoad();
2746
+ </script>
2747
+ ```
2748
+
2749
+ - `tabReplace` and `useBR` that were used in different places are also unified
2750
+ into the global options object and are to be set using `configure(options)`.
2751
+ This function is documented in our [API docs][]. Also note that these
2752
+ parameters are gone from `highlightBlock` and `fixMarkup` which are now also
2753
+ rely on `configure`.
2754
+
2755
+ - We removed public-facing (though undocumented) object `hljs.LANGUAGES` which
2756
+ was used to register languages with the library in favor of two new methods:
2757
+ `registerLanguage` and `getLanguage`. Both are documented in our [API docs][].
2758
+
2759
+ - Result returned from `highlight` and `highlightAuto` no longer contains two
2760
+ separate attributes contributing to relevance score, `relevance` and
2761
+ `keyword_count`. They are now unified in `relevance`.
2762
+
2763
+ Another technically compatible change that nonetheless might need attention:
2764
+
2765
+ - The structure of the NPM package was refactored, so if you had installed it
2766
+ locally, you'll have to update your paths. The usual `require('highlight.js')`
2767
+ works as before. This is contributed by [Dmitry Smolin][].
2768
+
2769
+ New features:
2770
+
2771
+ - Languages now can be recognized by multiple names like "js" for JavaScript or
2772
+ "html" for, well, HTML (which earlier insisted on calling it "xml"). These
2773
+ aliases can be specified in the class attribute of the code container in your
2774
+ HTML as well as in various API calls. For now there are only a few very common
2775
+ aliases but we'll expand it in the future. All of them are listed in the
2776
+ [class reference][cr].
2777
+
2778
+ - Language detection can now be restricted to a subset of languages relevant in
2779
+ a given context — a web page or even a single highlighting call. This is
2780
+ especially useful for node.js build that includes all the known languages.
2781
+ Another example is a StackOverflow-style site where users specify languages
2782
+ as tags rather than in the markdown-formatted code snippets. This is
2783
+ documented in the [API reference][] (see methods `highlightAuto` and
2784
+ `configure`).
2785
+
2786
+ - Language definition syntax streamlined with [variants][] and
2787
+ [beginKeywords][].
2788
+
2789
+ New languages and styles:
2790
+
2791
+ - *Oxygene* by [Carlo Kok][]
2792
+ - *Mathematica* by [Daniel Kvasnička][]
2793
+ - *Autohotkey* by [Seongwon Lee][]
2794
+ - *Atelier* family of styles in 10 variants by [Bram de Haan][]
2795
+ - *Paraíso* styles by [Jan T. Sott][]
2796
+
2797
+ Miscellaneous improvements:
2798
+
2799
+ - Highlighting `=>` prompts in Clojure.
2800
+ - [Jeremy Hull][] fixed a lot of styles for consistency.
2801
+ - Finally, highlighting PHP and HTML [mixed in peculiar ways][php-html].
2802
+ - Objective C and C# now properly highlight titles in method definition.
2803
+ - Big overhaul of relevance counting for a number of languages. Please do report
2804
+ bugs about mis-detection of non-trivial code snippets!
2805
+
2806
+ [API reference]: http://highlightjs.readthedocs.org/en/latest/api.html
2807
+
2808
+ [cr]: http://highlightjs.readthedocs.org/en/latest/css-classes-reference.html
2809
+ [api docs]: http://highlightjs.readthedocs.org/en/latest/api.html
2810
+ [variants]: https://groups.google.com/d/topic/highlightjs/VoGC9-1p5vk/discussion
2811
+ [beginKeywords]: https://github.com/isagalaev/highlight.js/commit/6c7fdea002eb3949577a85b3f7930137c7c3038d
2812
+ [php-html]: https://twitter.com/highlightjs/status/408890903017689088
2813
+
2814
+ [Carlo Kok]: https://github.com/carlokok
2815
+ [Bram de Haan]: https://github.com/atelierbram
2816
+ [Daniel Kvasnička]: https://github.com/dkvasnicka
2817
+ [Dmitry Smolin]: https://github.com/dimsmol
2818
+ [Jeremy Hull]: https://github.com/sourrust
2819
+ [Seongwon Lee]: https://github.com/dlimpid
2820
+ [Jan T. Sott]: https://github.com/idleberg
2821
+
2822
+
2823
+ ## Version 7.5
2824
+
2825
+ A catch-up release dealing with some of the accumulated contributions. This one
2826
+ is probably will be the last before the 8.0 which will be slightly backwards
2827
+ incompatible regarding some advanced use-cases.
2828
+
2829
+ One outstanding change in this version is the addition of 6 languages to the
2830
+ [hosted script][d]: Markdown, ObjectiveC, CoffeeScript, Apache, Nginx and
2831
+ Makefile. It now weighs about 6K more but we're going to keep it under 30K.
2832
+
2833
+ New languages:
2834
+
2835
+ - OCaml by [Mehdi Dogguy][mehdid] and [Nicolas Braud-Santoni][nbraud]
2836
+ - [LiveCode Server][lcs] by [Ralf Bitter][revig]
2837
+ - Scilab by [Sylvestre Ledru][sylvestre]
2838
+ - basic support for Makefile by [Ivan Sagalaev][isagalaev]
2839
+
2840
+ Improvements:
2841
+
2842
+ - Ruby's got support for characters like `?A`, `?1`, `?\012` etc. and `%r{..}`
2843
+ regexps.
2844
+ - Clojure now allows a function call in the beginning of s-expressions
2845
+ `(($filter "myCount") (arr 1 2 3 4 5))`.
2846
+ - Haskell's got new keywords and now recognizes more things like pragmas,
2847
+ preprocessors, modules, containers, FFIs etc. Thanks to [Zena Treep][treep]
2848
+ for the implementation and to [Jeremy Hull][sourrust] for guiding it.
2849
+ - Miscellaneous fixes in PHP, Brainfuck, SCSS, Asciidoc, CMake, Python and F#.
2850
+
2851
+ [mehdid]: https://github.com/mehdid
2852
+ [nbraud]: https://github.com/nbraud
2853
+ [revig]: https://github.com/revig
2854
+ [lcs]: http://livecode.com/developers/guides/server/
2855
+ [sylvestre]: https://github.com/sylvestre
2856
+ [isagalaev]: https://github.com/isagalaev
2857
+ [treep]: https://github.com/treep
2858
+ [sourrust]: https://github.com/sourrust
2859
+ [d]: http://highlightjs.org/download/
2860
+
2861
+
2862
+ ## New core developers
2863
+
2864
+ The latest long period of almost complete inactivity in the project coincided
2865
+ with growing interest to it led to a decision that now seems completely obvious:
2866
+ we need more core developers.
2867
+
2868
+ So without further ado let me welcome to the core team two long-time
2869
+ contributors: [Jeremy Hull][] and [Oleg
2870
+ Efimov][].
2871
+
2872
+ Hope now we'll be able to work through stuff faster!
2873
+
2874
+ P.S. The historical commit is [here][1] for the record.
2875
+
2876
+ [Jeremy Hull]: https://github.com/sourrust
2877
+ [Oleg Efimov]: https://github.com/sannis
2878
+ [1]: https://github.com/isagalaev/highlight.js/commit/f3056941bda56d2b72276b97bc0dd5f230f2473f
2879
+
2880
+
2881
+ ## Version 7.4
2882
+
2883
+ This long overdue version is a snapshot of the current source tree with all the
2884
+ changes that happened during the past year. Sorry for taking so long!
2885
+
2886
+ Along with the changes in code highlight.js has finally got its new home at
2887
+ <http://highlightjs.org/>, moving from its cradle on Software Maniacs which it
2888
+ outgrew a long time ago. Be sure to report any bugs about the site to
2889
+ <mailto:info@highlightjs.org>.
2890
+
2891
+ On to what's new…
2892
+
2893
+ New languages:
2894
+
2895
+ - Handlebars templates by [Robin Ward][]
2896
+ - Oracle Rules Language by [Jason Jacobson][]
2897
+ - F# by [Joans Follesø][]
2898
+ - AsciiDoc and Haml by [Dan Allen][]
2899
+ - Lasso by [Eric Knibbe][]
2900
+ - SCSS by [Kurt Emch][]
2901
+ - VB.NET by [Poren Chiang][]
2902
+ - Mizar by [Kelley van Evert][]
2903
+
2904
+ [Robin Ward]: https://github.com/eviltrout
2905
+ [Jason Jacobson]: https://github.com/jayce7
2906
+ [Joans Follesø]: https://github.com/follesoe
2907
+ [Dan Allen]: https://github.com/mojavelinux
2908
+ [Eric Knibbe]: https://github.com/EricFromCanada
2909
+ [Kurt Emch]: https://github.com/kemch
2910
+ [Poren Chiang]: https://github.com/rschiang
2911
+ [Kelley van Evert]: https://github.com/kelleyvanevert
2912
+
2913
+ New style themes:
2914
+
2915
+ - Monokai Sublime by [noformnocontent][]
2916
+ - Railscasts by [Damien White][]
2917
+ - Obsidian by [Alexander Marenin][]
2918
+ - Docco by [Simon Madine][]
2919
+ - Mono Blue by [Ivan Sagalaev][] (uses a single color hue for everything)
2920
+ - Foundation by [Dan Allen][]
2921
+
2922
+ [noformnocontent]: http://nn.mit-license.org/
2923
+ [Damien White]: https://github.com/visoft
2924
+ [Alexander Marenin]: https://github.com/ioncreature
2925
+ [Simon Madine]: https://github.com/thingsinjars
2926
+ [Ivan Sagalaev]: https://github.com/isagalaev
2927
+
2928
+ Other notable changes:
2929
+
2930
+ - Corrected many corner cases in CSS.
2931
+ - Dropped Python 2 version of the build tool.
2932
+ - Implemented building for the AMD format.
2933
+ - Updated Rust keywords (thanks to [Dmitry Medvinsky][]).
2934
+ - Literal regexes can now be used in language definitions.
2935
+ - CoffeeScript highlighting is now significantly more robust and rich due to
2936
+ input from [Cédric Néhémie][].
2937
+
2938
+ [Dmitry Medvinsky]: https://github.com/dmedvinsky
2939
+ [Cédric Néhémie]: https://github.com/abe33
2940
+
2941
+
2942
+ ## Version 7.3
2943
+
2944
+ - Since this version highlight.js no longer works in IE version 8 and older.
2945
+ It's made it possible to reduce the library size and dramatically improve code
2946
+ readability and made it easier to maintain. Time to go forward!
2947
+
2948
+ - New languages: AppleScript (by [Nathan Grigg][ng] and [Dr. Drang][dd]) and
2949
+ Brainfuck (by [Evgeny Stepanischev][bolk]).
2950
+
2951
+ - Improvements to existing languages:
2952
+
2953
+ - interpreter prompt in Python (`>>>` and `...`)
2954
+ - @-properties and classes in CoffeeScript
2955
+ - E4X in JavaScript (by [Oleg Efimov][oe])
2956
+ - new keywords in Perl (by [Kirk Kimmel][kk])
2957
+ - big Ruby syntax update (by [Vasily Polovnyov][vast])
2958
+ - small fixes in Bash
2959
+
2960
+ - Also Oleg Efimov did a great job of moving all the docs for language and style
2961
+ developers and contributors from the old wiki under the source code in the
2962
+ "docs" directory. Now these docs are nicely presented at
2963
+ <http://highlightjs.readthedocs.org/>.
2964
+
2965
+ [ng]: https://github.com/nathan11g
2966
+ [dd]: https://github.com/drdrang
2967
+ [bolk]: https://github.com/bolknote
2968
+ [oe]: https://github.com/Sannis
2969
+ [kk]: https://github.com/kimmel
2970
+ [vast]: https://github.com/vast
2971
+
2972
+
2973
+ ## Version 7.2
2974
+
2975
+ A regular bug-fix release without any significant new features. Enjoy!
2976
+
2977
+
2978
+ ## Version 7.1
2979
+
2980
+ A Summer crop:
2981
+
2982
+ - [Marc Fornos][mf] made the definition for Clojure along with the matching
2983
+ style Rainbow (which, of course, works for other languages too).
2984
+ - CoffeeScript support continues to improve getting support for regular
2985
+ expressions.
2986
+ - Yoshihide Jimbo ported to highlight.js [five Tomorrow styles][tm] from the
2987
+ [project by Chris Kempson][tm0].
2988
+ - Thanks to [Casey Duncun][cd] the library can now be built in the popular
2989
+ [AMD format][amd].
2990
+ - And last but not least, we've got a fair number of correctness and consistency
2991
+ fixes, including a pretty significant refactoring of Ruby.
2992
+
2993
+ [mf]: https://github.com/mfornos
2994
+ [tm]: http://jmblog.github.com/color-themes-for-highlightjs/
2995
+ [tm0]: https://github.com/ChrisKempson/Tomorrow-Theme
2996
+ [cd]: https://github.com/caseman
2997
+ [amd]: http://requirejs.org/docs/whyamd.html
2998
+
2999
+
3000
+ ## Version 7.0
3001
+
3002
+ The reason for the new major version update is a global change of keyword syntax
3003
+ which resulted in the library getting smaller once again. For example, the
3004
+ hosted build is 2K less than at the previous version while supporting two new
3005
+ languages.
3006
+
3007
+ Notable changes:
3008
+
3009
+ - The library now works not only in a browser but also with [node.js][]. It is
3010
+ installable with `npm install highlight.js`. [API][] docs are available on our
3011
+ wiki.
3012
+
3013
+ - The new unique feature (apparently) among syntax highlighters is highlighting
3014
+ *HTTP* headers and an arbitrary language in the request body. The most useful
3015
+ languages here are *XML* and *JSON* both of which highlight.js does support.
3016
+ Here's [the detailed post][p] about the feature.
3017
+
3018
+ - Two new style themes: a dark "south" *[Pojoaque][]* by Jason Tate and an
3019
+ emulation of*XCode* IDE by [Angel Olloqui][ao].
3020
+
3021
+ - Three new languages: *D* by [Aleksandar Ružičić][ar], *R* by [Joe Cheng][jc]
3022
+ and *GLSL* by [Sergey Tikhomirov][st].
3023
+
3024
+ - *Nginx* syntax has become a million times smaller and more universal thanks to
3025
+ remaking it in a more generic manner that doesn't require listing all the
3026
+ directives in the known universe.
3027
+
3028
+ - Function titles are now highlighted in *PHP*.
3029
+
3030
+ - *Haskell* and *VHDL* were significantly reworked to be more rich and correct
3031
+ by their respective maintainers [Jeremy Hull][sr] and [Igor Kalnitsky][ik].
3032
+
3033
+ And last but not least, many bugs have been fixed around correctness and
3034
+ language detection.
3035
+
3036
+ Overall highlight.js currently supports 51 languages and 20 style themes.
3037
+
3038
+ [node.js]: http://nodejs.org/
3039
+ [api]: http://softwaremaniacs.org/wiki/doku.php/highlight.js:api
3040
+ [p]: http://softwaremaniacs.org/blog/2012/05/10/http-and-json-in-highlight-js/en/
3041
+ [pojoaque]: http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html
3042
+ [ao]: https://github.com/angelolloqui
3043
+ [ar]: https://github.com/raleksandar
3044
+ [jc]: https://github.com/jcheng5
3045
+ [st]: https://github.com/tikhomirov
3046
+ [sr]: https://github.com/sourrust
3047
+ [ik]: https://github.com/ikalnitsky
3048
+
3049
+
3050
+ ## Version 6.2
3051
+
3052
+ A lot of things happened in highlight.js since the last version! We've got nine
3053
+ new contributors, the discussion group came alive, and the main branch on GitHub
3054
+ now counts more than 350 followers. Here are most significant results coming
3055
+ from all this activity:
3056
+
3057
+ - 5 (five!) new languages: Rust, ActionScript, CoffeeScript, MatLab and
3058
+ experimental support for markdown. Thanks go to [Andrey Vlasovskikh][av],
3059
+ [Alexander Myadzel][am], [Dmytrii Nagirniak][dn], [Oleg Efimov][oe], [Denis
3060
+ Bardadym][db] and [John Crepezzi][jc].
3061
+
3062
+ - 2 new style themes: Monokai by [Luigi Maselli][lm] and stylistic imitation of
3063
+ another well-known highlighter Google Code Prettify by [Aahan Krish][ak].
3064
+
3065
+ - A vast number of [correctness fixes and code refactorings][log], mostly made
3066
+ by [Oleg Efimov][oe] and [Evgeny Stepanischev][es].
3067
+
3068
+ [av]: https://github.com/vlasovskikh
3069
+ [am]: https://github.com/myadzel
3070
+ [dn]: https://github.com/dnagir
3071
+ [oe]: https://github.com/Sannis
3072
+ [db]: https://github.com/btd
3073
+ [jc]: https://github.com/seejohnrun
3074
+ [lm]: http://grigio.org/
3075
+ [ak]: https://github.com/geekpanth3r
3076
+ [es]: https://github.com/bolknote
3077
+ [log]: https://github.com/isagalaev/highlight.js/commits/
3078
+
3079
+
3080
+ ## Version 6.1 — Solarized
3081
+
3082
+ [Jeremy Hull][jh] has implemented my dream feature — a port of [Solarized][]
3083
+ style theme famous for being based on the intricate color theory to achieve
3084
+ correct contrast and color perception. It is now available for highlight.js in
3085
+ both variants — light and dark.
3086
+
3087
+ This version also adds a new original style Arta. Its author pumbur maintains a
3088
+ [heavily modified fork of highlight.js][pb] on GitHub.
3089
+
3090
+ [jh]: https://github.com/sourrust
3091
+ [solarized]: http://ethanschoonover.com/solarized
3092
+ [pb]: https://github.com/pumbur/highlight.js
3093
+
3094
+
3095
+ ## Version 6.0
3096
+
3097
+ New major version of the highlighter has been built on a significantly
3098
+ refactored syntax. Due to this it's even smaller than the previous one while
3099
+ supporting more languages!
3100
+
3101
+ New languages are:
3102
+
3103
+ - Haskell by [Jeremy Hull][sourrust]
3104
+ - Erlang in two varieties — module and REPL — made collectively by [Nikolay
3105
+ Zakharov][desh], [Dmitry Kovega][arhibot] and [Sergey Ignatov][ignatov]
3106
+ - Objective C by [Valerii Hiora][vhbit]
3107
+ - Vala by [Antono Vasiljev][antono]
3108
+ - Go by [Stephan Kountso][steplg]
3109
+
3110
+ [sourrust]: https://github.com/sourrust
3111
+ [desh]: http://desh.su/
3112
+ [arhibot]: https://github.com/arhibot
3113
+ [ignatov]: https://github.com/ignatov
3114
+ [vhbit]: https://github.com/vhbit
3115
+ [antono]: https://github.com/antono
3116
+ [steplg]: https://github.com/steplg
3117
+
3118
+ Also this version is marginally faster and fixes a number of small long-standing
3119
+ bugs.
3120
+
3121
+ Developer overview of the new language syntax is available in a [blog post about
3122
+ recent beta release][beta].
3123
+
3124
+ [beta]: http://softwaremaniacs.org/blog/2011/04/25/highlight-js-60-beta/en/
3125
+
3126
+ P.S. New version is not yet available on a Yandex CDN, so for now you have to
3127
+ download [your own copy][d].
3128
+
3129
+ [d]: /soft/highlight/en/download/
3130
+
3131
+
3132
+ ## Version 5.14
3133
+
3134
+ Fixed bugs in HTML/XML detection and relevance introduced in previous
3135
+ refactoring.
3136
+
3137
+ Also test.html now shows the second best result of language detection by
3138
+ relevance.
3139
+
3140
+
3141
+ ## Version 5.13
3142
+
3143
+ Past weekend began with a couple of simple additions for existing languages but
3144
+ ended up in a big code refactoring bringing along nice improvements for language
3145
+ developers.
3146
+
3147
+ ### For users
3148
+
3149
+ - Description of C++ has got new keywords from the upcoming [C++ 0x][] standard.
3150
+ - Description of HTML has got new tags from [HTML 5][].
3151
+ - CSS-styles have been unified to use consistent padding and also have lost
3152
+ pop-outs with names of detected languages.
3153
+ - [Igor Kalnitsky][ik] has sent two new language descriptions: CMake & VHDL.
3154
+
3155
+ This makes total number of languages supported by highlight.js to reach 35.
3156
+
3157
+ Bug fixes:
3158
+
3159
+ - Custom classes on `<pre>` tags are not being overridden anymore
3160
+ - More correct highlighting of code blocks inside non-`<pre>` containers:
3161
+ highlighter now doesn't insist on replacing them with its own container and
3162
+ just replaces the contents.
3163
+ - Small fixes in browser compatibility and heuristics.
3164
+
3165
+ [c++ 0x]: http://ru.wikipedia.org/wiki/C%2B%2B0x
3166
+ [html 5]: http://en.wikipedia.org/wiki/HTML5
3167
+ [ik]: http://kalnitsky.org.ua/
3168
+
3169
+ ### For developers
3170
+
3171
+ The most significant change is the ability to include language submodes right
3172
+ under `contains` instead of defining explicit named submodes in the main array:
3173
+
3174
+ contains: [
3175
+ 'string',
3176
+ 'number',
3177
+ {begin: '\\n', end: hljs.IMMEDIATE_RE}
3178
+ ]
3179
+
3180
+ This is useful for auxiliary modes needed only in one place to define parsing.
3181
+ Note that such modes often don't have `className` and hence won't generate a
3182
+ separate `<span>` in the resulting markup. This is similar in effect to
3183
+ `noMarkup: true`. All existing languages have been refactored accordingly.
3184
+
3185
+ Test file test.html has at last become a real test. Now it not only puts the
3186
+ detected language name under the code snippet but also tests if it matches the
3187
+ expected one. Test summary is displayed right above all language snippets.
3188
+
3189
+
3190
+ ## CDN
3191
+
3192
+ Fine people at [Yandex][] agreed to host highlight.js on their big fast servers.
3193
+ [Link up][l]!
3194
+
3195
+ [yandex]: http://yandex.com/
3196
+ [l]: http://softwaremaniacs.org/soft/highlight/en/download/
3197
+
3198
+
3199
+ ## Version 5.10 — "Paris".
3200
+
3201
+ Though I'm on a vacation in Paris, I decided to release a new version with a
3202
+ couple of small fixes:
3203
+
3204
+ - Tomas Vitvar discovered that TAB replacement doesn't always work when used
3205
+ with custom markup in code
3206
+ - SQL parsing is even more rigid now and doesn't step over SmallTalk in tests
3207
+
3208
+
3209
+ ## Version 5.9
3210
+
3211
+ A long-awaited version is finally released.
3212
+
3213
+ New languages:
3214
+
3215
+ - Andrew Fedorov made a definition for Lua
3216
+ - a long-time highlight.js contributor [Peter Leonov][pl] made a definition for
3217
+ Nginx config
3218
+ - [Vladimir Moskva][vm] made a definition for TeX
3219
+
3220
+ [pl]: http://kung-fu-tzu.ru/
3221
+ [vm]: http://fulc.ru/
3222
+
3223
+ Fixes for existing languages:
3224
+
3225
+ - [Loren Segal][ls] reworked the Ruby definition and added highlighting for
3226
+ [YARD][] inline documentation
3227
+ - the definition of SQL has become more solid and now it shouldn't be overly
3228
+ greedy when it comes to language detection
3229
+
3230
+ [ls]: http://gnuu.org/
3231
+ [yard]: http://yardoc.org/
3232
+
3233
+ The highlighter has become more usable as a library allowing to do highlighting
3234
+ from initialization code of JS frameworks and in ajax methods (see.
3235
+ readme.eng.txt).
3236
+
3237
+ Also this version drops support for the [WordPress][wp] plugin. Everyone is
3238
+ welcome to [pick up its maintenance][p] if needed.
3239
+
3240
+ [wp]: http://wordpress.org/
3241
+ [p]: http://bazaar.launchpad.net/~isagalaev/+junk/highlight/annotate/342/src/wp_highlight.js.php
3242
+
3243
+
3244
+ ## Version 5.8
3245
+
3246
+ - Jan Berkel has contributed a definition for Scala. +1 to hotness!
3247
+ - All CSS-styles are rewritten to work only inside `<pre>` tags to avoid
3248
+ conflicts with host site styles.
3249
+
3250
+
3251
+ ## Version 5.7.
3252
+
3253
+ Fixed escaping of quotes in VBScript strings.
3254
+
3255
+
3256
+ ## Version 5.5
3257
+
3258
+ This version brings a small change: now .ini-files allow digits, underscores and
3259
+ square brackets in key names.
3260
+
3261
+
3262
+ ## Version 5.4
3263
+
3264
+ Fixed small but upsetting bug in the packer which caused incorrect highlighting
3265
+ of explicitly specified languages. Thanks to Andrew Fedorov for precise
3266
+ diagnostics!
3267
+
3268
+
3269
+ ## Version 5.3
3270
+
3271
+ The version to fulfil old promises.
3272
+
3273
+ The most significant change is that highlight.js now preserves custom user
3274
+ markup in code along with its own highlighting markup. This means that now it's
3275
+ possible to use, say, links in code. Thanks to [Vladimir Dolzhenko][vd] for the
3276
+ [initial proposal][1] and for making a proof-of-concept patch.
3277
+
3278
+ Also in this version:
3279
+
3280
+ - [Vasily Polovnyov][vp] has sent a GitHub-like style and has implemented
3281
+ support for CSS @-rules and Ruby symbols.
3282
+ - Yura Zaripov has sent two styles: Brown Paper and School Book.
3283
+ - Oleg Volchkov has sent a definition for [Parser 3][p3].
3284
+
3285
+ [1]: http://softwaremaniacs.org/forum/highlightjs/6612/
3286
+ [p3]: http://www.parser.ru/
3287
+ [vp]: http://vasily.polovnyov.ru/
3288
+ [vd]: http://dolzhenko.blogspot.com/
3289
+
3290
+
3291
+ ## Version 5.2
3292
+
3293
+ - at last it's possible to replace indentation TABs with something sensible
3294
+ (e.g. 2 or 4 spaces)
3295
+ - new keywords and built-ins for 1C by Sergey Baranov
3296
+ - a couple of small fixes to Apache highlighting
3297
+
3298
+
3299
+ ## Version 5.1
3300
+
3301
+ This is one of those nice version consisting entirely of new and shiny
3302
+ contributions!
3303
+
3304
+ - [Vladimir Ermakov][vooon] created highlighting for AVR Assembler
3305
+ - [Ruslan Keba][rukeba] created highlighting for Apache config file. Also his
3306
+ original visual style for it is now available for all highlight.js languages
3307
+ under the name "Magula".
3308
+ - [Shuen-Huei Guan][drake] (aka Drake) sent new keywords for RenderMan
3309
+ languages. Also thanks go to [Konstantin Evdokimenko][ke] for his advice on
3310
+ the matter.
3311
+
3312
+ [vooon]: http://vehq.ru/about/
3313
+ [rukeba]: http://rukeba.com/
3314
+ [drake]: http://drakeguan.org/
3315
+ [ke]: http://k-evdokimenko.moikrug.ru/
3316
+
3317
+
3318
+ ## Version 5.0
3319
+
3320
+ The main change in the new major version of highlight.js is a mechanism for
3321
+ packing several languages along with the library itself into a single compressed
3322
+ file. Now sites using several languages will load considerably faster because
3323
+ the library won't dynamically include additional files while loading.
3324
+
3325
+ Also this version fixes a long-standing bug with Javascript highlighting that
3326
+ couldn't distinguish between regular expressions and division operations.
3327
+
3328
+ And as usually there were a couple of minor correctness fixes.
3329
+
3330
+ Great thanks to all contributors! Keep using highlight.js.
3331
+
3332
+
3333
+ ## Version 4.3
3334
+
3335
+ This version comes with two contributions from [Jason Diamond][jd]:
3336
+
3337
+ - language definition for C# (yes! it was a long-missed thing!)
3338
+ - Visual Studio-like highlighting style
3339
+
3340
+ Plus there are a couple of minor bug fixes for parsing HTML and XML attributes.
3341
+
3342
+ [jd]: http://jason.diamond.name/weblog/
3343
+
3344
+
3345
+ ## Version 4.2
3346
+
3347
+ The biggest news is highlighting for Lisp, courtesy of Vasily Polovnyov. It's
3348
+ somewhat experimental meaning that for highlighting "keywords" it doesn't use
3349
+ any pre-defined set of a Lisp dialect. Instead it tries to highlight first word
3350
+ in parentheses wherever it makes sense. I'd like to ask people programming in
3351
+ Lisp to confirm if it's a good idea and send feedback to [the forum][f].
3352
+
3353
+ Other changes:
3354
+
3355
+ - Smalltalk was excluded from DEFAULT_LANGUAGES to save traffic
3356
+ - [Vladimir Epifanov][voldmar] has implemented javascript style switcher for
3357
+ test.html
3358
+ - comments now allowed inside Ruby function definition
3359
+ - [MEL][] language from [Shuen-Huei Guan][drake]
3360
+ - whitespace now allowed between `<pre>` and `<code>`
3361
+ - better auto-detection of C++ and PHP
3362
+ - HTML allows embedded VBScript (`<% .. %>`)
3363
+
3364
+ [f]: http://softwaremaniacs.org/forum/highlightjs/
3365
+ [voldmar]: http://voldmar.ya.ru/
3366
+ [mel]: http://en.wikipedia.org/wiki/Maya_Embedded_Language
3367
+ [drake]: http://drakeguan.org/
3368
+
3369
+
3370
+ ## Version 4.1
3371
+
3372
+ Languages:
3373
+
3374
+ - Bash from Vah
3375
+ - DOS bat-files from Alexander Makarov (Sam)
3376
+ - Diff files from Vasily Polovnyov
3377
+ - Ini files from myself though initial idea was from Sam
3378
+
3379
+ Styles:
3380
+
3381
+ - Zenburn from Vladimir Epifanov, this is an imitation of a
3382
+ [well-known theme for Vim][zenburn].
3383
+ - Ascetic from myself, as a realization of ideals of non-flashy highlighting:
3384
+ just one color in only three gradations :-)
3385
+
3386
+ In other news. [One small bug][bug] was fixed, built-in keywords were added for
3387
+ Python and C++ which improved auto-detection for the latter (it was shame that
3388
+ [my wife's blog][alenacpp] had issues with it from time to time). And lastly
3389
+ thanks go to Sam for getting rid of my stylistic comments in code that were
3390
+ getting in the way of [JSMin][].
3391
+
3392
+ [zenburn]: http://en.wikipedia.org/wiki/Zenburn
3393
+ [alenacpp]: http://alenacpp.blogspot.com/
3394
+ [bug]: http://softwaremaniacs.org/forum/viewtopic.php?id=1823
3395
+ [jsmin]: http://code.google.com/p/jsmin-php/
3396
+
3397
+
3398
+ ## Version 4.0
3399
+
3400
+ New major version is a result of vast refactoring and of many contributions.
3401
+
3402
+ Visible new features:
3403
+
3404
+ - Highlighting of embedded languages. Currently is implemented highlighting of
3405
+ Javascript and CSS inside HTML.
3406
+ - Bundled 5 ready-made style themes!
3407
+
3408
+ Invisible new features:
3409
+
3410
+ - Highlight.js no longer pollutes global namespace. Only one object and one
3411
+ function for backward compatibility.
3412
+ - Performance is further increased by about 15%.
3413
+
3414
+ Changing of a major version number caused by a new format of language definition
3415
+ files. If you use some third-party language files they should be updated.
3416
+
3417
+
3418
+ ## Version 3.5
3419
+
3420
+ A very nice version in my opinion fixing a number of small bugs and slightly
3421
+ increased speed in a couple of corner cases. Thanks to everybody who reports
3422
+ bugs in he [forum][f] and by email!
3423
+
3424
+ There is also a new language — XML. A custom XML formerly was detected as HTML
3425
+ and didn't highlight custom tags. In this version I tried to make custom XML to
3426
+ be detected and highlighted by its own rules. Which by the way include such
3427
+ things as CDATA sections and processing instructions (`<? ... ?>`).
3428
+
3429
+ [f]: http://softwaremaniacs.org/forum/viewforum.php?id=6
3430
+
3431
+
3432
+ ## Version 3.3
3433
+
3434
+ [Vladimir Gubarkov][xonix] has provided an interesting and useful addition.
3435
+ File export.html contains a little program that shows and allows to copy and
3436
+ paste an HTML code generated by the highlighter for any code snippet. This can
3437
+ be useful in situations when one can't use the script itself on a site.
3438
+
3439
+
3440
+ [xonix]: http://xonixx.blogspot.com/
3441
+
3442
+
3443
+ ## Version 3.2 consists completely of contributions:
3444
+
3445
+ - Vladimir Gubarkov has described SmallTalk
3446
+ - Yuri Ivanov has described 1C
3447
+ - Peter Leonov has packaged the highlighter as a Firefox extension
3448
+ - Vladimir Ermakov has compiled a mod for phpBB
3449
+
3450
+ Many thanks to you all!
3451
+
3452
+
3453
+ ## Version 3.1
3454
+
3455
+ Three new languages are available: Django templates, SQL and Axapta. The latter
3456
+ two are sent by [Dmitri Roudakov][1]. However I've almost entirely rewrote an
3457
+ SQL definition but I'd never started it be it from the ground up :-)
3458
+
3459
+ The engine itself has got a long awaited feature of grouping keywords
3460
+ ("keyword", "built-in function", "literal"). No more hacks!
3461
+
3462
+ [1]: http://roudakov.ru/
3463
+
3464
+
3465
+ ## Version 3.0
3466
+
3467
+ It is major mainly because now highlight.js has grown large and has become
3468
+ modular. Now when you pass it a list of languages to highlight it will
3469
+ dynamically load into a browser only those languages.
3470
+
3471
+ Also:
3472
+
3473
+ - Konstantin Evdokimenko of [RibKit][] project has created a highlighting for
3474
+ RenderMan Shading Language and RenderMan Interface Bytestream. Yay for more
3475
+ languages!
3476
+ - Heuristics for C++ and HTML got better.
3477
+ - I've implemented (at last) a correct handling of backslash escapes in C-like
3478
+ languages.
3479
+
3480
+ There is also a small backwards incompatible change in the new version. The
3481
+ function initHighlighting that was used to initialize highlighting instead of
3482
+ initHighlightingOnLoad a long time ago no longer works. If you by chance still
3483
+ use it — replace it with the new one.
3484
+
3485
+ [RibKit]: http://ribkit.sourceforge.net/
3486
+
3487
+
3488
+ ## Version 2.9
3489
+
3490
+ Highlight.js is a parser, not just a couple of regular expressions. That said
3491
+ I'm glad to announce that in the new version 2.9 has support for:
3492
+
3493
+ - in-string substitutions for Ruby -- `#{...}`
3494
+ - strings from from numeric symbol codes (like #XX) for Delphi
3495
+
3496
+
3497
+ ## Version 2.8
3498
+
3499
+ A maintenance release with more tuned heuristics. Fully backwards compatible.
3500
+
3501
+
3502
+ ## Version 2.7
3503
+
3504
+ - Nikita Ledyaev presents highlighting for VBScript, yay!
3505
+ - A couple of bugs with escaping in strings were fixed thanks to Mickle
3506
+ - Ongoing tuning of heuristics
3507
+
3508
+ Fixed bugs were rather unpleasant so I encourage everyone to upgrade!
3509
+
3510
+
3511
+ ## Version 2.4
3512
+
3513
+ - Peter Leonov provides another improved highlighting for Perl
3514
+ - Javascript gets a new kind of keywords — "literals". These are the words
3515
+ "true", "false" and "null"
3516
+
3517
+ Also highlight.js homepage now lists sites that use the library. Feel free to
3518
+ add your site by [dropping me a message][mail] until I find the time to build a
3519
+ submit form.
3520
+
3521
+ [mail]: mailto:Maniac@SoftwareManiacs.Org
3522
+
3523
+
3524
+ ## Version 2.3
3525
+
3526
+ This version fixes IE breakage in previous version. My apologies to all who have
3527
+ already downloaded that one!
3528
+
3529
+
3530
+ ## Version 2.2
3531
+
3532
+ - added highlighting for Javascript
3533
+ - at last fixed parsing of Delphi's escaped apostrophes in strings
3534
+ - in Ruby fixed highlighting of keywords 'def' and 'class', same for 'sub' in
3535
+ Perl
3536
+
3537
+
3538
+ ## Version 2.0
3539
+
3540
+ - Ruby support by [Anton Kovalyov][ak]
3541
+ - speed increased by orders of magnitude due to new way of parsing
3542
+ - this same way allows now correct highlighting of keywords in some tricky
3543
+ places (like keyword "End" at the end of Delphi classes)
3544
+
3545
+ [ak]: http://anton.kovalyov.net/
3546
+
3547
+
3548
+ ## Version 1.0
3549
+
3550
+ Version 1.0 of javascript syntax highlighter is released!
3551
+
3552
+ It's the first version available with English description. Feel free to post
3553
+ your comments and question to [highlight.js forum][forum]. And don't be afraid
3554
+ if you find there some fancy Cyrillic letters -- it's for Russian users too :-)
3555
+
3556
+ [forum]: http://softwaremaniacs.org/forum/viewforum.php?id=6