Showing preview only (4,691K chars total). Download the full file or copy to clipboard to get everything.
Repository: highlightjs/highlight.js
Branch: main
Commit: 5697ae518774
Files: 1875
Total size: 4.2 MB
Directory structure:
gitextract_6r0dturf/
├── .dockerignore
├── .editorconfig
├── .eslintrc.js
├── .eslintrc.lang.js
├── .git-blame-ignore-revs
├── .gitattributes
├── .github/
│ ├── ISSUE_TEMPLATE/
│ │ ├── 1_incorrect-syntax-highlighting.md
│ │ ├── bug_report.md
│ │ ├── config.yml
│ │ ├── feature_request.md
│ │ └── z_request_language_repo.md
│ ├── dependabot.yml
│ ├── pull_request_template.md
│ └── workflows/
│ ├── lint.yml
│ ├── release.yml
│ ├── size_report_comment.yml
│ └── size_report_create.yml
├── .gitignore
├── .mocharc.json
├── .readthedocs.yaml
├── .tokeignore
├── CHANGES.md
├── CONTRIBUTING.md
├── CONTRIBUTORS.md
├── Dockerfile
├── LICENSE
├── MAINTAINERS_GUIDE.md
├── README.CDN.md
├── README.md
├── SECURITY.md
├── SUPPORTED_LANGUAGES.md
├── VERSION_10_BREAKING_CHANGES.md
├── VERSION_10_UPGRADE.md
├── VERSION_11_UPGRADE.md
├── demo/
│ ├── demo.js
│ ├── index.html
│ ├── readme.md
│ └── style.css
├── docs/
│ ├── Makefile
│ ├── _static/
│ │ └── .gitkeep
│ ├── _templates/
│ │ └── .gitkeep
│ ├── api.rst
│ ├── building-testing.rst
│ ├── conf.py
│ ├── css-classes-reference.rst
│ ├── index.rst
│ ├── language-contribution.rst
│ ├── language-guide.rst
│ ├── language-requests.rst
│ ├── line-numbers.rst
│ ├── mode-reference.rst
│ ├── plugin-api.rst
│ ├── plugin-recipes.rst
│ ├── requirements.txt
│ └── theme-guide.rst
├── package.json
├── src/
│ ├── core.d.ts
│ ├── highlight.js
│ ├── languages/
│ │ ├── 1c.js
│ │ ├── abnf.js
│ │ ├── accesslog.js
│ │ ├── actionscript.js
│ │ ├── ada.js
│ │ ├── angelscript.js
│ │ ├── apache.js
│ │ ├── applescript.js
│ │ ├── arcade.js
│ │ ├── arduino.js
│ │ ├── armasm.js
│ │ ├── asciidoc.js
│ │ ├── aspectj.js
│ │ ├── autohotkey.js
│ │ ├── autoit.js
│ │ ├── avrasm.js
│ │ ├── awk.js
│ │ ├── axapta.js
│ │ ├── bash.js
│ │ ├── basic.js
│ │ ├── bnf.js
│ │ ├── brainfuck.js
│ │ ├── c.js
│ │ ├── cal.js
│ │ ├── capnproto.js
│ │ ├── ceylon.js
│ │ ├── clean.js
│ │ ├── clojure-repl.js
│ │ ├── clojure.js
│ │ ├── cmake.js
│ │ ├── coffeescript.js
│ │ ├── coq.js
│ │ ├── cos.js
│ │ ├── cpp.js
│ │ ├── crmsh.js
│ │ ├── crystal.js
│ │ ├── csharp.js
│ │ ├── csp.js
│ │ ├── css.js
│ │ ├── d.js
│ │ ├── dart.js
│ │ ├── delphi.js
│ │ ├── diff.js
│ │ ├── django.js
│ │ ├── dns.js
│ │ ├── dockerfile.js
│ │ ├── dos.js
│ │ ├── dsconfig.js
│ │ ├── dts.js
│ │ ├── dust.js
│ │ ├── ebnf.js
│ │ ├── elixir.js
│ │ ├── elm.js
│ │ ├── erb.js
│ │ ├── erlang-repl.js
│ │ ├── erlang.js
│ │ ├── excel.js
│ │ ├── fix.js
│ │ ├── flix.js
│ │ ├── fortran.js
│ │ ├── fsharp.js
│ │ ├── gams.js
│ │ ├── gauss.js
│ │ ├── gcode.js
│ │ ├── gherkin.js
│ │ ├── glsl.js
│ │ ├── gml.js
│ │ ├── go.js
│ │ ├── golo.js
│ │ ├── gradle.js
│ │ ├── graphql.js
│ │ ├── groovy.js
│ │ ├── haml.js
│ │ ├── handlebars.js
│ │ ├── haskell.js
│ │ ├── haxe.js
│ │ ├── hsp.js
│ │ ├── http.js
│ │ ├── hy.js
│ │ ├── inform7.js
│ │ ├── ini.js
│ │ ├── irpf90.js
│ │ ├── isbl.js
│ │ ├── java.js
│ │ ├── javascript.js
│ │ ├── jboss-cli.js
│ │ ├── json.js
│ │ ├── julia-repl.js
│ │ ├── julia.js
│ │ ├── kotlin.js
│ │ ├── lasso.js
│ │ ├── latex.js
│ │ ├── ldif.js
│ │ ├── leaf.js
│ │ ├── less.js
│ │ ├── lib/
│ │ │ ├── css-shared.js
│ │ │ ├── ecmascript.js
│ │ │ ├── java.js
│ │ │ ├── kws_swift.js
│ │ │ └── mathematica.js
│ │ ├── lisp.js
│ │ ├── livecodeserver.js
│ │ ├── livescript.js
│ │ ├── llvm.js
│ │ ├── lsl.js
│ │ ├── lua.js
│ │ ├── makefile.js
│ │ ├── markdown.js
│ │ ├── mathematica.js
│ │ ├── matlab.js
│ │ ├── maxima.js
│ │ ├── mel.js
│ │ ├── mercury.js
│ │ ├── mipsasm.js
│ │ ├── mizar.js
│ │ ├── mojolicious.js
│ │ ├── monkey.js
│ │ ├── moonscript.js
│ │ ├── n1ql.js
│ │ ├── nestedtext.js
│ │ ├── nginx.js
│ │ ├── nim.js
│ │ ├── nix.js
│ │ ├── node-repl.js
│ │ ├── nsis.js
│ │ ├── objectivec.js
│ │ ├── ocaml.js
│ │ ├── openscad.js
│ │ ├── oxygene.js
│ │ ├── parser3.js
│ │ ├── perl.js
│ │ ├── pf.js
│ │ ├── pgsql.js
│ │ ├── php-template.js
│ │ ├── php.js
│ │ ├── plaintext.js
│ │ ├── pony.js
│ │ ├── powershell.js
│ │ ├── processing.js
│ │ ├── profile.js
│ │ ├── prolog.js
│ │ ├── properties.js
│ │ ├── protobuf.js
│ │ ├── puppet.js
│ │ ├── purebasic.js
│ │ ├── python-repl.js
│ │ ├── python.js
│ │ ├── q.js
│ │ ├── qml.js
│ │ ├── r.js
│ │ ├── reasonml.js
│ │ ├── rib.js
│ │ ├── roboconf.js
│ │ ├── routeros.js
│ │ ├── rsl.js
│ │ ├── ruby.js
│ │ ├── ruleslanguage.js
│ │ ├── rust.js
│ │ ├── sas.js
│ │ ├── scala.js
│ │ ├── scheme.js
│ │ ├── scilab.js
│ │ ├── scss.js
│ │ ├── shell.js
│ │ ├── smali.js
│ │ ├── smalltalk.js
│ │ ├── sml.js
│ │ ├── sqf.js
│ │ ├── sql.js
│ │ ├── stan.js
│ │ ├── stata.js
│ │ ├── step21.js
│ │ ├── stylus.js
│ │ ├── subunit.js
│ │ ├── swift.js
│ │ ├── taggerscript.js
│ │ ├── tap.js
│ │ ├── tcl.js
│ │ ├── thrift.js
│ │ ├── tp.js
│ │ ├── twig.js
│ │ ├── typescript.js
│ │ ├── vala.js
│ │ ├── vbnet.js
│ │ ├── vbscript-html.js
│ │ ├── vbscript.js
│ │ ├── verilog.js
│ │ ├── vhdl.js
│ │ ├── vim.js
│ │ ├── wasm.js
│ │ ├── wren.js
│ │ ├── x86asm.js
│ │ ├── xl.js
│ │ ├── xml.js
│ │ ├── xquery.js
│ │ ├── yaml.js
│ │ └── zephir.js
│ ├── lib/
│ │ ├── compile_keywords.js
│ │ ├── compiler_extensions.js
│ │ ├── ext/
│ │ │ └── multi_class.js
│ │ ├── exts/
│ │ │ └── before_match.js
│ │ ├── html_injection_error.js
│ │ ├── html_renderer.js
│ │ ├── logger.js
│ │ ├── mode_compiler.js
│ │ ├── modes.js
│ │ ├── regex.js
│ │ ├── response.js
│ │ ├── token_tree.js
│ │ └── utils.js
│ ├── stub.js
│ └── styles/
│ ├── 1c-light.css
│ ├── a11y-dark.css
│ ├── a11y-light.css
│ ├── agate.css
│ ├── an-old-hope.css
│ ├── androidstudio.css
│ ├── arduino-light.css
│ ├── arta.css
│ ├── ascetic.css
│ ├── atom-one-dark-reasonable.css
│ ├── atom-one-dark.css
│ ├── atom-one-light.css
│ ├── base16/
│ │ ├── 3024.css
│ │ ├── apathy.css
│ │ ├── apprentice.css
│ │ ├── ashes.css
│ │ ├── atelier-cave-light.css
│ │ ├── atelier-cave.css
│ │ ├── atelier-dune-light.css
│ │ ├── atelier-dune.css
│ │ ├── atelier-estuary-light.css
│ │ ├── atelier-estuary.css
│ │ ├── atelier-forest-light.css
│ │ ├── atelier-forest.css
│ │ ├── atelier-heath-light.css
│ │ ├── atelier-heath.css
│ │ ├── atelier-lakeside-light.css
│ │ ├── atelier-lakeside.css
│ │ ├── atelier-plateau-light.css
│ │ ├── atelier-plateau.css
│ │ ├── atelier-savanna-light.css
│ │ ├── atelier-savanna.css
│ │ ├── atelier-seaside-light.css
│ │ ├── atelier-seaside.css
│ │ ├── atelier-sulphurpool-light.css
│ │ ├── atelier-sulphurpool.css
│ │ ├── atlas.css
│ │ ├── bespin.css
│ │ ├── black-metal-bathory.css
│ │ ├── black-metal-burzum.css
│ │ ├── black-metal-dark-funeral.css
│ │ ├── black-metal-gorgoroth.css
│ │ ├── black-metal-immortal.css
│ │ ├── black-metal-khold.css
│ │ ├── black-metal-marduk.css
│ │ ├── black-metal-mayhem.css
│ │ ├── black-metal-nile.css
│ │ ├── black-metal-venom.css
│ │ ├── black-metal.css
│ │ ├── brewer.css
│ │ ├── bright.css
│ │ ├── brogrammer.css
│ │ ├── brush-trees-dark.css
│ │ ├── brush-trees.css
│ │ ├── chalk.css
│ │ ├── circus.css
│ │ ├── classic-dark.css
│ │ ├── classic-light.css
│ │ ├── codeschool.css
│ │ ├── colors.css
│ │ ├── cupcake.css
│ │ ├── cupertino.css
│ │ ├── danqing.css
│ │ ├── darcula.css
│ │ ├── dark-violet.css
│ │ ├── darkmoss.css
│ │ ├── darktooth.css
│ │ ├── decaf.css
│ │ ├── default-dark.css
│ │ ├── default-light.css
│ │ ├── dirtysea.css
│ │ ├── dracula.css
│ │ ├── edge-dark.css
│ │ ├── edge-light.css
│ │ ├── eighties.css
│ │ ├── embers.css
│ │ ├── equilibrium-dark.css
│ │ ├── equilibrium-gray-dark.css
│ │ ├── equilibrium-gray-light.css
│ │ ├── equilibrium-light.css
│ │ ├── espresso.css
│ │ ├── eva-dim.css
│ │ ├── eva.css
│ │ ├── flat.css
│ │ ├── framer.css
│ │ ├── fruit-soda.css
│ │ ├── gigavolt.css
│ │ ├── github.css
│ │ ├── google-dark.css
│ │ ├── google-light.css
│ │ ├── grayscale-dark.css
│ │ ├── grayscale-light.css
│ │ ├── green-screen.css
│ │ ├── gruvbox-dark-hard.css
│ │ ├── gruvbox-dark-medium.css
│ │ ├── gruvbox-dark-pale.css
│ │ ├── gruvbox-dark-soft.css
│ │ ├── gruvbox-light-hard.css
│ │ ├── gruvbox-light-medium.css
│ │ ├── gruvbox-light-soft.css
│ │ ├── hardcore.css
│ │ ├── harmonic16-dark.css
│ │ ├── harmonic16-light.css
│ │ ├── heetch-dark.css
│ │ ├── heetch-light.css
│ │ ├── helios.css
│ │ ├── hopscotch.css
│ │ ├── horizon-dark.css
│ │ ├── horizon-light.css
│ │ ├── humanoid-dark.css
│ │ ├── humanoid-light.css
│ │ ├── ia-dark.css
│ │ ├── ia-light.css
│ │ ├── icy-dark.css
│ │ ├── ir-black.css
│ │ ├── isotope.css
│ │ ├── kimber.css
│ │ ├── london-tube.css
│ │ ├── macintosh.css
│ │ ├── marrakesh.css
│ │ ├── materia.css
│ │ ├── material-darker.css
│ │ ├── material-lighter.css
│ │ ├── material-palenight.css
│ │ ├── material-vivid.css
│ │ ├── material.css
│ │ ├── mellow-purple.css
│ │ ├── mexico-light.css
│ │ ├── mocha.css
│ │ ├── monokai.css
│ │ ├── nebula.css
│ │ ├── nord.css
│ │ ├── nova.css
│ │ ├── ocean.css
│ │ ├── oceanicnext.css
│ │ ├── one-light.css
│ │ ├── onedark.css
│ │ ├── outrun-dark.css
│ │ ├── papercolor-dark.css
│ │ ├── papercolor-light.css
│ │ ├── paraiso.css
│ │ ├── pasque.css
│ │ ├── phd.css
│ │ ├── pico.css
│ │ ├── pop.css
│ │ ├── porple.css
│ │ ├── qualia.css
│ │ ├── railscasts.css
│ │ ├── rebecca.css
│ │ ├── ros-pine-dawn.css
│ │ ├── ros-pine-moon.css
│ │ ├── ros-pine.css
│ │ ├── sagelight.css
│ │ ├── sandcastle.css
│ │ ├── seti-ui.css
│ │ ├── shapeshifter.css
│ │ ├── silk-dark.css
│ │ ├── silk-light.css
│ │ ├── snazzy.css
│ │ ├── solar-flare-light.css
│ │ ├── solar-flare.css
│ │ ├── solarized-dark.css
│ │ ├── solarized-light.css
│ │ ├── spacemacs.css
│ │ ├── summercamp.css
│ │ ├── summerfruit-dark.css
│ │ ├── summerfruit-light.css
│ │ ├── synth-midnight-terminal-dark.css
│ │ ├── synth-midnight-terminal-light.css
│ │ ├── tango.css
│ │ ├── tender.css
│ │ ├── tomorrow-night.css
│ │ ├── tomorrow.css
│ │ ├── twilight.css
│ │ ├── unikitty-dark.css
│ │ ├── unikitty-light.css
│ │ ├── vulcan.css
│ │ ├── windows-10-light.css
│ │ ├── windows-10.css
│ │ ├── windows-95-light.css
│ │ ├── windows-95.css
│ │ ├── windows-high-contrast-light.css
│ │ ├── windows-high-contrast.css
│ │ ├── windows-nt-light.css
│ │ ├── windows-nt.css
│ │ ├── woodland.css
│ │ ├── xcode-dusk.css
│ │ └── zenburn.css
│ ├── brown-paper.css
│ ├── codepen-embed.css
│ ├── color-brewer.css
│ ├── cybertopia-cherry.css
│ ├── cybertopia-dimmer.css
│ ├── cybertopia-icecap.css
│ ├── cybertopia-saturated.css
│ ├── dark.css
│ ├── default.css
│ ├── devibeans.css
│ ├── docco.css
│ ├── far.css
│ ├── felipec.css
│ ├── foundation.css
│ ├── github-dark-dimmed.css
│ ├── github-dark.css
│ ├── github.css
│ ├── gml.css
│ ├── googlecode.css
│ ├── gradient-dark.css
│ ├── gradient-light.css
│ ├── grayscale.css
│ ├── hybrid.css
│ ├── idea.css
│ ├── intellij-light.css
│ ├── ir-black.css
│ ├── isbl-editor-dark.css
│ ├── isbl-editor-light.css
│ ├── kimbie-dark.css
│ ├── kimbie-light.css
│ ├── lightfair.css
│ ├── lioshi.css
│ ├── magula.css
│ ├── mono-blue.css
│ ├── monokai-sublime.css
│ ├── monokai.css
│ ├── night-owl.css
│ ├── nnfx-dark.css
│ ├── nnfx-light.css
│ ├── nord.css
│ ├── obsidian.css
│ ├── panda-syntax-dark.css
│ ├── panda-syntax-light.css
│ ├── paraiso-dark.css
│ ├── paraiso-light.css
│ ├── pojoaque.css
│ ├── purebasic.css
│ ├── qtcreator-dark.css
│ ├── qtcreator-light.css
│ ├── rainbow.css
│ ├── rose-pine-dawn.css
│ ├── rose-pine-moon.css
│ ├── rose-pine.css
│ ├── routeros.css
│ ├── school-book.css
│ ├── shades-of-purple.css
│ ├── srcery.css
│ ├── stackoverflow-dark.css
│ ├── stackoverflow-light.css
│ ├── sunburst.css
│ ├── tokyo-night-dark.css
│ ├── tokyo-night-light.css
│ ├── tomorrow-night-blue.css
│ ├── tomorrow-night-bright.css
│ ├── vs-dark.css
│ ├── vs.css
│ ├── vs2015.css
│ ├── xcode.css
│ └── xt256.css
├── test/
│ ├── api/
│ │ ├── autoDetection.js
│ │ ├── beginKeywords.js
│ │ ├── binaryNumber.js
│ │ ├── cNumber.js
│ │ ├── getLanguage.js
│ │ ├── highlight.js
│ │ ├── ident.js
│ │ ├── index.js
│ │ ├── keywords.js
│ │ ├── multiClassMatch.js
│ │ ├── number.js
│ │ ├── registerAlias.js
│ │ ├── starters.js
│ │ ├── underscoreIdent.js
│ │ └── unregisterLanguage.js
│ ├── browser/
│ │ ├── highlight_block_callbacks.js
│ │ ├── index.js
│ │ ├── plain.js
│ │ └── worker.js
│ ├── builds/
│ │ ├── browser_build_as_commonjs.js
│ │ ├── cdn_build_as_esm.mjs
│ │ ├── node_build_as_esm.mjs
│ │ ├── package.js
│ │ ├── rollup_import_cdn_build_esm.mjs
│ │ ├── rollup_import_node_build_esm.mjs
│ │ └── rollup_import_via_commonjs.mjs
│ ├── detect/
│ │ ├── 1c/
│ │ │ └── default.txt
│ │ ├── abnf/
│ │ │ └── default.txt
│ │ ├── accesslog/
│ │ │ └── default.txt
│ │ ├── actionscript/
│ │ │ └── default.txt
│ │ ├── ada/
│ │ │ └── default.txt
│ │ ├── angelscript/
│ │ │ └── default.txt
│ │ ├── apache/
│ │ │ └── default.txt
│ │ ├── applescript/
│ │ │ └── default.txt
│ │ ├── arcade/
│ │ │ └── default.txt
│ │ ├── arduino/
│ │ │ └── default.txt
│ │ ├── armasm/
│ │ │ └── default.txt
│ │ ├── asciidoc/
│ │ │ └── default.txt
│ │ ├── aspectj/
│ │ │ └── default.txt
│ │ ├── autohotkey/
│ │ │ └── default.txt
│ │ ├── autoit/
│ │ │ └── default.txt
│ │ ├── avrasm/
│ │ │ └── default.txt
│ │ ├── awk/
│ │ │ └── default.txt
│ │ ├── axapta/
│ │ │ └── default.txt
│ │ ├── bash/
│ │ │ └── default.txt
│ │ ├── basic/
│ │ │ └── default.txt
│ │ ├── bnf/
│ │ │ └── default.txt
│ │ ├── brainfuck/
│ │ │ └── default.txt
│ │ ├── cal/
│ │ │ └── default.txt
│ │ ├── capnproto/
│ │ │ └── default.txt
│ │ ├── ceylon/
│ │ │ └── default.txt
│ │ ├── clean/
│ │ │ └── default.txt
│ │ ├── clojure/
│ │ │ └── default.txt
│ │ ├── clojure-repl/
│ │ │ └── default.txt
│ │ ├── cmake/
│ │ │ └── default.txt
│ │ ├── coffeescript/
│ │ │ └── default.txt
│ │ ├── coq/
│ │ │ └── default.txt
│ │ ├── cos/
│ │ │ └── default.txt
│ │ ├── cpp/
│ │ │ └── default.txt
│ │ ├── crmsh/
│ │ │ └── default.txt
│ │ ├── crystal/
│ │ │ └── default.txt
│ │ ├── csharp/
│ │ │ └── default.txt
│ │ ├── csp/
│ │ │ └── default.txt
│ │ ├── css/
│ │ │ └── default.txt
│ │ ├── d/
│ │ │ └── default.txt
│ │ ├── dart/
│ │ │ └── default.txt
│ │ ├── delphi/
│ │ │ └── default.txt
│ │ ├── diff/
│ │ │ └── default.txt
│ │ ├── django/
│ │ │ └── default.txt
│ │ ├── dns/
│ │ │ └── default.txt
│ │ ├── dockerfile/
│ │ │ └── default.txt
│ │ ├── dos/
│ │ │ └── default.txt
│ │ ├── dsconfig/
│ │ │ └── default.txt
│ │ ├── dts/
│ │ │ └── default.txt
│ │ ├── dust/
│ │ │ └── default.txt
│ │ ├── ebnf/
│ │ │ └── default.txt
│ │ ├── elixir/
│ │ │ └── default.txt
│ │ ├── elm/
│ │ │ └── default.txt
│ │ ├── erb/
│ │ │ └── default.txt
│ │ ├── erlang/
│ │ │ └── default.txt
│ │ ├── erlang-repl/
│ │ │ └── default.txt
│ │ ├── excel/
│ │ │ └── default.txt
│ │ ├── fix/
│ │ │ └── default.txt
│ │ ├── flix/
│ │ │ └── default.txt
│ │ ├── fortran/
│ │ │ └── default.txt
│ │ ├── fsharp/
│ │ │ └── default.txt
│ │ ├── gams/
│ │ │ └── default.txt
│ │ ├── gauss/
│ │ │ └── default.txt
│ │ ├── gcode/
│ │ │ └── default.txt
│ │ ├── gherkin/
│ │ │ └── default.txt
│ │ ├── glsl/
│ │ │ └── default.txt
│ │ ├── gml/
│ │ │ └── default.txt
│ │ ├── go/
│ │ │ ├── default.txt
│ │ │ └── swift-like.txt
│ │ ├── golo/
│ │ │ └── default.txt
│ │ ├── gradle/
│ │ │ └── default.txt
│ │ ├── graphql/
│ │ │ └── default.txt
│ │ ├── groovy/
│ │ │ └── default.txt
│ │ ├── haml/
│ │ │ └── default.txt
│ │ ├── handlebars/
│ │ │ └── default.txt
│ │ ├── haskell/
│ │ │ └── default.txt
│ │ ├── haxe/
│ │ │ └── default.txt
│ │ ├── hsp/
│ │ │ └── default.txt
│ │ ├── http/
│ │ │ └── default.txt
│ │ ├── hy/
│ │ │ └── default.txt
│ │ ├── index.js
│ │ ├── inform7/
│ │ │ └── default.txt
│ │ ├── ini/
│ │ │ └── default.txt
│ │ ├── irpf90/
│ │ │ └── default.txt
│ │ ├── isbl/
│ │ │ └── default.txt
│ │ ├── java/
│ │ │ └── default.txt
│ │ ├── javascript/
│ │ │ ├── default.txt
│ │ │ ├── sample1.txt
│ │ │ └── short-plain.txt
│ │ ├── jboss-cli/
│ │ │ └── default.txt
│ │ ├── json/
│ │ │ └── default.txt
│ │ ├── json5/
│ │ │ └── default.txt
│ │ ├── julia/
│ │ │ └── default.txt
│ │ ├── julia-repl/
│ │ │ └── default.txt
│ │ ├── kotlin/
│ │ │ └── default.txt
│ │ ├── lasso/
│ │ │ └── default.txt
│ │ ├── latex/
│ │ │ └── default.txt
│ │ ├── ldif/
│ │ │ └── default.txt
│ │ ├── leaf/
│ │ │ └── default.txt
│ │ ├── less/
│ │ │ └── default.txt
│ │ ├── lisp/
│ │ │ └── default.txt
│ │ ├── livecodeserver/
│ │ │ └── default.txt
│ │ ├── livescript/
│ │ │ └── default.txt
│ │ ├── llvm/
│ │ │ └── default.txt
│ │ ├── lsl/
│ │ │ └── default.txt
│ │ ├── lua/
│ │ │ └── default.txt
│ │ ├── makefile/
│ │ │ └── default.txt
│ │ ├── markdown/
│ │ │ └── default.txt
│ │ ├── mathematica/
│ │ │ └── default.txt
│ │ ├── matlab/
│ │ │ └── default.txt
│ │ ├── maxima/
│ │ │ └── default.txt
│ │ ├── mel/
│ │ │ └── default.txt
│ │ ├── mercury/
│ │ │ └── default.txt
│ │ ├── mipsasm/
│ │ │ └── default.txt
│ │ ├── mizar/
│ │ │ └── default.txt
│ │ ├── mojolicious/
│ │ │ └── default.txt
│ │ ├── monkey/
│ │ │ └── default.txt
│ │ ├── moonscript/
│ │ │ └── default.txt
│ │ ├── n1ql/
│ │ │ └── default.txt
│ │ ├── nestedtext/
│ │ │ └── default.txt
│ │ ├── nginx/
│ │ │ └── default.txt
│ │ ├── nim/
│ │ │ └── default.txt
│ │ ├── nix/
│ │ │ └── default.txt
│ │ ├── node-repl/
│ │ │ └── default.txt
│ │ ├── nsis/
│ │ │ └── default.txt
│ │ ├── objectivec/
│ │ │ └── default.txt
│ │ ├── ocaml/
│ │ │ └── default.txt
│ │ ├── openscad/
│ │ │ └── default.txt
│ │ ├── oxygene/
│ │ │ └── default.txt
│ │ ├── parser3/
│ │ │ └── default.txt
│ │ ├── perl/
│ │ │ └── default.txt
│ │ ├── pf/
│ │ │ └── default.txt
│ │ ├── pgsql/
│ │ │ └── default.txt
│ │ ├── php/
│ │ │ └── default.txt
│ │ ├── php-template/
│ │ │ └── default.txt
│ │ ├── plaintext/
│ │ │ └── default.txt
│ │ ├── pony/
│ │ │ └── default.txt
│ │ ├── powershell/
│ │ │ └── default.txt
│ │ ├── processing/
│ │ │ └── default.txt
│ │ ├── profile/
│ │ │ └── default.txt
│ │ ├── prolog/
│ │ │ └── default.txt
│ │ ├── properties/
│ │ │ └── default.txt
│ │ ├── protobuf/
│ │ │ └── default.txt
│ │ ├── puppet/
│ │ │ └── default.txt
│ │ ├── purebasic/
│ │ │ └── default.txt
│ │ ├── python/
│ │ │ └── default.txt
│ │ ├── python-repl/
│ │ │ └── default.txt
│ │ ├── q/
│ │ │ └── default.txt
│ │ ├── qml/
│ │ │ └── default.txt
│ │ ├── r/
│ │ │ └── default.txt
│ │ ├── reasonml/
│ │ │ └── default.txt
│ │ ├── rib/
│ │ │ └── default.txt
│ │ ├── roboconf/
│ │ │ └── default.txt
│ │ ├── routeros/
│ │ │ └── default.txt
│ │ ├── rsl/
│ │ │ └── default.txt
│ │ ├── ruby/
│ │ │ ├── default.txt
│ │ │ └── double-colon.txt
│ │ ├── ruleslanguage/
│ │ │ └── default.txt
│ │ ├── rust/
│ │ │ └── default.txt
│ │ ├── sas/
│ │ │ └── default.txt
│ │ ├── scala/
│ │ │ └── default.txt
│ │ ├── scheme/
│ │ │ └── default.txt
│ │ ├── scilab/
│ │ │ └── default.txt
│ │ ├── scss/
│ │ │ └── default.txt
│ │ ├── shell/
│ │ │ └── default.txt
│ │ ├── smali/
│ │ │ └── default.txt
│ │ ├── smalltalk/
│ │ │ └── default.txt
│ │ ├── sml/
│ │ │ └── default.txt
│ │ ├── sqf/
│ │ │ └── default.txt
│ │ ├── sql/
│ │ │ └── default.txt
│ │ ├── stan/
│ │ │ └── default.txt
│ │ ├── stata/
│ │ │ └── default.txt
│ │ ├── step21/
│ │ │ └── default.txt
│ │ ├── stylus/
│ │ │ └── default.txt
│ │ ├── subunit/
│ │ │ └── default.txt
│ │ ├── swift/
│ │ │ └── default.txt
│ │ ├── taggerscript/
│ │ │ └── default.txt
│ │ ├── tap/
│ │ │ └── default.txt
│ │ ├── tcl/
│ │ │ └── default.txt
│ │ ├── thrift/
│ │ │ └── default.txt
│ │ ├── tp/
│ │ │ └── default.txt
│ │ ├── twig/
│ │ │ └── default.txt
│ │ ├── typescript/
│ │ │ └── default.txt
│ │ ├── vala/
│ │ │ └── default.txt
│ │ ├── vbnet/
│ │ │ └── default.txt
│ │ ├── vbscript/
│ │ │ └── default.txt
│ │ ├── vbscript-html/
│ │ │ └── default.txt
│ │ ├── verilog/
│ │ │ └── default.txt
│ │ ├── vhdl/
│ │ │ └── default.txt
│ │ ├── vim/
│ │ │ └── default.txt
│ │ ├── wasm/
│ │ │ └── default.txt
│ │ ├── wren/
│ │ │ └── default.txt
│ │ ├── x86asm/
│ │ │ └── default.txt
│ │ ├── xl/
│ │ │ └── default.txt
│ │ ├── xml/
│ │ │ ├── default.txt
│ │ │ ├── groovy-julia.txt
│ │ │ └── js.txt
│ │ ├── xquery/
│ │ │ └── default.txt
│ │ ├── yaml/
│ │ │ └── default.txt
│ │ └── zephir/
│ │ └── default.txt
│ ├── fixtures/
│ │ ├── expect/
│ │ │ ├── endsWithParentVariants.txt
│ │ │ ├── explicit1.txt
│ │ │ ├── explicit2.txt
│ │ │ ├── languagealias.txt
│ │ │ ├── sublanguages.txt
│ │ │ └── useBr.txt
│ │ ├── index.html
│ │ └── nested.js
│ ├── index.js
│ ├── markup/
│ │ ├── 1c/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── abnf/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── accesslog/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── actionscript/
│ │ │ ├── method-call.expect.txt
│ │ │ └── method-call.txt
│ │ ├── ada/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── angelscript/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── apache/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── applescript/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── arcade/
│ │ │ ├── profile.expect.txt
│ │ │ └── profile.txt
│ │ ├── arduino/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── armasm/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── asciidoc/
│ │ │ ├── constrained.expect.txt
│ │ │ ├── constrained.txt
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── unconstrained.expect.txt
│ │ │ └── unconstrained.txt
│ │ ├── aspectj/
│ │ │ ├── intertype-constructor.expect.txt
│ │ │ ├── intertype-constructor.txt
│ │ │ ├── intertype-method.expect.txt
│ │ │ └── intertype-method.txt
│ │ ├── autohotkey/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── autoit/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── avrasm/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── awk/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── axapta/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── bash/
│ │ │ ├── arithmetic.expect.txt
│ │ │ ├── arithmetic.txt
│ │ │ ├── escaped-apos.expect.txt
│ │ │ ├── escaped-apos.txt
│ │ │ ├── escaped-quote.expect.txt
│ │ │ ├── escaped-quote.txt
│ │ │ ├── no-numbers.expect.txt
│ │ │ ├── no-numbers.txt
│ │ │ ├── not-comments.expect.txt
│ │ │ ├── not-comments.txt
│ │ │ ├── strings.expect.txt
│ │ │ ├── strings.txt
│ │ │ ├── token-containing-keyword.expect.txt
│ │ │ ├── token-containing-keyword.txt
│ │ │ ├── variables.expect.txt
│ │ │ └── variables.txt
│ │ ├── basic/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── bnf/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── brainfuck/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── c/
│ │ │ ├── number-literals.expect.txt
│ │ │ └── number-literals.txt
│ │ ├── cal/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── capnproto/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── ceylon/
│ │ │ ├── nested-comments.expect.txt
│ │ │ └── nested-comments.txt
│ │ ├── clean/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── clojure/
│ │ │ ├── character.expect.txt
│ │ │ ├── character.txt
│ │ │ ├── comment-macro.expect.txt
│ │ │ ├── comment-macro.txt
│ │ │ ├── deps_edn.expect.txt
│ │ │ ├── deps_edn.txt
│ │ │ ├── globals_definition.expect.txt
│ │ │ ├── globals_definition.txt
│ │ │ ├── number.expect.txt
│ │ │ ├── number.txt
│ │ │ ├── symbols-numbers.expect.txt
│ │ │ └── symbols-numbers.txt
│ │ ├── clojure-repl/
│ │ │ ├── prompt.expect.txt
│ │ │ └── prompt.txt
│ │ ├── cmake/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── coffeescript/
│ │ │ ├── division.expect.txt
│ │ │ ├── division.txt
│ │ │ ├── freeze_bug.expect.txt
│ │ │ ├── freeze_bug.txt
│ │ │ ├── function.expect.txt
│ │ │ ├── function.txt
│ │ │ ├── regex.expect.txt
│ │ │ └── regex.txt
│ │ ├── coq/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── cos/
│ │ │ ├── basic.expect.txt
│ │ │ ├── basic.txt
│ │ │ ├── embedded.expect.txt
│ │ │ └── embedded.txt
│ │ ├── cpp/
│ │ │ ├── bitwise-keywords.expect.txt
│ │ │ ├── bitwise-keywords.txt
│ │ │ ├── bugs.expect.txt
│ │ │ ├── bugs.txt
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── expression-keywords.expect.txt
│ │ │ ├── expression-keywords.txt
│ │ │ ├── function-declarations.expect.txt
│ │ │ ├── function-declarations.txt
│ │ │ ├── function-like-keywords.expect.txt
│ │ │ ├── function-like-keywords.txt
│ │ │ ├── function-params.expect.txt
│ │ │ ├── function-params.txt
│ │ │ ├── function-title.expect.txt
│ │ │ ├── function-title.txt
│ │ │ ├── initializers.expect.txt
│ │ │ ├── initializers.txt
│ │ │ ├── number-literals.expect.txt
│ │ │ ├── number-literals.txt
│ │ │ ├── pointers-returns.expect.txt
│ │ │ ├── pointers-returns.txt
│ │ │ ├── preprocessor.expect.txt
│ │ │ ├── preprocessor.txt
│ │ │ ├── primitive-types.expect.txt
│ │ │ ├── primitive-types.txt
│ │ │ ├── string-literals.expect.txt
│ │ │ ├── string-literals.txt
│ │ │ ├── template-complexity.expect.txt
│ │ │ ├── template-complexity.txt
│ │ │ ├── truncated-raw-string.expect.txt
│ │ │ └── truncated-raw-string.txt
│ │ ├── crmsh/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── crystal/
│ │ │ ├── defs.expect.txt
│ │ │ ├── defs.txt
│ │ │ ├── literals.expect.txt
│ │ │ ├── literals.txt
│ │ │ ├── macro.expect.txt
│ │ │ ├── macro.txt
│ │ │ ├── operators.expect.txt
│ │ │ ├── operators.txt
│ │ │ ├── regexes.expect.txt
│ │ │ ├── regexes.txt
│ │ │ ├── toplevel-keywords.expect.txt
│ │ │ └── toplevel-keywords.txt
│ │ ├── csharp/
│ │ │ ├── dotted-namespace.expect.txt
│ │ │ ├── dotted-namespace.txt
│ │ │ ├── floats.expect.txt
│ │ │ ├── floats.txt
│ │ │ ├── functions.expect.txt
│ │ │ ├── functions.txt
│ │ │ ├── generic_modifiers.expect.txt
│ │ │ ├── generic_modifiers.txt
│ │ │ ├── identifiers.expect.txt
│ │ │ ├── identifiers.txt
│ │ │ ├── records.expect.txt
│ │ │ ├── records.txt
│ │ │ ├── scoped.expect.txt
│ │ │ ├── scoped.txt
│ │ │ ├── string-interpolation.expect.txt
│ │ │ ├── string-interpolation.txt
│ │ │ ├── string-raw.expect.txt
│ │ │ ├── string-raw.txt
│ │ │ ├── titles.expect.txt
│ │ │ ├── titles.txt
│ │ │ ├── try-catch.expect.txt
│ │ │ └── try-catch.txt
│ │ ├── csp/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── css/
│ │ │ ├── css_consistency.expect.txt
│ │ │ ├── css_consistency.txt
│ │ │ ├── hex-colors.expect.txt
│ │ │ ├── hex-colors.txt
│ │ │ ├── pseudo-selector.expect.txt
│ │ │ ├── pseudo-selector.txt
│ │ │ ├── pseudo.expect.txt
│ │ │ ├── pseudo.txt
│ │ │ ├── sample.expect.txt
│ │ │ ├── sample.txt
│ │ │ ├── url.expect.txt
│ │ │ ├── url.txt
│ │ │ ├── variables.expect.txt
│ │ │ └── variables.txt
│ │ ├── d/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── dart/
│ │ │ ├── comment-markdown.expect.txt
│ │ │ ├── comment-markdown.txt
│ │ │ ├── string-interpolation.expect.txt
│ │ │ └── string-interpolation.txt
│ │ ├── delphi/
│ │ │ ├── character-string.expect.txt
│ │ │ ├── character-string.txt
│ │ │ ├── compiler-directive.expect.txt
│ │ │ ├── compiler-directive.txt
│ │ │ ├── numeric-literal.expect.txt
│ │ │ └── numeric-literal.txt
│ │ ├── diff/
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── git-format-patch.expect.txt
│ │ │ └── git-format-patch.txt
│ │ ├── django/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── dns/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── dockerfile/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── dos/
│ │ │ ├── comments.expect.txt
│ │ │ └── comments.txt
│ │ ├── dsconfig/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── dts/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── dust/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── ebnf/
│ │ │ ├── quote-symbols.expect.txt
│ │ │ ├── quote-symbols.txt
│ │ │ ├── terminators.expect.txt
│ │ │ ├── terminators.txt
│ │ │ ├── underscore-production.expect.txt
│ │ │ └── underscore-production.txt
│ │ ├── elixir/
│ │ │ ├── char-literal.expect.txt
│ │ │ ├── char-literal.txt
│ │ │ ├── conditionals.expect.txt
│ │ │ ├── conditionals.txt
│ │ │ ├── function-not-regex.expect.txt
│ │ │ ├── function-not-regex.txt
│ │ │ ├── function-title.expect.txt
│ │ │ ├── function-title.txt
│ │ │ ├── module-references.expect.txt
│ │ │ ├── module-references.txt
│ │ │ ├── modules.expect.txt
│ │ │ ├── modules.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── sigils.expect.txt
│ │ │ ├── sigils.txt
│ │ │ ├── strings.expect.txt
│ │ │ ├── strings.txt
│ │ │ ├── uppercase-string-sigil.expect.txt
│ │ │ └── uppercase-string-sigil.txt
│ │ ├── elm/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── erb/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── erlang/
│ │ │ ├── char_literal.expect.txt
│ │ │ ├── char_literal.txt
│ │ │ ├── doc_attribute.expect.txt
│ │ │ ├── doc_attribute.txt
│ │ │ ├── maybe.expect.txt
│ │ │ ├── maybe.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── sigil.expect.txt
│ │ │ ├── sigil.txt
│ │ │ ├── triple_quote_string.expect.txt
│ │ │ └── triple_quote_string.txt
│ │ ├── erlang-repl/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── excel/
│ │ │ ├── comments.expect.txt
│ │ │ └── comments.txt
│ │ ├── fix/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── flix/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── fortran/
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── dot_keywords.expect.txt
│ │ │ ├── dot_keywords.txt
│ │ │ ├── numbers.expect.txt
│ │ │ └── numbers.txt
│ │ ├── fsharp/
│ │ │ ├── attributes.expect.txt
│ │ │ ├── attributes.txt
│ │ │ ├── bang-keywords.expect.txt
│ │ │ ├── bang-keywords.txt
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── computation-expressions.expect.txt
│ │ │ ├── computation-expressions.txt
│ │ │ ├── fsi-and-preprocessor.expect.txt
│ │ │ ├── fsi-and-preprocessor.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── operators.expect.txt
│ │ │ ├── operators.txt
│ │ │ ├── strings.expect.txt
│ │ │ ├── strings.txt
│ │ │ ├── types.expect.txt
│ │ │ └── types.txt
│ │ ├── gams/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── gauss/
│ │ │ ├── function_defs.expect.txt
│ │ │ ├── function_defs.txt
│ │ │ ├── function_refs.expect.txt
│ │ │ ├── function_refs.txt
│ │ │ ├── keywords.expect.txt
│ │ │ └── keywords.txt
│ │ ├── gcode/
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── extended.expect.txt
│ │ │ └── extended.txt
│ │ ├── gherkin/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── glsl/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── gml/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── go/
│ │ │ ├── functions.expect.txt
│ │ │ ├── functions.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── strings.expect.txt
│ │ │ └── strings.txt
│ │ ├── golo/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── gradle/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── graphql/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── groovy/
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── oneoffs.expect.txt
│ │ │ └── oneoffs.txt
│ │ ├── haml/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── handlebars/
│ │ │ ├── block-expression-variants-as-path-segment.expect.txt
│ │ │ ├── block-expression-variants-as-path-segment.txt
│ │ │ ├── block-expression-variants-in-helper-name.expect.txt
│ │ │ ├── block-expression-variants-in-helper-name.txt
│ │ │ ├── block-expression-variants-in-param.expect.txt
│ │ │ ├── block-expression-variants-in-param.txt
│ │ │ ├── block-parameters-as.expect.txt
│ │ │ ├── block-parameters-as.txt
│ │ │ ├── block-with-param.expect.txt
│ │ │ ├── block-with-param.txt
│ │ │ ├── block.expect.txt
│ │ │ ├── block.txt
│ │ │ ├── built-ins.expect.txt
│ │ │ ├── built-ins.txt
│ │ │ ├── combinations-with-text.expect.txt
│ │ │ ├── combinations-with-text.txt
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── else-variants.expect.txt
│ │ │ ├── else-variants.txt
│ │ │ ├── escaped-mustaches.expect.txt
│ │ │ ├── escaped-mustaches.txt
│ │ │ ├── expression-variants.expect.txt
│ │ │ ├── expression-variants.txt
│ │ │ ├── hashes.expect.txt
│ │ │ ├── hashes.txt
│ │ │ ├── if-else.expect.txt
│ │ │ ├── if-else.txt
│ │ │ ├── literals-in-different-places.expect.txt
│ │ │ ├── literals-in-different-places.txt
│ │ │ ├── literals.expect.txt
│ │ │ ├── literals.txt
│ │ │ ├── partial-call.expect.txt
│ │ │ ├── partial-call.txt
│ │ │ ├── path-expressions.expect.txt
│ │ │ ├── path-expressions.txt
│ │ │ ├── raw-block.expect.txt
│ │ │ ├── raw-block.txt
│ │ │ ├── simple-expression.expect.txt
│ │ │ ├── simple-expression.txt
│ │ │ ├── sub-expressions.expect.txt
│ │ │ ├── sub-expressions.txt
│ │ │ ├── triple-mustache.expect.txt
│ │ │ └── triple-mustache.txt
│ │ ├── haskell/
│ │ │ ├── char.expect.txt
│ │ │ ├── char.txt
│ │ │ ├── infix.expect.txt
│ │ │ ├── infix.txt
│ │ │ ├── inline-comments.expect.txt
│ │ │ ├── inline-comments.txt
│ │ │ ├── nested-comments.expect.txt
│ │ │ ├── nested-comments.txt
│ │ │ ├── numbers.expect.txt
│ │ │ └── numbers.txt
│ │ ├── haxe/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── hsp/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── http/
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── http3.expect.txt
│ │ │ ├── http3.txt
│ │ │ ├── just_headers.expect.txt
│ │ │ ├── just_headers.txt
│ │ │ ├── response.expect.txt
│ │ │ └── response.txt
│ │ ├── hy/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── index.js
│ │ ├── inform7/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── ini/
│ │ │ ├── array.expect.txt
│ │ │ ├── array.txt
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── keys.expect.txt
│ │ │ ├── keys.txt
│ │ │ ├── tables.expect.txt
│ │ │ ├── tables.txt
│ │ │ ├── types.expect.txt
│ │ │ ├── types.txt
│ │ │ ├── variable.expect.txt
│ │ │ └── variable.txt
│ │ ├── irpf90/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── isbl/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── java/
│ │ │ ├── annotations.expect.txt
│ │ │ ├── annotations.txt
│ │ │ ├── bugs.expect.txt
│ │ │ ├── bugs.txt
│ │ │ ├── functions.expect.txt
│ │ │ ├── functions.txt
│ │ │ ├── gh1031.expect.txt
│ │ │ ├── gh1031.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── switch.expect.txt
│ │ │ ├── switch.txt
│ │ │ ├── textblock.expect.txt
│ │ │ ├── textblock.txt
│ │ │ ├── titles.expect.txt
│ │ │ └── titles.txt
│ │ ├── javascript/
│ │ │ ├── arrow-function.expect.txt
│ │ │ ├── arrow-function.txt
│ │ │ ├── block-comments.expect.txt
│ │ │ ├── block-comments.txt
│ │ │ ├── built-in.expect.txt
│ │ │ ├── built-in.txt
│ │ │ ├── class.expect.txt
│ │ │ ├── class.txt
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── conventions.expect.txt
│ │ │ ├── conventions.txt
│ │ │ ├── default-parameters.expect.txt
│ │ │ ├── default-parameters.txt
│ │ │ ├── inline-languages.expect.txt
│ │ │ ├── inline-languages.txt
│ │ │ ├── jsdoc.expect.txt
│ │ │ ├── jsdoc.txt
│ │ │ ├── jsx-fragment.expect.txt
│ │ │ ├── jsx-fragment.txt
│ │ │ ├── jsx.expect.txt
│ │ │ ├── jsx.txt
│ │ │ ├── keyword-as-part-of-method-name.expect.txt
│ │ │ ├── keyword-as-part-of-method-name.txt
│ │ │ ├── keyword_as_identifier.expect.txt
│ │ │ ├── keyword_as_identifier.txt
│ │ │ ├── keywords.expect.txt
│ │ │ ├── keywords.txt
│ │ │ ├── method-call.expect.txt
│ │ │ ├── method-call.txt
│ │ │ ├── modules.expect.txt
│ │ │ ├── modules.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── object-attr.expect.txt
│ │ │ ├── object-attr.txt
│ │ │ ├── regex.expect.txt
│ │ │ ├── regex.txt
│ │ │ ├── seperated-parameters.expect.txt
│ │ │ ├── seperated-parameters.txt
│ │ │ ├── shebang.expect.txt
│ │ │ ├── shebang.txt
│ │ │ ├── template-strings.expect.txt
│ │ │ └── template-strings.txt
│ │ ├── jboss-cli/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── json/
│ │ │ ├── comments.expect.txt
│ │ │ └── comments.txt
│ │ ├── json5/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── julia/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── julia-repl/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── kotlin/
│ │ │ ├── class.expect.txt
│ │ │ ├── class.txt
│ │ │ ├── function.expect.txt
│ │ │ ├── function.txt
│ │ │ ├── nested_comment.expect.txt
│ │ │ ├── nested_comment.txt
│ │ │ ├── string.expect.txt
│ │ │ └── string.txt
│ │ ├── lasso/
│ │ │ ├── delimiters.expect.txt
│ │ │ └── delimiters.txt
│ │ ├── latex/
│ │ │ ├── chars.expect.txt
│ │ │ ├── chars.txt
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── control_sequences.expect.txt
│ │ │ ├── control_sequences.txt
│ │ │ ├── parameters.expect.txt
│ │ │ ├── parameters.txt
│ │ │ ├── verbatim.expect.txt
│ │ │ └── verbatim.txt
│ │ ├── ldif/
│ │ │ ├── ldapmodify.expect.txt
│ │ │ ├── ldapmodify.txt
│ │ │ ├── schema.expect.txt
│ │ │ └── schema.txt
│ │ ├── leaf/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── less/
│ │ │ ├── css_consistency.expect.txt
│ │ │ ├── css_consistency.txt
│ │ │ ├── selectors.expect.txt
│ │ │ └── selectors.txt
│ │ ├── lisp/
│ │ │ ├── mec.expect.txt
│ │ │ └── mec.txt
│ │ ├── livecodeserver/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── livescript/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── llvm/
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── simple.expect.txt
│ │ │ ├── simple.txt
│ │ │ ├── string.expect.txt
│ │ │ └── string.txt
│ │ ├── lsl/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── lua/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── makefile/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── markdown/
│ │ │ ├── bold_italics.expect.txt
│ │ │ ├── bold_italics.txt
│ │ │ ├── code.expect.txt
│ │ │ ├── code.txt
│ │ │ ├── entity.expect.txt
│ │ │ ├── entity.txt
│ │ │ ├── links.expect.txt
│ │ │ ├── links.txt
│ │ │ ├── list.expect.txt
│ │ │ ├── list.txt
│ │ │ ├── sections.expect.txt
│ │ │ └── sections.txt
│ │ ├── mathematica/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── matlab/
│ │ │ ├── block_comment.expect.txt
│ │ │ ├── block_comment.txt
│ │ │ ├── transpose.expect.txt
│ │ │ └── transpose.txt
│ │ ├── maxima/
│ │ │ ├── example.expect.txt
│ │ │ ├── example.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── symbols.expect.txt
│ │ │ └── symbols.txt
│ │ ├── mel/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── mercury/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── mipsasm/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── mizar/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── mojolicious/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── monkey/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── moonscript/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── n1ql/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── nestedtext/
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── lists_of.expect.txt
│ │ │ └── lists_of.txt
│ │ ├── nginx/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── nim/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── nix/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── node-repl/
│ │ │ ├── sample.expect.txt
│ │ │ └── sample.txt
│ │ ├── nsis/
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── variables.expect.txt
│ │ │ └── variables.txt
│ │ ├── objectivec/
│ │ │ ├── preprocessor.expect.txt
│ │ │ ├── preprocessor.txt
│ │ │ ├── string-literals.expect.txt
│ │ │ └── string-literals.txt
│ │ ├── ocaml/
│ │ │ ├── literals.expect.txt
│ │ │ ├── literals.txt
│ │ │ ├── types.expect.txt
│ │ │ └── types.txt
│ │ ├── openscad/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── oxygene/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── parser3/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── perl/
│ │ │ ├── class.expect.txt
│ │ │ ├── class.txt
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── number.expect.txt
│ │ │ ├── number.txt
│ │ │ ├── regex.expect.txt
│ │ │ └── regex.txt
│ │ ├── pf/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── pgsql/
│ │ │ ├── clauses.expect.txt
│ │ │ ├── clauses.txt
│ │ │ ├── clauses2.expect.txt
│ │ │ ├── clauses2.txt
│ │ │ ├── constraints.expect.txt
│ │ │ ├── constraints.txt
│ │ │ ├── dollar_strings.expect.txt
│ │ │ ├── dollar_strings.txt
│ │ │ ├── options.expect.txt
│ │ │ ├── options.txt
│ │ │ ├── plpgsql.expect.txt
│ │ │ ├── plpgsql.txt
│ │ │ ├── sql-commands.expect.txt
│ │ │ ├── sql-commands.txt
│ │ │ ├── window-functions.expect.txt
│ │ │ ├── window-functions.txt
│ │ │ ├── xml.expect.txt
│ │ │ └── xml.txt
│ │ ├── php/
│ │ │ ├── attributes.expect.txt
│ │ │ ├── attributes.txt
│ │ │ ├── case.expect.txt
│ │ │ ├── case.txt
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── functions.expect.txt
│ │ │ ├── functions.txt
│ │ │ ├── namespace.expect.txt
│ │ │ ├── namespace.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── php80.expect.txt
│ │ │ ├── php80.txt
│ │ │ ├── strings.expect.txt
│ │ │ ├── strings.txt
│ │ │ ├── titles.expect.txt
│ │ │ └── titles.txt
│ │ ├── php-template/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── plaintext/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── pony/
│ │ │ ├── control-flow.expect.txt
│ │ │ ├── control-flow.txt
│ │ │ ├── creator.expect.txt
│ │ │ ├── creator.txt
│ │ │ ├── iterface-trait.expect.txt
│ │ │ ├── iterface-trait.txt
│ │ │ ├── lambda.expect.txt
│ │ │ ├── lambda.txt
│ │ │ ├── match.expect.txt
│ │ │ ├── match.txt
│ │ │ ├── method.expect.txt
│ │ │ ├── method.txt
│ │ │ ├── number-literals.expect.txt
│ │ │ ├── number-literals.txt
│ │ │ ├── objects.expect.txt
│ │ │ ├── objects.txt
│ │ │ ├── prime.expect.txt
│ │ │ ├── prime.txt
│ │ │ ├── triple-quote.expect.txt
│ │ │ └── triple-quote.txt
│ │ ├── powershell/
│ │ │ ├── apos-herestring.expect.txt
│ │ │ ├── apos-herestring.txt
│ │ │ ├── classes.expect.txt
│ │ │ ├── classes.txt
│ │ │ ├── flags.expect.txt
│ │ │ ├── flags.txt
│ │ │ ├── misc.expect.txt
│ │ │ ├── misc.txt
│ │ │ ├── quote-herestring.expect.txt
│ │ │ └── quote-herestring.txt
│ │ ├── processing/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── profile/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── prolog/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── properties/
│ │ │ ├── syntax.expect.txt
│ │ │ └── syntax.txt
│ │ ├── protobuf/
│ │ │ ├── message-message.expect.txt
│ │ │ ├── message-message.txt
│ │ │ ├── rpc.expect.txt
│ │ │ └── rpc.txt
│ │ ├── puppet/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── purebasic/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── python/
│ │ │ ├── class_self.expect.txt
│ │ │ ├── class_self.txt
│ │ │ ├── decorators.expect.txt
│ │ │ ├── decorators.txt
│ │ │ ├── diacritic_identifiers.expect.txt
│ │ │ ├── diacritic_identifiers.txt
│ │ │ ├── escaped-quotes.expect.txt
│ │ │ ├── escaped-quotes.txt
│ │ │ ├── f-strings.expect.txt
│ │ │ ├── f-strings.txt
│ │ │ ├── false_positives.expect.txt
│ │ │ ├── false_positives.txt
│ │ │ ├── function-header-comments.expect.txt
│ │ │ ├── function-header-comments.txt
│ │ │ ├── function-header.expect.txt
│ │ │ ├── function-header.txt
│ │ │ ├── identifiers.expect.txt
│ │ │ ├── identifiers.txt
│ │ │ ├── keywords.expect.txt
│ │ │ ├── keywords.txt
│ │ │ ├── matrix-multiplication.expect.txt
│ │ │ ├── matrix-multiplication.txt
│ │ │ ├── numbers.expect.txt
│ │ │ └── numbers.txt
│ │ ├── python-repl/
│ │ │ ├── sample.expect.txt
│ │ │ └── sample.txt
│ │ ├── q/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── qml/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── r/
│ │ │ ├── names.expect.txt
│ │ │ ├── names.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── ops.expect.r
│ │ │ ├── ops.r
│ │ │ ├── roxygen.expect.txt
│ │ │ ├── roxygen.txt
│ │ │ ├── strings.expect.txt
│ │ │ └── strings.txt
│ │ ├── reasonml/
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── functions.expect.txt
│ │ │ ├── functions.txt
│ │ │ ├── literals.expect.txt
│ │ │ ├── literals.txt
│ │ │ ├── modules.expect.txt
│ │ │ ├── modules.txt
│ │ │ ├── pattern-matching.expect.txt
│ │ │ ├── pattern-matching.txt
│ │ │ ├── types.expect.txt
│ │ │ └── types.txt
│ │ ├── rib/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── roboconf/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── routeros/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── rsl/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── ruby/
│ │ │ ├── blocks.expect.txt
│ │ │ ├── blocks.txt
│ │ │ ├── gemfile.expect.txt
│ │ │ ├── gemfile.txt
│ │ │ ├── heredoc.expect.txt
│ │ │ ├── heredoc.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── prompt.expect.txt
│ │ │ ├── prompt.txt
│ │ │ ├── regexes.expect.txt
│ │ │ ├── regexes.txt
│ │ │ ├── strings.expect.txt
│ │ │ └── strings.txt
│ │ ├── ruleslanguage/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── rust/
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── invoked-keywords.expect.txt
│ │ │ ├── invoked-keywords.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── sample1.expect.txt
│ │ │ ├── sample1.txt
│ │ │ ├── strings.expect.txt
│ │ │ ├── strings.txt
│ │ │ ├── traits.expect.txt
│ │ │ ├── traits.txt
│ │ │ ├── types.expect.txt
│ │ │ ├── types.txt
│ │ │ ├── variables.expect.txt
│ │ │ └── variables.txt
│ │ ├── sas/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── scala/
│ │ │ ├── case-classes.expect.txt
│ │ │ ├── case-classes.txt
│ │ │ ├── end.expect.txt
│ │ │ ├── end.txt
│ │ │ ├── enum.expect.txt
│ │ │ ├── enum.txt
│ │ │ ├── export.expect.txt
│ │ │ ├── export.txt
│ │ │ ├── extension.expect.txt
│ │ │ ├── extension.txt
│ │ │ ├── for-do.expect.txt
│ │ │ ├── for-do.txt
│ │ │ ├── given.expect.txt
│ │ │ ├── given.txt
│ │ │ ├── if-then-else.expect.txt
│ │ │ ├── if-then-else.txt
│ │ │ ├── inline.expect.txt
│ │ │ ├── inline.txt
│ │ │ ├── quoted-code.expect.txt
│ │ │ ├── quoted-code.txt
│ │ │ ├── strings.expect.txt
│ │ │ ├── strings.txt
│ │ │ ├── symbol.expect.txt
│ │ │ ├── symbol.txt
│ │ │ ├── transparent.expect.txt
│ │ │ ├── transparent.txt
│ │ │ ├── using-directives.expect.txt
│ │ │ ├── using-directives.txt
│ │ │ ├── using.expect.txt
│ │ │ ├── using.txt
│ │ │ ├── while-do.expect.txt
│ │ │ └── while-do.txt
│ │ ├── scheme/
│ │ │ ├── lambda.expect.txt
│ │ │ ├── lambda.txt
│ │ │ ├── quoted.expect.txt
│ │ │ └── quoted.txt
│ │ ├── scilab/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── scss/
│ │ │ ├── css_consistency.expect.txt
│ │ │ ├── css_consistency.txt
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── shell/
│ │ │ ├── command-continuation.expect.txt
│ │ │ ├── command-continuation.txt
│ │ │ ├── plain-prompt.expect.txt
│ │ │ ├── plain-prompt.txt
│ │ │ ├── prompt-with-slash.expect.txt
│ │ │ ├── prompt-with-slash.txt
│ │ │ ├── prompt-with-tilde.expect.txt
│ │ │ ├── prompt-with-tilde.txt
│ │ │ ├── simple.expect.txt
│ │ │ ├── simple.txt
│ │ │ ├── single.expect.txt
│ │ │ └── single.txt
│ │ ├── smali/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── smalltalk/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── sml/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── sqf/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── sql/
│ │ │ ├── combos.expect.txt
│ │ │ ├── combos.txt
│ │ │ ├── functions.expect.txt
│ │ │ ├── functions.txt
│ │ │ ├── join.expect.txt
│ │ │ ├── join.txt
│ │ │ ├── keywords.expect.txt
│ │ │ ├── keywords.txt
│ │ │ ├── numeric-types.expect.txt
│ │ │ ├── numeric-types.txt
│ │ │ ├── set-operator.expect.txt
│ │ │ ├── set-operator.txt
│ │ │ ├── string-types.expect.txt
│ │ │ ├── string-types.txt
│ │ │ ├── types.expect.txt
│ │ │ ├── types.txt
│ │ │ ├── values-statement.expect.txt
│ │ │ └── values-statement.txt
│ │ ├── stan/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── stata/
│ │ │ ├── built_ins.expect.txt
│ │ │ └── built_ins.txt
│ │ ├── step21/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── stylus/
│ │ │ ├── css_consistency.expect.txt
│ │ │ ├── css_consistency.txt
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── subunit/
│ │ │ ├── subunit-errorline.expect.txt
│ │ │ ├── subunit-errorline.txt
│ │ │ ├── subunit-failureline.expect.txt
│ │ │ ├── subunit-failureline.txt
│ │ │ ├── subunit-progressline.expect.txt
│ │ │ ├── subunit-progressline.txt
│ │ │ ├── subunit-skipline.expect.txt
│ │ │ ├── subunit-skipline.txt
│ │ │ ├── subunit-successline.expect.txt
│ │ │ ├── subunit-successline.txt
│ │ │ ├── subunit-tagline.expect.txt
│ │ │ ├── subunit-tagline.txt
│ │ │ ├── subunit-testline.expect.txt
│ │ │ ├── subunit-testline.txt
│ │ │ ├── subunit-timeline.expect.txt
│ │ │ ├── subunit-timeline.txt
│ │ │ ├── subunit-uxsuccessline.expect.txt
│ │ │ ├── subunit-uxsuccessline.txt
│ │ │ ├── subunit-xfailline.expect.txt
│ │ │ └── subunit-xfailline.txt
│ │ ├── swift/
│ │ │ ├── attributes.expect.txt
│ │ │ ├── attributes.txt
│ │ │ ├── availability.expect.txt
│ │ │ ├── availability.txt
│ │ │ ├── class-func-var.expect.txt
│ │ │ ├── class-func-var.txt
│ │ │ ├── distributed-actor-runtime.expect.txt
│ │ │ ├── distributed-actor-runtime.txt
│ │ │ ├── functions.expect.txt
│ │ │ ├── functions.txt
│ │ │ ├── identifiers.expect.txt
│ │ │ ├── identifiers.txt
│ │ │ ├── keywords.expect.txt
│ │ │ ├── keywords.txt
│ │ │ ├── macro.expect.txt
│ │ │ ├── macro.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── operator-declarations.expect.txt
│ │ │ ├── operator-declarations.txt
│ │ │ ├── operators.expect.txt
│ │ │ ├── operators.txt
│ │ │ ├── ownership.expect.txt
│ │ │ ├── ownership.txt
│ │ │ ├── parameterpack.expect.txt
│ │ │ ├── parameterpack.txt
│ │ │ ├── precedencegroup.expect.txt
│ │ │ ├── precedencegroup.txt
│ │ │ ├── regex.expect.txt
│ │ │ ├── regex.txt
│ │ │ ├── strings.expect.txt
│ │ │ ├── strings.txt
│ │ │ ├── swiftui.expect.txt
│ │ │ ├── swiftui.txt
│ │ │ ├── tuples.expect.txt
│ │ │ ├── tuples.txt
│ │ │ ├── type-definition.expect.txt
│ │ │ ├── type-definition.txt
│ │ │ ├── types.expect.txt
│ │ │ └── types.txt
│ │ ├── taggerscript/
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── functions.expect.txt
│ │ │ ├── functions.txt
│ │ │ ├── noop.expect.txt
│ │ │ └── noop.txt
│ │ ├── tap/
│ │ │ ├── basic.expect.txt
│ │ │ ├── basic.txt
│ │ │ ├── without-numbers.expect.txt
│ │ │ ├── without-numbers.txt
│ │ │ ├── yaml-block.expect.txt
│ │ │ └── yaml-block.txt
│ │ ├── tcl/
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── variables.expect.txt
│ │ │ └── variables.txt
│ │ ├── thrift/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── tp/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── twig/
│ │ │ ├── filter_with_underscore.expect.txt
│ │ │ ├── filter_with_underscore.txt
│ │ │ ├── template_tags.expect.txt
│ │ │ └── template_tags.txt
│ │ ├── typescript/
│ │ │ ├── class.expect.txt
│ │ │ ├── class.txt
│ │ │ ├── declares.expect.txt
│ │ │ ├── declares.txt
│ │ │ ├── decorator-factories.expect.txt
│ │ │ ├── decorator-factories.txt
│ │ │ ├── functions.expect.txt
│ │ │ ├── functions.txt
│ │ │ ├── generics.expect.txt
│ │ │ ├── generics.txt
│ │ │ ├── identifiers_that_include_keywords.expect.txt
│ │ │ ├── identifiers_that_include_keywords.txt
│ │ │ ├── inline-languages.expect.txt
│ │ │ ├── inline-languages.txt
│ │ │ ├── jsx.expect.txt
│ │ │ ├── jsx.txt
│ │ │ ├── module-id.expect.txt
│ │ │ ├── module-id.txt
│ │ │ ├── namespace_as_identifier.expect.txt
│ │ │ ├── namespace_as_identifier.txt
│ │ │ ├── nested-templates.expect.txt
│ │ │ ├── nested-templates.txt
│ │ │ ├── numbers-and-dashes.expect.txt
│ │ │ ├── numbers-and-dashes.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── satisfies-and-as.expect.txt
│ │ │ └── satisfies-and-as.txt
│ │ ├── vala/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── vbnet/
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── directives.expect.txt
│ │ │ ├── directives.txt
│ │ │ ├── literals.expect.txt
│ │ │ ├── literals.txt
│ │ │ ├── numbers.expect.txt
│ │ │ └── numbers.txt
│ │ ├── vbscript/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── vbscript-html/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── verilog/
│ │ │ ├── directives.expect.txt
│ │ │ ├── directives.txt
│ │ │ ├── misc.expect.txt
│ │ │ ├── misc.txt
│ │ │ ├── numbers.expect.txt
│ │ │ └── numbers.txt
│ │ ├── vhdl/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── vim/
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── strings-comments.expect.txt
│ │ │ └── strings-comments.txt
│ │ ├── wasm/
│ │ │ ├── sample.expect.txt
│ │ │ └── sample.txt
│ │ ├── wren/
│ │ │ ├── attributes.expect.txt
│ │ │ ├── attributes.txt
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── x86asm/
│ │ │ ├── labels-directives.expect.txt
│ │ │ └── labels-directives.txt
│ │ ├── xl/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── xml/
│ │ │ ├── document-type-variations.expect.txt
│ │ │ ├── document-type-variations.txt
│ │ │ ├── namespace.expect.txt
│ │ │ ├── namespace.txt
│ │ │ ├── non-ascii-attribute-names.expect.txt
│ │ │ ├── non-ascii-attribute-names.txt
│ │ │ ├── non-ascii-element-names.expect.txt
│ │ │ ├── non-ascii-element-names.txt
│ │ │ ├── processing.expect.txt
│ │ │ ├── processing.txt
│ │ │ ├── space-attributes.expect.txt
│ │ │ ├── space-attributes.txt
│ │ │ ├── sublanguage_no_relevancy.expect.txt
│ │ │ ├── sublanguage_no_relevancy.txt
│ │ │ ├── unquoted-attributes.expect.txt
│ │ │ └── unquoted-attributes.txt
│ │ ├── xquery/
│ │ │ ├── computed_inbuilt.expect.txt
│ │ │ ├── computed_inbuilt.txt
│ │ │ ├── direct_method.expect.txt
│ │ │ ├── direct_method.txt
│ │ │ ├── function_body.expect.txt
│ │ │ ├── function_body.txt
│ │ │ ├── prolog_declarations.expect.txt
│ │ │ └── prolog_declarations.txt
│ │ ├── yaml/
│ │ │ ├── block.expect.txt
│ │ │ ├── block.txt
│ │ │ ├── inline.expect.txt
│ │ │ ├── inline.txt
│ │ │ ├── keys.expect.txt
│ │ │ ├── keys.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── special_chars.expect.txt
│ │ │ ├── special_chars.txt
│ │ │ ├── string.expect.txt
│ │ │ ├── string.txt
│ │ │ ├── tag.expect.txt
│ │ │ └── tag.txt
│ │ └── zephir/
│ │ ├── default.expect.txt
│ │ └── default.txt
│ ├── mocha.opts
│ ├── parser/
│ │ ├── beginEndScope.js
│ │ ├── compiler-extensions.js
│ │ ├── index.js
│ │ ├── look-ahead-end-matchers.js
│ │ ├── max_keyword_hits.js
│ │ ├── resume-scan.js
│ │ ├── reuse-endsWithParent.js
│ │ └── should-not-destroyData.js
│ ├── regex/
│ │ ├── index.js
│ │ └── lib/
│ │ ├── analysis.js
│ │ └── util.js
│ ├── special/
│ │ ├── buildClassName.js
│ │ ├── endsWithParentVariants.js
│ │ ├── explicitLanguage.js
│ │ ├── index.js
│ │ ├── languageAlias.js
│ │ ├── noHighlight.js
│ │ └── subLanguages.js
│ └── utility.js
├── tools/
│ ├── build.js
│ ├── buildSizeReport.js
│ ├── build_browser.js
│ ├── build_cdn.js
│ ├── build_config.js
│ ├── build_node.js
│ ├── checkAutoDetect.js
│ ├── checkTheme.js
│ ├── css
│ ├── developer.html
│ ├── lib/
│ │ ├── bundling.js
│ │ ├── dependencies.js
│ │ ├── external_language.js
│ │ ├── language.js
│ │ └── makestuff.js
│ ├── perf.js
│ ├── sample_files/
│ │ └── python.txt
│ └── templates/
│ └── DIGESTS.md
├── tsconfig.json
└── types/
└── index.d.ts
================================================
FILE CONTENTS
================================================
================================================
FILE: .dockerignore
================================================
.DS_Store
build
docs/_build
__pycache__
*.swp
node_modules
.project
# editors
.idea/
.vscode/
.Rproj.user
# misc
/work
================================================
FILE: .editorconfig
================================================
[*]
end_of_line = lf
insert_final_newline = true
[*.{js,css}]
charset = utf-8
indent_style = space
indent_size = 2
================================================
FILE: .eslintrc.js
================================================
module.exports = {
env: {
browser: true,
es6: true,
node: true
},
extends: [
"eslint:recommended",
"standard"
],
parserOptions: {
ecmaVersion: 2015,
sourceType: "module"
},
plugins: [
"@typescript-eslint"
],
rules: {
"no-var": "warn",
"init-declarations": ["error", "always"],
"array-callback-return": "error",
"block-scoped-var": "error",
"no-multiple-empty-lines": ["error", { max: 2 }],
// we like our semi-colons
semi: ["error", "always"],
// our codebase doesn't do this at all, so disabled for now
"space-before-function-paren": ["error", "never"],
// for now ignore diff between types of quoting
quotes: "off",
// this is the style we are already using
"operator-linebreak": ["error", "before", {
overrides: {
"=": "after"
}
}],
// sometimes we declare variables with extra spacing
indent: ["error", 2, { VariableDeclarator: 2 }],
// seems like a good idea not to use explicit undefined
"no-undefined": "error",
// ensure import specifier contains file extension
"import/extensions": ["error", "always"]
},
overrides: [
{
files: ["types/*.ts", "src/*.ts"],
parser: '@typescript-eslint/parser',
rules: {
"import/no-duplicates": "off",
"import/extensions": "off"
}
},
{
files: ["src/**/*.js"],
rules: {
// make sure there is no Node.js specific API slipping into the source files
"import/no-nodejs-modules": "error",
"import/no-commonjs": "error"
}
},
{
files: ["src/languages/*.js"],
rules: {
"no-unused-expressions": "off",
// languages are all over the map and we don't want to
// do a mass edit so turn off the most egregious rule violations
// indent: "off",
camelcase: "off",
"no-control-regex": "off",
"no-useless-escape": "off",
"comma-dangle": "off",
"array-bracket-spacing": ["error", "always"
// {
// objectsInArrays: true
// }
],
// "object-curly-spacing": "warn",
// "key-spacing": "off",
// "array-bracket-spacing": ["warn"],
"array-bracket-newline": ["warn", {
multiline: true,
minItems: 2
}],
"array-element-newline": "warn",
"object-curly-newline": [1, {
minProperties: 2
}],
"object-property-newline": [2,
{ allowAllPropertiesOnSameLine: false }
]
}
},
{
files: ["demo/**/*.js"],
globals: {
hljs: "readonly"
}
},
{
files: ["test/**/*.js"],
globals: {
should: "readonly"
},
env: {
mocha: true
},
parserOptions: {
ecmaVersion: 2018
}
},
{
files: ["tools/**/*.js"],
parserOptions: {
ecmaVersion: 2020
},
rules: {
camelcase: "off"
}
}
]
};
================================================
FILE: .eslintrc.lang.js
================================================
module.exports = {
env: {
browser: true,
es6: true,
node: true
},
parserOptions: {
ecmaVersion: 2015,
sourceType: "module"
},
// no rules, this file exists only to lint the grammars and check
// that no ES2018 or newer syntax has crept in by accident
rules: {}
};
================================================
FILE: .git-blame-ignore-revs
================================================
# eslint --fix src/languages
d64f68e8aabc67820eec2459bff9a7a0fcc06b95
================================================
FILE: .gitattributes
================================================
# The build script and some tests use `\n` as markers, so we need to make sure
# that all javascript files are checked out using UNIX line endings (not `\r\n`)
*.js eol=lf
*.txt eol=lf
================================================
FILE: .github/ISSUE_TEMPLATE/1_incorrect-syntax-highlighting.md
================================================
---
name: Report code that we highlight wrong
about: You have a specific snippet of code that is not highlighted correctly.
title: "(language name) Short description of issue..."
labels: bug, help welcome, language
assignees: ''
---
**Describe the issue**
<!-- A clear and concise description of what the issue seems to be. -->
**Which language seems to have the issue?**
<!--
Please specify exactly *which* language grammar you are using to highlight (`python`, `javascript`, etc.) or specify if you are using auto-detection. If you are using auto-detection please first check to make sure the language you are expecting was properly detected. If Highlight.js misidentifies the type of code - then the highlighting may be entirely incorrect - and there often isn't much we can do about that - auto-detection is only best-effort and can't guess right 100% of the time.
-->
**Are you using `highlight` or `highlightAuto`?**
...
**Sample Code to Reproduce**
<!--
Please include plain text examples of the code that fails to highlight properly or can reproduce the bug you are seeing. If you attach a screenshot PLEASE also provide the actually code that we can copy/paste if necessary to help resolve the issue.
A jsfiddle can sometimes be even better. You can fork an example test case:
https://jsfiddle.net/ajoshguy/cjhvre2k/
-->
**Expected behavior**
<!--
A clear and concise description of what you expected to happen. A screenshot might help here if another highlighting library gets it right, or is Github highlights it better/properly you can use a GitHub code block.
-->
**Additional context**
<!--
Add any other context about the problem here.
-->
================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.md
================================================
---
name: Report some other bug
about: You are seeing other incorrect, unexpected or unexplained behavior.
title: ""
labels: bug, help welcome, parser
assignees: ''
---
**Describe the issue/behavior that seems buggy**
<!-- A clear and concise description of what the bug seems to be. -->
**Sample Code or Instructions to Reproduce**
<!--
Please include sample code or step-by-step instructions to reproduce the bug you are seeing. If you attach a screenshot PLEASE also provide any actually code shown in plaintext as well so that we can easily copy/paste if necessary to help resolve the issue.
A jsfiddle can sometimes be even better. You can fork an example test case:
https://jsfiddle.net/ajoshguy/gfzujpyt/
-->
**Expected behavior**
<!--
A clear and concise description of what you expected to happen. If a screen grab would help, attach one.
-->
**Additional context**
<!--
Add any other context about the problem here.
-->
================================================
FILE: .github/ISSUE_TEMPLATE/config.yml
================================================
blank_issues_enabled: false
contact_links:
- name: Join our friendly Discord community
url: https://discord.gg/M24EbU7ja9
about: If you'd like to hang out, help out, or need some help - we're here.
- name: Read our documentation
url: https://highlightjs.readthedocs.io/
about: Sometimes the answers are right there, just waiting to be discovered.
- name: Request a new language
url: https://highlightjs.readthedocs.io/en/latest/language-requests.html
about: Please read our policy on requesting new languages.
================================================
FILE: .github/ISSUE_TEMPLATE/feature_request.md
================================================
---
name: Request a new feature (other than a new language)
about: You'd like to suggest a potentially helpful new feature... for requesting languages look below.
title: "[Request] Short description of the new feature..."
labels: enhancement, parser
assignees: ''
---
**Is your request related to a specific problem you're having?**
A clear and concise description of the problem itself. Ex. I'm always frustrated when [...]
**The solution you'd prefer / feature you'd like to see added...**
A clear and concise description of how you imagine we might solve this (if you have any ideas).
**Any alternative solutions you considered...**
A clear and concise description of any alternative solutions or features you may have considered.
**Additional context...**
Add any other context or screenshots relating to the feature request here.
================================================
FILE: .github/ISSUE_TEMPLATE/z_request_language_repo.md
================================================
---
name: Request a new 3rd party grammar repository
about: You'd like to host your repo inside the highlightjs org
title: "(request org repo) highlightjs-[name of your grammar]"
labels: language
assignees: 'joshgoebel'
---
<!--
Currently we offer 3rd party grammars the opportunity to be hosted
within the Highlight.js GitHub organization for better visilibity.
This is entirely optional.
-->
I would like to request the creation of a `highlightjs-[my-grammar]` repository for my 3rd party grammar.
<!--
We no longer create repositories "in advance". Instead prepare your
repository in your own GitHub account and then when it looks good it
can easily to pushed upstream to the organization.
-->
- [ ] I have an existing personal repository ready to go
<!--
Add any other context or useful information...
-->
### Metadata
- Grammar Name: _Language Name_
- Link to repo: _link to existing repository_
### Requirements
- [ ] I've read the [language Contributor Checklist](https://highlightjs.readthedocs.io/en/latest/language-contribution.html)
- [ ] I've read the [Language Contribution Guide](https://github.com/highlightjs/highlight.js/blob/main/extra/3RD_PARTY_QUICK_START.md)
- [ ] I'm currently willing to support and maintain this grammar over time
- [ ] That repo includes a `dist` folder with CDN-ready `CJS` and `ESM` builds
- [ ] That `README.md` includes examples of simple web usage
- [ ] That `README.md` includes examples of Node.js usage
### Afterwards
Submit a PR that:
- [ ] adds mention of your new language to `CHANGES.md`
- [ ] updates `SUPPORTED_LANGUAGES.md` in the main library
================================================
FILE: .github/dependabot.yml
================================================
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
================================================
FILE: .github/pull_request_template.md
================================================
<!--- Provide a general summary of your changes in the Title above -->
<!-- Please link to a related issue below. -->
<!-- ie, `Resolves #1234`, etc... so GitHub can magically link it -->
### Changes
<!--- Describe your changes -->
### Checklist
- [ ] Added markup tests, or they don't apply here because...
- [ ] Updated the changelog at `CHANGES.md`
================================================
FILE: .github/workflows/lint.yml
================================================
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Lint
on:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "*" # latest
- run: npm ci
- run: npm run lint
- run: npm run lint-languages
================================================
FILE: .github/workflows/release.yml
================================================
name: Release
on:
push:
tags:
- "*alpha*"
- "*pre*"
- "*beta*"
- "1[0-9]+.[0-9]+.[0-9]+"
permissions:
contents: read
jobs:
prerelease:
permissions:
contents: write # for git push
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout highlight.js
uses: actions/checkout@v4
- name: Tag is ${{ github.ref }}.
# we have to repeat ourselves here since the environment is not actually updated
# until the next step executes, so we can't access $TAG_NAME yet
run: |
echo "TAG_NAME=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
echo "MAJOR_VERSION=$(echo ${GITHUB_REF/refs\/tags\//} | cut -d'.' -f1)" >> $GITHUB_ENV
- name: Make sure we are pushing a tag...
if: ${{ !contains(github.ref,'refs/tags/') }}
run: false
# run: echo "TAG_NAME=0.0.0-test0" >> $GITHUB_ENV
- if: contains(github.ref, 'beta') || contains(github.ref, 'pre') || contains(github.ref, 'alpha')
run: |
echo "NPM_TAG=beta" >> $GITHUB_ENV
echo "RELEASING=beta" >> $GITHUB_ENV
- if: ${{ !(contains(github.ref, 'beta') || contains(github.ref, 'pre') || contains(github.ref, 'alpha')) }}
run: |
echo "NPM_TAG=latest" >> $GITHUB_ENV
echo "RELEASING=stable" >> $GITHUB_ENV
- name: match-tag-to-package-version
uses: geritol/match-tag-to-package-version@0.2.0
env:
TAG_PREFIX: refs/tags/ # Optional, default prefix refs/tags/
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Build Node.js package
run: |
npm install
node ./tools/build.js -t node
npm test
- name: Publish highlight.js to NPM
id: publish
uses: JS-DevTools/npm-publish@v3
with:
check-version: true
token: ${{ secrets.NPM_TOKEN }}
package: ./build/package.json
tag: ${{ env.NPM_TAG }}
- if: steps.publish.outputs.type != 'none'
run: |
echo "Version changed: ${{ steps.publish.outputs.old-version }} => ${{ steps.publish.outputs.version }}"
# if stable release
- name: Stable Release
if: env.RELEASING == 'stable'
run: echo "BRANCH_NAME=${MAJOR_VERSION}-stable" >> $GITHUB_ENV
# else (beta)
- name: Beta Release
if: env.RELEASING == 'beta'
run: echo "BRANCH_NAME=main" >> $GITHUB_ENV
- name: Confirm release is either stable or beta
if: ${{ !(env.RELEASING == 'stable' || env.RELEASING == 'beta') }}
run: |
echo We seem to be releasing `${RELEASING}`.
false
- name: Checkout cdn-release
uses: actions/checkout@v4
with:
repository: 'highlightjs/cdn-release'
path: 'cdn-release'
token: ${{ secrets.CDN_REPO_TOKEN }}
ref: ${{ env.BRANCH_NAME }}
- name: Build CDN package
run: node ./tools/build.js -t cdn :common
- name: Commmit & Push cdn-release ${{ env.TAG_NAME }}
working-directory: ./cdn-release
run: |
rm -r ./build
mv ../build/ ./build/
mv ./build/DIGESTS.md .
git config user.name github-actions
git config user.email github-actions@github.com
git add ./build/
git add ./DIGESTS.md
git commit -m'Update to version ${{ env.TAG_NAME }}'
git tag ${TAG_NAME}
git push -f --atomic origin ${BRANCH_NAME} ${TAG_NAME}
- name: Publish cdn-assets to NPM
id: publish_cdn
uses: JS-DevTools/npm-publish@v3
with:
check-version: true
token: ${{ secrets.NPM_TOKEN }}
package: ./cdn-release/build/package.json
tag: ${{ env.NPM_TAG }}
# log.info('Updating CDN repo at %s' % settings.HLJS_CDN_SOURCE)
# run(['nodejs', 'tools/build.js', '--target', 'cdn', ':common'])
# os.chdir(settings.HLJS_CDN_SOURCE)
# run(['git', 'pull', '-f'])
# lines = run(['git', '--git-dir', os.path.join(settings.HLJS_CDN_SOURCE, '.git'), 'tag'])
# build_dir = os.path.join(settings.HLJS_CDN_SOURCE, 'build')
# if version in lines:
# log.info('Tag %s already exists in the local CDN repo' % version)
# else:
# if os.path.exists(build_dir):
# shutil.rmtree(build_dir)
# shutil.move(os.path.join(settings.HLJS_SOURCE, 'build'), build_dir)
# run(['git', 'add', '.'])
# run(['git', 'commit', '-m', 'Update to version %s' % version])
# run(['git', 'tag', version])
# run(['git', 'push'])
# run(['git', 'push', '--tags'])
# npm_publish(build_dir)
# os.chdir(settings.HLJS_SOURCE)
================================================
FILE: .github/workflows/size_report_comment.yml
================================================
name: Comment Build Size Report
on:
workflow_run:
workflows: ["Create Build Size Report"]
types:
- completed
jobs:
comment_report:
runs-on: ubuntu-latest
if: >
github.event.workflow_run.event == 'pull_request' &&
github.event.workflow_run.conclusion == 'success'
steps:
- name: "Download size report artifact"
uses: actions/github-script@v7
with:
script: |
var artifacts = await github.rest.actions.listWorkflowRunArtifacts({
owner: context.repo.owner,
repo: context.repo.repo,
run_id: ${{github.event.workflow_run.id }},
});
var matchArtifact = artifacts.data.artifacts.filter((artifact) => {
return artifact.name == "size_report"
})[0];
var download = await github.rest.actions.downloadArtifact({
owner: context.repo.owner,
repo: context.repo.repo,
artifact_id: matchArtifact.id,
archive_format: 'zip',
});
var fs = require('fs');
fs.writeFileSync('${{github.workspace}}/size_report.zip', Buffer.from(download.data));
- run: unzip -d size_report size_report.zip
- name: "Comment on PR"
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
var fs = require('fs');
var issue_number = Number(fs.readFileSync('./size_report/pull_req_nr'));
var size_report = String(fs.readFileSync('./size_report/report.md'));
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issue_number,
body: size_report
});
================================================
FILE: .github/workflows/size_report_create.yml
================================================
name: Create Build Size Report
on:
pull_request:
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout Base
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.base.ref }}
path: base
- name: Checkout PR
uses: actions/checkout@v4
with:
path: pr
- name: Build CDN (Base)
run: |
npm ci
npm run build-cdn
working-directory: ./base
- name: Build CDN (PR)
run: |
npm ci
npm run build-cdn
working-directory: ./pr
- name: Create Size Report
run: |
mkdir size_report
echo ${{ github.event.number }} > size_report/pull_req_nr
REPORT=$(./pr/tools/buildSizeReport.js ./base/build ./pr/build)
echo "$REPORT" > size_report/report.md
- name: Save Size Report as Artifact
uses: actions/upload-artifact@v4
with:
name: size_report
path: ./size_report
================================================
FILE: .gitignore
================================================
.DS_Store
build
docs/_build
__pycache__
*.swp
node_modules
.project
yarn.lock
extra/
# play stuff
quick*
test*.*
extra*
# editors
.idea/
.nova/
.vscode/
.Rproj.user
# misc
/work
/website
================================================
FILE: .mocharc.json
================================================
{
"require": "should"
}
================================================
FILE: .readthedocs.yaml
================================================
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py
# Optionally build your docs in additional formats such as PDF
# formats:
# - pdf
# Optionally set the version of Python and requirements required to build your docs
python:
version: 3.7
install:
- requirements: docs/requirements.txt
================================================
FILE: .tokeignore
================================================
test/*
src/styles/*
*.md
*.json
tools
docs
types
================================================
FILE: CHANGES.md
================================================
## Version 11.11.2
Themes:
- added "vs Dark " theme [Twineee1][]
New Grammars:
- added 3rd party Aiken grammar to SUPPORTED_LANGUAGES [Josh Marchand][]
- added 3rd party VoltScript grammar to SUPPORTED_LANGUAGES [Chester Moses][]
- added 3rd party Prisma grammar to SUPPORTED_LANGUAGES [SungHyun Kim][]
- added 3rd party Magik grammar to SUPPORTED_LANGUAGES [Sebastiaan Speck][]
- added 3rd party Gleam grammar to SUPPORTED_LANGUAGES [Filip Hoffmann][]
- added 3rd party L4 grammar to SUPPORTED_LANGUAGES [Thomas Gorissen][]
- added 3rd party Bicep grammar to SUPPORTED_LANGUAGES [Anthony Martin][]
- added 3rd party Abc Notation grammar to SUPPORTED_LANGUAGES [NriotHrreion][]
Core Grammars:
- fix(javascript) correctly highlight 'for await' again [wolfgang42][]
- enh(csp) add missing directives / keywords from MDN (7 more) [Max Liashuk][]
- enh(ada) add new `parallel` keyword, allow `[]` for Ada 2022 [Max Reznik][]
- fix(ex) adds support for `?'` char literal and missing `defguardp` keyword [Kevin Bloch][]
- fix(diff) fix unified diff hunk header regex to allow unpaired numbers [Chris Wilson][]
- enh(php) support single line and hash comments in attributes, constructor and functions [Antoine Musso][]
- enh(json) add json5 support [Kerry Shetline][]
- fix(css) `unicode-range` parsing, issue #4253 [Kerry Shetline][]
- fix(csharp) Support digit separators [te-ing][]
Documentation:
- alphabetized languages + upper-cased BASIC in SUPPORTED_LANGUAGES.md [Adam Lui][]
Themes:
- Fix: cybertopia themes render correctly in shadow DOM [hbgl][]
CONTRIBUTORS
[Josh Marchand]: https://github.com/yHSJ
[Max Liashuk]: https://github.com/probil
[Max Reznik]: https://github.com/reznikmm
[Kevin Bloch]: https://github.com/codingthat
[Chris Wilson]: https://github.com/sushicw
[Antoine Musso]: https://github.com/hashar
[Chester Moses]: https://github.com/Chester-Moses-HCL
[Kerry Shetline]: https://github.com/kshetline
[SungHyun Kim]: https://github.com/witch-factory
[Adam Lui]: https://github.com/adamlui
[Sebastiaan Speck]: https://github.com/sebastiaanspeck
[Filip Hoffmann]: https://github.com/folospior
[Twineee1]: https://github.com/Twineee1
[hbgl]: https://github.com/hbgl
[Thomas Gorissen]: https://github.com/serrynaimo
[te-ing]: https://github.com/te-ing
[Anthony Martin]: https://github.com/anthony-c-martin
[NriotHrreion]: https://github.com/NriotHrreion
## Version 11.11.1
- Fixes regression with Rust grammar.
## Version 11.11.0
CAVEATS / POTENTIALLY BREAKING CHANGES
- Nothing yet.
Core Grammars:
- fix(rust) - adds emoji support in single quote strings [joshgoebel][]
- fix(apache) - support line continuation via `\` [Josh Goebel][]
- fix(makefile) - allow strings inside `$()` expressions [aneesh98][]
- enh(arcade) updated to ArcGIS Arcade version 1.29 [Kristian Ekenes][]
- 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][]
- enh(excel) add built-in functions for Excel 365 release to 2024 [Danny Winrow][]
- enh(erlang) OTP 27 triple-quoted strings [nixxquality][]
- enh(erlang) OTP 27 doc attribute [nixxquality][]
- enh(erlang) OTP 27 Sigil type [nixxquality][]
- enh(erlang) OTP25/27 maybe statement [nixxquality][]
- enh(dart) Support digit-separators in number literals [Sam Rawlins][]
- enh(csharp) add Contextual keywords `file`, `args`, `dynamic`, `record`, `required` and `scoped` [Alvin Joy][]
- enh(lua) add 'pluto' as an alias [Sainan]
- enh(bash) add reserved keywords `time` and `coproc` [Álvaro Mondéjar][]
- enh(nix) update keywords [h7x4][]
- enh(nix) support paths [h7x4][]
- enh(nix) support lookup paths [h7x4][]
- enh(nix) support operators [h7x4][]
- enh(nix) support REPL keywords [h7x4][]
- enh(nix) support markdown comments [h7x4][]
- enh(nix) support basic function params [h7x4][]
- enh(nix) better parsing of attrsets [h7x4][]
- fix(c) - Fixed hex numbers with decimals [Dxuian]
- fix(typescript) - Fixedoptional property not highlighted correctly [Dxuian]
- fix(ruby) - fix `|=` operator false positives (as block arguments) [Aboobacker MK]
- enh(gcode) rewrote language for modern gcode support [Barthélémy Bonhomme][]
- fix(sql) - Fixed sql primary key and foreign key spacing issue [Dxuian]
- fix(cpp) added flat_set and flat_map as a part of cpp 23 version [Lavan]
- fix(yaml) - Fixed special chars in yaml [Dxuian]
- fix(basic) - Fixed closing quotation marks not required for a PRINT statement [Somya]
- fix(nix) remove `add` builtin [h7x4][]
- fix(nix) mark `or` as builtin instead of literal [h7x4][]
- fix(nix) handle `'''` string escapes [h7x4][]
- fix(nix) handle backslash string escapes [h7x4][]
- fix(nix) don't mix escapes for `"` and `''` strings [h7x4][]
- fix(swift) - Fixed syntax highlighting for class func/var declarations [guuido]
- fix(yaml) - Fixed wrong escaping behavior in single quoted strings [guuido]
- enh(nim) - Add `concept` and `defer` to list of Nim keywords [Jake Leahy]
- fix(cpp) - Exclude keywords from highlighting as function calls [Eisenwave]
New Grammars:
- added 3rd party TTCN-3 grammar to SUPPORTED_LANGUAGES [Osmocom][]
- added 3rd party Odin grammar to SUPPORTED_LANGUAGES [clsource][]
- added 3rd party Liquid grammar to SUPPORTED_LANGUAGES [Laurel King][]
Developer Tools:
- Nothing yet.
Themes:
- Added `Rosé Pine` theme [William Wilkinson][]
- Added `Cybertopia Cherry` theme [Alexandre ZANNI][]
- Added `Cybertopia Dimmer` theme [Alexandre ZANNI][]
- Added `Cybertopia Icecap` theme [Alexandre ZANNI][]
- Added `Cybertopia Saturated` theme [Alexandre ZANNI][]
Improvements:
- Resolve the memory leak problem when creating multiple Highlight.js instances [Imken][]
CONTRIBUTORS
[Josh Goebel]: https://github.com/joshgoebel
[aneesh98]: https://github.com/aneesh98
[BaliBalo]: https://github.com/BaliBalo
[William Wilkinson]: https://github.com/wilkinson4
[nixxquality]: https://github.com/nixxquality
[srawlins]: https://github.com/srawlins
[Alvin Joy]: https://github.com/alvinsjoy
[Dxuian]:https://github.com/Dxuian
[Aboobacker MK]: https://github.com/tachyons
[Imken]: https://github.com/immccn123
[Sainan]: https://github.com/Sainan
[Osmocom]: https://github.com/osmocom
[Álvaro Mondéjar]: https://github.com/mondeja
[Alexandre ZANNI]: https://github.com/noraj
[Barthélémy Bonhomme]: https://github.com/barthy-koeln
[Lavan]: https://github.com/jvlavan
[Somya]: https://github.com/somya-05
[guuido]: https://github.com/guuido
[clsource]: https://github.com/clsource
[Jake Leahy]: https://github.com/ire4ever1190
[Laurel King]: https://github.com/laurelthorburn
[Kristian Ekenes]: https://github.com/ekenes
[Danny Winrow]: https://github.com/dannywinrow
[Eisenwave]: https://github.com/Eisenwave/
## Version 11.10.0
CAVEATS / POTENTIALLY BREAKING CHANGES
- Drops support for Node 16.x, which is no longer supported by Node.js.
Core Grammars:
- enh(typescript) add support for `satisfies` operator [Kisaragi Hiu][]
- enc(c) added more C23 keywords [Melkor-1][]
- enh(json) added jsonc as an alias [BackupMiles][]
- enh(gml) updated to latest language version (GML v2024.2) [gnysek][]
- enh(c) added more C23 keywords and preprcoessor directives [Eisenwave][]
- enh(js/ts) support namespaced tagged template strings [Aral Balkan][]
- enh(perl) fix false-positive variable match at end of string [Josh Goebel][]
- fix(cpp) not all kinds of number literals are highlighted correctly [Lê Duy Quang][]
- fix(css) fix overly greedy pseudo class matching [Bradley Mackey][]
- enh(arcade) updated to ArcGIS Arcade version 1.24 [Kristian Ekenes][]
- fix(typescript): params types [Mohamed Ali][]
- fix(rust) fix escaped double quotes in string [Mohamed Ali][]
- fix(rust) fix for r# raw identifier not being highlighted correctly. [JaeBaek Lee][]
- enh(rust) Adding union to be recognized as a keyword in Rust. [JaeBaek Lee][]
- fix(yaml) fix for yaml with keys having brackets highlighted incorrectly [Aneesh Kulkarni][]
- fix(csharp) add raw string highlighting for C# 11. [Tara][]
- fix(bash) fix # within token being detected as the start of a comment [Felix Uhl][]
- fix(python) fix `or` conflicts with string highlighting [Mohamed Ali][]
- enh(python) adds a scope to the `self` variable [Lee Falin][]
- enh(delphi) allow digits to be omitted for hex and binary literals [Jonah Jeleniewski][]
- enh(delphi) add support for digit separators [Jonah Jeleniewski][]
- enh(delphi) add support for character strings with non-decimal numerics [Jonah Jeleniewski][]
- fix(javascript) incorrect function name highlighting [CY Fung][]
- fix(1c) fix escaped symbols "+-;():=,[]" literals [Vitaly Barilko][]
- fix(swift) correctly highlight generics and conformances in type definitions [Bradley Mackey][]
- enh(swift) add package keyword [Bradley Mackey][]
- fix(swift) ensure keyword attributes highlight correctly [Bradley Mackey][]
- fix(types) fix interface LanguageDetail > keywords [Patrick Chiu]
- enh(java) add `goto` to be recognized as a keyword in Java [Alvin Joy][]
- enh(bash) add keyword `sudo` [Alvin Joy][]
- fix(haxe) captures `new` keyword without capturing it within variables/class names [Cameron Taylor][]
- fix(go) fix go number literals to accept `_` separators, add hex p exponents [Lisa Ugray][]
- enh(markdown) add entity support [David Schach][] [TaraLei][]
- enh(css) add `justify-items` and `justify-self` attributes [Vasily Polovnyov][]
- enh(css) add `accent-color`, `appearance`, `color-scheme`, `rotate`, `scale` and `translate` attributes [Carl Räfting][]
- fix(fortran) fixes parsing of keywords delimited by dots [Julien Bloino][]
- enh(css) add `select`, `option`, `optgroup`, `picture` and `source` to list of known tags [Vasily Polovnyov][]
- enh(css) add `inset`, `inset-*`, `border-start-*-radius` and `border-end-*-radius` attributes [Vasily Polovnyov][]
- enh(css) add `text-decoration-skip-ink`, `text-decoration-thickness` and `text-underline-offset` attributes [Vasily Polovnyov][]
- enh(java) add `when` to be recognized as a keyword in Java [Chiel van de Steeg][]
New Grammars:
- added 3rd party CODEOWNERS grammar to SUPPORTED_LANGUAGES [nataliia-radina][]
- added 3rd party Luau grammar to SUPPORTED_LANGUAGES [Robloxian Demo][]
- added 3rd party ReScript grammar to SUPPORTED_LANGUAGES [Paul Tsnobiladzé][]
- added 3rd party Zig grammar to SUPPORTED_LANGUAGES [Hyou BunKen][]
- added 3rd party WGSL grammar to SUPPORTED_LANGUAGES [Arman Uguray][]
- added 3rd party Unison grammar to SUPPORTED_LANGUAGES [Rúnar Bjarnason][]
- added 3rd party Phix grammar to SUPPORTED_LANGUAGES [PeteLomax][]
- added 3rd party Mirth grammar to SUPPORTED_LANGUAGES [Sierra][]
- added 3rd party JSONata grammar to SUPPORTED_LANGUAGES [Vlad Dimov][]
Developer Tool:
- enh(tools): order CSS options picklist [David Schach][]
- enh(tools): remove duplicate CSS options [David Schach][]
- (typescript): deprecate old `highlight` API [Misha Kaletsky][]
Themes:
- Added `1c-light` theme a like in the IDE 1C:Enterprise 8 (for 1c) [Vitaly Barilko][]
[Kisaragi Hiu]: https://github.com/kisaragi-hiu
[Melkor-1]: https://github.com/Melkor-1
[PeteLomax]: https://github.com/petelomax
[gnysek]: https://github.com/gnysek
[Eisenwave]: https://github.com/Eisenwave
[Aral Balkan]: https://github.com/aral
[Lê Duy Quang]: https://github.com/leduyquang753
[Mohamed Ali]: https://github.com/MohamedAli00949
[JaeBaek Lee]: https://github.com/ThinkingVincent
[Bradley Mackey]: https://github.com/bradleymackey
[Kristian Ekenes]: https://github.com/ekenes
[Aneesh Kulkarni]: https://github.com/aneesh98
[Bruno Meneguele]: https://github.com/bmeneg
[Tara]: https://github.com/taralei
[Felix Uhl]: https://github.com/iFreilicht
[nataliia-radina]: https://github.com/Nataliia-Radina
[Robloxian Demo]: https://github.com/RobloxianDemo
[Paul Tsnobiladzé]: https://github.com/tsnobip
[Jonah Jeleniewski]: https://github.com/cirras
[Josh Goebel]: https://github.com/joshgoebel
[CY Fung]: https://github.com/cyfung1031
[Vitaly Barilko]: https://github.com/Diversus23
[Patrick Chiu]: https://github.com/patrick-kw-chiu
[Alvin Joy]: https://github.com/alvinsjoy
[Lisa Ugray]: https://github.com/lugray
[TaraLei]: https://github.com/TaraLei
[Cameron Taylor]: https://github.com/ninjamuffin99
[Vasily Polovnyov]: https://github.com/vast
[Arman Uguray]: https://github.com/armansito
[Rúnar Bjarnason]: https://github.com/runarorama
[Carl Räfting]: https://github.com/carlrafting
[BackupMiles]: https://github.com/BackupMiles
[Julien Bloino]: https://github.com/jbloino
[Sierra]: https://github.com/casuallyblue
[Vlad Dimov]: https://github.com/DevDimov
[Chiel van de Steeg]: https://github.com/cvdsteeg
## Version 11.9.0
CAVEATS / POTENTIALLY BREAKING CHANGES
- Drops support for Node 14.x, which is no longer supported by Node.js.
- In the `node` build `styles/*.css` files now ship un-minified
with minified counterparts as: `styles/*.min.css` [mvorisek][]
(this makes things consistent with our `cdn` builds)
Parser:
- (enh) prevent re-highlighting of an element [joshgoebel][]
- (chore) Remove discontinued badges from README [Bradley Mackey][]
- (chore) Fix build size report [Bradley Mackey][]
New Grammars:
- added 3rd party Iptables grammar to SUPPORTED_LANGUAGES [Checconio][]
- added 3rd party x86asmatt grammar to SUPPORTED_LANGUAGES [gondow][]
- added 3rd party riscv64 grammar to SUPPORTED_LANGUAGES [aana-h2][]
- added 3rd party Ballerina grammar to SUPPORTED_LANGUAGES [Yasith Deelaka][]
Core Grammars:
- fix(cpp) fixed highlighter break state [Md Saad Akhtar][]
- fix(rust) added negative-lookahead for callable keywords `if` `while` `for` [Omar Hussein][]
- enh(armasm) added `x0-x30` and `w0-w30` ARMv8 registers [Nicholas Thompson][]
- enh(haxe) added `final`, `is`, `macro` keywords and `$` identifiers [Robert Borghese][]
- enh(haxe) support numeric separators and suffixes [Robert Borghese][]
- fix(haxe) fixed metadata arguments and support non-colon syntax [Robert Borghese][]
- fix(haxe) differentiate `abstract` declaration from keyword [Robert Borghese][]
- fix(bash) do not delimit a string by an escaped apostrophe [hancar][]
- enh(swift) support `macro` keyword [Bradley Mackey][]
- enh(swift) support parameter pack keywords [Bradley Mackey][]
- enh(swift) regex literal support [Bradley Mackey][]
- enh(swift) `@unchecked` and `@Sendable` support [Bradley Mackey][]
- enh(scala) add using directives support `//> using foo bar` [Jamie Thompson][]
- fix(scala) fixed comments in constructor arguments not being properly highlighted [Isaac Nonato][]
- enh(swift) ownership modifiers support [Bradley Mackey][]
- enh(nsis) Add `!assert` compiler flag [idleberg][]
- fix(haskell) do not treat double dashes inside infix operators as comments [Zlondrej][]
- enh(rust) added `eprintln!` macro [qoheniac][]
- enh(leaf) update syntax to 4.0 [Samuel Bishop][]
- fix(reasonml) simplify syntax and align it with ocaml [jchavarri][]
- fix(swift) `warn_unqualified_access` is an attribute [Bradley Mackey][]
- enh(swift) macro attributes are highlighted as keywords [Bradley Mackey][]
- enh(stan) updated for version 2.33 (#3859) [Brian Ward][]
- enh(llvm) match additional types [wtz][]
- fix(css) added '_' css variable detection [Md Saad Akhtar][]
- enh(groovy) add `record` and `var` as keywords [Guillaume Laforge][]
Developer Tool:
- (chore) Update dev tool to use the new `highlight` API. [Shah Shabbir Ahmmed][]
- (enh) Auto-update the highlighted output when the language dropdown changes. [Shah Shabbir Ahmmed][]
[Robert Borghese]: https://github.com/RobertBorghese
[Isaac Nonato]: https://github.com/isaacnonato
[Shah Shabbir Ahmmed]: https://github.com/shabbir23ah
[Josh Goebel]: https://github.com/joshgoebel
[Checconio]: https://github.com/Checconio
[Bradley Mackey]: https://github.com/bradleymackey
[mvorisek]: https://github.com/mvorisek
[qoheniac]: https://github.com/qoheniac
[Samuel Bishop]: https://github.com/dannflor
[gondow]: https://github.com/gondow
[jchavarri]: https://github.com/jchavarri
[aana-h2]: https://github.com/aana-h2
[Nicholas Thompson]: https://github.com/NAThompson
[Yasith Deelaka]: https://github.com/YasithD
[Brian Ward]: https://github.com/WardBrian
[wtz]: https://github.com/wangtz0607
[Md Saad Akhtar]: https://github.com/akhtarmdsaad
[Guillaume Laforge]: https://github.com/glaforge
## Version 11.8.0
Parser engine:
- added a function to default export to generate a fresh highlighter instance to be used by extensions [WisamMechano][]
- added BETA `__emitTokens` key to grammars to allow then to direct their own parsing, only using Highlight.js for the HTML rendering [Josh Goebel][]
- (enh) add `removePlugin` api [faga295][]
- (fix) typo in language name of `JavaScript` [Cyrus Kao][]
New Grammars:
- added 3rd party Lang grammar to SUPPORTED_LANGUAGES [AdamRaichu][]
- added 3rd party C3 grammar to SUPPORTED_LANGUAGES [aliaegik][]
Core Grammars:
- enh(sql) support `_` in variable names [joshgoebel][]
- enh(mathematica) update keywords list to 13.2.1 [arnoudbuzing][]
- enh(protobuf) add `proto` alias for Protobuf [dimitropoulos][]
- enh(sqf) latest changes in Arma 3 v2.11 [Leopard20][]
- enh(js/ts) Added support for GraphQL tagged template strings [Ali Ukani][]
- enh(javascript) add sessionStorage to list of built-in variables [Jeroen van Vianen][]
- enh(http) Add support for HTTP/3 [Rijenkii][]
- added 3rd party Motoko grammar to SUPPORTED_LANGUAGES [rvanasa][]
- added 3rd party Candid grammar to SUPPORTED_LANGUAGES [rvanasa][]
- fix(haskell) Added support for characters [CrystalSplitter][]
- enh(dart) Add `base`, `interface`, `sealed`, and `when` keywords [Sam Rawlins][]
- enh(php) detect newer more flexible NOWdoc syntax (#3679) [Timur Kamaev][]
- enh(python) improve autodetection of code with type hinting any function's return type (making the `->` operator legal) [Keyacom][]
- enh(bash) add `select` and `until` as keywords
[arnoudbuzing]: https://github.com/arnoudbuzing
[aliaegik]: https://github.com/aliaegik
[Josh Goebel]: https://github.com/joshgoebel
[Timur Kamaev]: https://github.com/doiftrue
[Leopard20]: https://github.com/Leopard20/
[WisamMechano]: https://github.com/wisammechano
[faga295]: https://github.com/faga295
[AdamRaichu]: https://github.com/AdamRaichu
[Ali Ukani]: https://github.com/ali
[Jeroen van Vianen]: https://github.com/morinel
[gnysek]: https://github.com/gnysek
[Rijenkii]: https://github.com/rijenkii
[faga295]: https://github.com/faga295
[rvanasa]: https://github.com/rvanasa
[CrystalSplitter]: https://github.com/CrystalSplitter
[Sam Rawlins]: https://github.com/srawlins
[Keyacom]: https://github.com/Keyacom
[Boris Verkhovskiy]: https://github.com/verhovsky
[Cyrus Kao]: https://github.com/CyrusKao
[Zlondrej]: https://github.com/zlondrej
## Version 11.7.0
New Grammars:
- added 3rd party LookML grammar to SUPPORTED_LANGUAGES [Josh Temple][]
- added 3rd party FunC grammar to SUPPORTED_LANGUAGES [Nikita Sobolev][]
- Added 3rd party Flix grammar to SUPPORTED_LANGUAGES [The Flix Organisation][]
- Added 3rd party RVT grammar to SUPPORTED_LANGUAGES [Sopitive][]
Grammars:
- enh(scheme) add `scm` alias for Scheme [matyklug18][]
- fix(typescript) patterns like `<T =` are not JSX [Josh Goebel][]
- fix(bash) recognize the `((` keyword [Nick Chambers][]
- enh(Ruby) misc improvements (kws, class names, etc) [Josh Goebel][]
- fix(js) do not flag `import()` as a function, rather a keyword [nathnolt][]
- fix(bash) recognize the `((` keyword [Nick Chambers][]
- fix(nix) support escaped dollar signs in strings [h7x4][]
- enh(cmake) support bracket comments [Hirse][]
- enh(java) add yield keyword to java [MBoegers][]
- enh(java) add permits keyword to java [MBoegers][]
- fix(javascript/typescript) correct identifier matching when using numbers [Lachlan Heywood][]
Improvements:
- Documentation typo fix by [Eddymens][]
[matyklug18]: https://github.com/matyklug18
[Josh Goebel]: https://github.com/joshgoebel
[Josh Temple]: https://github.com/joshtemple
[nathnolt]: https://github.com/nathnolt
[Nick Chambers]: https://github.com/uplime
[h7x4]: https://github.com/h7x4
[Hirse]: https://github.com/Hirse
[The Flix Organisation]: https://github.com/flix
[MBoegers]: https://github.com/MBoegers
[Lachlan Heywood]: https://github.com/lachieh
[Eddymens]: https://github.com/eddymens
[Sopitive]: https://github.com/Sopitive
## Version 11.6.0
Supported Node.js versions:
- (chore) Drops support for Node 12.x, which is no longer supported by Node.js.
Default build changes:
- add `wasm` to default `:common` build (#3526) [Josh Goebel][]
- add `graphql` to default `:common` build (#3526) [Josh Goebel][]
Grammars:
- fix(json) changed null/booleans from `keyword` to `literal` [shikhar13012001][]
- enh(gml) reorganized and added additional keywords [Bluecoreg][]
- enh(csharp) Added support for the new `scoped` keyword in C# (#3571) [David Pine][]
- enh(scala) add `transparent` keyword [Matt Bovel][]
- fix(rust) highlight types immediately preceeding `::` (#3540) [Josh Goebel][]
- Added 3rd party Apex grammar to SUPPORTED_LANGUAGES (#3546) [David Schach][]
- fix(rust) recognize `include_bytes!` macro (#3541) [Serial-ATA][]
- fix(java) do not intepret `==` as a variable declaration [Mousetail][]
- enh(swift) add SE-0335 existential `any` keyword (#3515) [Bradley Mackey][]
- enh(swift) add support for `distributed` keyword [Marcus Ortiz][]
- enh(xml) recognize Unicode letters instead of only ASCII letters in XML element and attribute names (#3256)[Martin Honnen][]
- Added 3rd party Toit grammar to SUPPORTED_LANGUAGES [Serzhan Nasredin][]
- Use substring() instead of deprecated substr() [Tobias Buschor][]
- Added 3rd party Oak grammar to SUPPORTED_LANGUAGES [Tim Smith][]
- enh(python) add `match` and `case` keywords [Avrumy Lunger][]
- Added 3rd party COBOL grammar to SUPPORTED_LANGUAGES [Gabriel Gonçalves][]
[shikhar13012001]: https://github.com/shikhar13012001
[Bluecoreg]: https://github.com/Bluecoreg
[Matt Bovel]: https://github.com/mbovel
[David Schach]: https://github.com/dschach
[Serial-ATA]: https://github.com/Serial-ATA
[Bradley Mackey]: https://github.com/bradleymackey
[Marcus Ortiz]: https://github.com/mportiz08
[Martin Honnen]: https://github.com/martin-honnen
[Serzhan Nasredin]: https://github.com/snxx-lppxx
[Tobias Buschor]: https://github.com/nuxodin/
[Tim Smith]: https://github.com/timlabs
[Avrumy Lunger]: https://github.com/vrumger
[Mousetail]: https://github.com/mousetail
[Gabriel Gonçalves]: https://github.com/KTSnowy
[Nikita Sobolev]: https://github.com/sobolevn
[Misha Kaletsky]: https://github.com/mmkal
## Version 11.5.0
Themes:
- Added `Tokyo-Night-dark` theme [Henri Vandersleyen][]
- Added `Tokyo-Night-light` theme [Henri Vandersleyen][]
- Added `panda-syntax-dark` theme [Annmarie Switzer][]
- Added `panda-syntax-light` theme [Annmarie Switzer][]
New Grammars:
- Added GraphQL to SUPPORTED_LANGUAGES [John Foster][]
- Added Macaulay2 to SUPPORTED_LANGUAGES [Doug Torrance][]
Grammars:
- enh(ruby) lots of small Ruby cleanups/improvements [Josh Goebel][]
- enh(objectivec) add `type` and `variable.language` scopes [Josh Goebel][]
- enh(xml) support processing instructions (#3492) [Josh Goebel][]
- enh(ruby ) better support multi-line IRB prompts
- enh(bash) improved keyword `$pattern` (numbers allowed in command names) [Martin Mattel][]
- add `meta.prompt` scope for REPL prompts, etc [Josh Goebel][]
- fix(markdown) Handle `***Hello world***` without breaking [Josh Goebel][]
- enh(php) add support for PHP Attributes [Wojciech Kania][]
- fix(java) prevent false positive variable init on `else` [Josh Goebel][]
- enh(php) named arguments [Wojciech Kania][]
- fix(php) PHP constants [Wojciech Kania][]
- fix(angelscript) incomplete int8, int16, int32, int64 highlighting [Melissa Geels][]
- enh(ts) modify TypeScript-specific keywords and types list [anydonym][]
- fix(brainfuck) fix highlighting of initial ++/-- [Christina Hanson][]
- fix(llvm) escaping in strings and number formats [Flakebi][]
- enh(elixir) recognize references to modules [Mark Ericksen][]
- enh(css): add support for more properties [Nicolaos Skimas][]
[Martin Mattel]: https://github.com/mmattel
[John Foster]: https://github.com/jf990
[Wojciech Kania]: https://github.com/wkania
[Melissa Geels]: https://github.com/codecat
[anydonym]: https://github.com/anydonym
[henri Vandersleyen]: https://github.com/Vanderscycle
[Christina Hanson]: https://github.com/LyricLy
[Flakebi]: https://github.com/Flakebi
[Josh Goebel]: https://github.com/joshgoebel
[Mark Ericksen]: https://github.com/brainlid
[Nicolaos Skimas]: https://github.com/dev-nicolaos
[Doug Torrance]: https://github.com/d-torrance
[Annmarie Switzer]: https://github.com/annmarie-switzer
## Version 11.4.0
New Language:
- Added 3rd party Pine Script grammar to SUPPORTED_LANGUAGES [Jeylani B][]
- Added 3rd party cURL grammar to SUPPORTED_LANGUAGES [highlightjs-curl](https://github.com/highlightjs/highlightjs-curl)
Themes:
- `Default` is now much closer WCAG AA (contrast) (#3402) [Josh Goebel]
- `Dark` now meets WCAG AA (contrast) (#3402) [Josh Goebel]
- Added `intellij-light` theme [Pegasis]
- Added `felipec` theme [Felipe Contreras]
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.
Grammars:
- enh(twig) update keywords list for symfony (#3453) [Matthieu Lempereur][]
- enh(arcade) updated to ArcGIS Arcade version 1.16 [John Foster][]
- enh(php) Left and right-side of double colon [Wojciech Kania][]
- enh(php) add PHP constants [Wojciech Kania][]
- enh(php) add PHP 8.1 keywords [Wojciech Kania][]
- fix(cpp) fix `vector<<` template false positive (#3437) [Josh Goebel][]
- enh(php) support First-class Callable Syntax (#3427) [Wojciech Kania][]
- enh(php) support class constructor call (#3427) [Wojciech Kania][]
- enh(php) support function invoke (#3427) [Wojciech Kania][]
- enh(php) Switch highlighter to partially case-insensitive (#3427) [Wojciech Kania][]
- enh(php) improve `namespace` and `use` highlighting (#3427) [Josh Goebel][]
- enh(php) `$this` is a `variable.language` now (#3427) [Josh Goebel][]
- enh(php) add `__COMPILER_HALT_OFFSET__` (#3427) [Josh Goebel][]
- enh(js/ts) fix => async function title highlights (#3405) [Josh Goebel][]
- enh(twig) update keywords list (#3415) [Matthieu Lempereur][]
- fix(python) def, class keywords detected mid-identifier (#3381) [Josh Goebel][]
- fix(python) Fix recognition of numeric literals followed by keywords without whitespace (#2985) [Richard Gibson][]
- enh(swift) add SE-0290 unavailability condition (#3382) [Bradley Mackey][]
- fix(fsharp) Highlight operators, match type names only in type annotations, support quoted identifiers, and other smaller fixes. [Melvyn Laïly][]
- enh(java) add `sealed` and `non-sealed` keywords (#3386) [Bradley Mackey][]
- enh(js/ts) improve `CLASS_REFERENCE` (#3411) [Josh Goebel][]
- enh(nsis) Update defines pattern to allow `!` (#3417) [idleberg][]
- enh(nsis) Update language strings pattern to allow `!` (#3420) [idleberg][]
- fix(stan) Updated for Stan 2.28 and other misc. improvements (#3410)
- enh(nsis) Update variables pattern (#3416) [idleberg][]
- fix(clojure) Several issues with Clojure highlighting (#3397) [Björn Ebbinghaus][]
- fix(clojure) `comment` macro catches more than it should (#3395)
- fix(clojure) `$` in symbol breaks highlighting
- fix(clojure) Add complete regex for number detection
- enh(clojure) Add character mode for character literals
- fix(clojure) Inconsistent namespaced map highlighting
- enh(clojure) Add `regex` mode to regex literal
- fix(clojure) Remove inconsistent/broken highlighting for metadata
- enh(clojure) Add `punctuation` mode for commas.
- fix(julia) Enable the `jldoctest` alias (#3432) [Fons van der Plas][]
Developer Tools:
- (chore) add gzip size compression report (#3400) [Bradley Mackey][]
Themes:
- Modified background color in css for Gradient Light and Gradient Dark themes [Samia Ali][]
[John Foster]: https://github.com/jf990
[Pegasis]: https://github.com/PegasisForever
[Wojciech Kania]: https://github.com/wkania
[Jeylani B]: https://github.com/jeyllani
[Richard Gibson]: https://github.com/gibson042
[Bradley Mackey]: https://github.com/bradleymackey
[Melvyn Laïly]: https://github.com/mlaily
[Björn Ebbinghaus]: https://github.com/MrEbbinghaus
[Josh Goebel]: https://github.com/joshgoebel
[Samia Ali]: https://github.com/samiaab1990
[Matthieu Lempereur]: https://github.com/MrYamous
[idleberg]: https://github.com/idleberg
[Fons van der Plas]: https://github.com/fonsp
[Felipe Contreras]: https://github.com/felipec
## Version 11.3.1
Build:
- (fix) Grammar CDN modules not generated correctly. (#3363) [Josh Goebel][]
[Josh Goebel]: https://github.com/joshgoebel
## Version 11.3.0
Build:
- add `HighlightJS` named export (#3295) [Josh Goebel][]
- add `.default` named export to CJS builds (#3333) [Josh Goebel][]
Parser:
- add first rough performance testing script (#3280) [Austin Schick][]
- add `throwUnescapedHTML` to warn against potential HTML injection [Josh Goebel][]
- expose `regex` helper functions via `hljs` injection [Josh Goebel][]
- concat
- lookahead
- either
- optional
- anyNumberOfTimes
Grammars:
- fix(ts) some complex types would classify as JSX (#3278) [Josh Goebel][]
- fix(js/ts) less false positives for `class X extends Y` (#3278) [Josh Goebel][]
- enh(css): add properties from several W3C (Candidate) Recommendations (#3308)
- fix(js/ts) `Float32Array` highlighted incorrectly (#3353) [Josh Goebel][]
- fix(css) single-colon psuedo-elements no longer break highlighting (#3240) [Josh Goebel][]
- fix(scss) single-colon psuedo-elements no longer break highlighting (#3240) [Josh Goebel][]
- enh(fsharp) rewrite most of the grammar, with many improvements [Melvyn Laïly][]
- enh(go) better type highlighting, add `error` type [Josh Goebel][]
- fix(js/ts) regex inside `SUBST` is no longer highlighted [Josh Goebel][]
- fix(python) added support for unicode identifiers (#3280) [Austin Schick][]
- enh(css/less/stylus/scss) improve consistency of function dispatch (#3301) [Josh Goebel][]
- enh(css/less/stylus/scss) detect block comments more fully (#3301) [Josh Goebel][]
- fix(cpp) switch is a keyword (#3312) [Josh Goebel][]
- fix(cpp) fix `xor_eq` keyword highlighting. [Denis Kovalchuk][]
- enh(c,cpp) highlight type modifiers as type (#3316) [Josh Goebel][]
- enh(css/less/stylus/scss) add support for CSS Grid properties [monochromer][]
- enh(java) add support for Java Text Block (#3322) [Teletha][]
- enh(scala) add missing `do` and `then` keyword (#3323) [Nicolas Stucki][]
- enh(scala) add missing `enum`, `export` and `given` keywords (#3328) [Nicolas Stucki][]
- enh(scala) remove symbol syntax and fix quoted code syntax (#3324) [Nicolas Stucki][]
- enh(scala) add Scala 3 `extension` soft keyword (#3326) [Nicolas Stucki][]
- enh(scala) add Scala 3 `end` soft keyword (#3327) [Nicolas Stucki][]
- enh(scala) add `inline` soft keyword (#3329) [Nicolas Stucki][]
- enh(scala) add `using` soft keyword (#3330) [Nicolas Stucki][]
- enh(fsharp) added `f#` alias (#3337) [Bahnschrift][]
- enh(bash) added gnu core utilities (#3342) [katzeprior][]
- enh(nsis) add new NSIS commands (#3351) [idleberg][]
- fix(nsis) set `case_insensitive` to `true` (#3351) [idleberg][]
- fix(css/less/stylus/scss) highlight single-colon psuedo-elements properly (#3240) [zsoltlengyelit][]
- fix(css) add css hex color alpha support (#3360) [ierehon1905][]
[Austin Schick]: https://github.com/austin-schick
[Josh Goebel]: https://github.com/joshgoebel
[Denis Kovalchuk]: https://github.com/deniskovalchuk
[monochromer]: https://github.com/monochromer
[Teletha]: https://github.com/teletha
[Nicolas Stucki]: https://github.com/nicolasstucki
[Bahnschrift]: https://github.com/Bahnschrift
[Melvyn Laïly]: https://github.com/mlaily
[katzeprior]: https://github.com/katzeprior
[zsoltlengyelit]: github.com/zsoltlengyelit
[Syb Wartna]:https://github.com/waarissyb
[idleberg]: https://github.com/idleberg
[ierehon1905]: https://github.com/ierehon1905
## Version 11.2.0
Build:
- fix: run Node build CSS files thru CSS processor also (#3284) [Josh Goebel][]
Parser:
- fix(csharp) Fix assignments flagging as functions [Josh Goebel][]
- fix(types) Fix some type definition issues (#3274) [Josh Goebel][]
- fix(verilog) Fix directive handling (#3283) [Josh Goebel][]
- fix(verilog) Fix binary number false positives on `_` (#3283) [Josh Goebel][]
- enh(verilog) `__FILE__` and `__LINE__` constants (#3283) [Josh Goebel][]
- enh(verilog) tighten keyword regex (#3283) [Josh Goebel][]
Grammars:
- enh(swift) Add `isolated`/`nonisolated` keywords (#3296) [Bradley Mackey][]
New Languages:
- Added 3rd party X# grammar to SUPPORTED_LANGUAGES [Patrick Kruselburger][]
- Added 3rd party MKB grammar to SUPPORTED_LANGUAGES (#3297) [Dereavy][]
[Josh Goebel]: https://github.com/joshgoebel
[Patrick Kruselburger]: https://github.com/PatrickKru
[Bradley Mackey]: https://github.com/bradleymackey
[Dereavy]: https://github.com/dereavy
## Version 11.1.0
Grammars:
- fix(csharp) add missing `catch` keyword (#3251) [Konrad Rudolph][]
- add additional keywords to csp.js (#3244) [Elijah Conners][]
- feat(css) handle css variables syntax (#3239) [Thanos Karagiannis][]
- fix(markdown) Images with empty alt or links with empty text (#3233) [Josh Goebel][]
- enh(powershell) added `pwsh` alias (#3236) [tebeco][]
- fix(r) fix bug highlighting examples in doc comments [Konrad Rudolph][]
- fix(python) identifiers starting with underscore not highlighted (#3221) [Antoine Lambert][]
- enh(clojure) added `edn` alias (#3213) [Stel Abrego][]
- enh(elixir) much improved regular expression sigil support (#3207) [Josh Goebel][]
- enh(elixir) updated list of keywords (#3212) [Angelika Tyborska][]
- fix(elixir) fixed number detection when numbers start with a zero (#3212) [Angelika Tyborska][]
- fix(ps1) Flag highlighted incorrectly (#3167) [Pankaj Patil][]
- fix(latex) Allow wider syntax for magic comments (#3243) [Benedikt Wilde][]
- fix(js/ts) Constants may include numbers [Josh Goebel][]
[Stel Abrego]: https://github.com/stelcodes
[Josh Goebel]: https://github.com/joshgoebel
[Antoine Lambert]: https://github.com/anlambert
[Elijah Conners]: https://github.com/elijahepepe
[Angelika Tyborska]: https://github.com/angelikatyborska
[Konrad Rudolph]: https://github.com/klmr
[tebeco]: https://github.com/tebeco
[Pankaj Patil]: https://github.com/patil2099
[Benedikt Wilde]: https://github.com/schtandard
[Thanos Karagiannis]: https://github.com/thanoskrg
## Version 11.0.0
**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.
### Potentially breaking changes
Unless otherwise attributed items below are thanks to [Josh Goebel][] (ref: [#2558](https://github.com/highlightjs/highlight.js/issues/2558)).
*The below list should only be considered to be a high-level summary.*
Deprecations / Removals / API Changes:
- `initHighlighting()` and `initHighlightingOnLoad()` deprecated. **Use `highlightAll()`.**
- `highlightBlock(el)` deprecated. **Use `highlightElement(el)`**
- `before:highlightBlock` & `after:highlightBlock` callbacks deprecated. **Use equivalent `highlightElement` callbacks.**
- `highlight(languageName, code, ignoreIllegals, continuation)` signature deprecated. **Use `highlight(code, {language, ignoreIllegals})`.**
- Deprecated `highlight()` signature no longer supports `continuation` argument.
- `tabReplace` option removed. Consider a plugin.
- `useBR` option removed. Consider a plugin or CSS.
- `requireLanguage()` removed. **Use `getLanguage()`.**
- `endSameAsBegin` mode key removed. **Use `hljs.END_SAME_AS_BEGIN`.**
- `lexemes` mode key removed. **Use `keywords.$pattern`.**
- The return values/keys of some APIs have changed slightly.
Security:
- HTML auto-passthru has been removed. Consider a plugin.
- Unescaped HTML is now stripped (for security). A warning is logged to the console. (#3057) [Josh Goebel][]
Themes:
- The default padding of all themes increases (0.5em => 1em).
- `schoolbook` has been updated to remove the lined background.
- `github` updated to better match modern GitHub (#1616) [Jan Pilzer][]
- `github-gist` has been removed in favor of `github` [Jan Pilzer][]
- Base16 named themes have been updated to their "canonical" versions
- `nnfx` updated for v11 xml styles and improved css support
Language Grammars:
- Default CDN build drops support for several languages.
- Some language grammar files have been removed.
- Some redundant language aliases have been removed.
### Other changes
Parser:
- enh(vala) improve language detection for Vala (#3195) [Konrad Rudolph][]
- enh(r) add support for operators, fix number highlighting bug (#3194, #3195) [Konrad Rudolph][]
- enh(parser) add `beginScope` and `endScope` to allow separate scoping begin and end (#3159) [Josh Goebel][]
- enh(parsed) `endScope` now supports multi-class matchers as well (#3159) [Josh Goebel][]
- enh(parser) `highlightElement` now always tags blocks with a consistent `language-[name]` class [Josh Goebel][]
- subLanguage `span` tags now also always have the `language-` prefix added
- enh(parser) support multi-class matchers (#3081) [Josh Goebel][]
- enh(parser) Detect comments based on english like text, rather than keyword list [Josh Goebel][]
- adds `title.class.inherited` sub-scope support [Josh Goebel][]
- adds `title.class` sub-scope support (#3078) [Josh Goebel][]
- adds `title.function` sub-scope support (#3078) [Josh Goebel][]
- adds `beforeMatch` compiler extension (#3078) [Josh Goebel][]
- adds `cssSelector ` configuration option (#3180) [James Edington][]
Grammars:
- enh(all) `.meta-keyword` => `.meta .keyword` (nested scopes) (#3167) [Josh Goebel][]
- enh(all) `.meta-string` => `.meta .string` (nested scopes) (#3167) [Josh Goebel][]
- enh(swift) add `actor` keyword (#3171) [Bradley Mackey][]
- enh(crystal) highlight variables (#3154) [Josh Goebel][]
- fix(ruby) Heredoc without interpolation (#3154) [Josh Goebel][]
- enh(swift) add `@resultBuilder` attribute (#3151) [Bradley Mackey][]
- enh(processing) added `pde` alias (#3142) [Dylan McBean][]
- enh(thrift) Use proper scope for types [Josh Goebel][]
- enh(java) Simplified class-like matcher (#3078) [Josh Goebel][]
- enh(cpp) Simplified class-like matcher (#3078) [Josh Goebel][]
- enh(rust) Simplified class-like matcher (#3078) [Josh Goebel][]
- enh(actionscript) Simplified class-like matcher (#3078) [Josh Goebel][]
- enh(arcade) `function.title` => `title.function` (#3078) [Josh Goebel][]
- enh(autoit) `function.title` => `title.function` (#3078) [Josh Goebel][]
- enh(c) `function.title` => `title.function` (#3078) [Josh Goebel][]
- enh(rust) support function invoke and `impl` (#3078) [Josh Goebel][]
- chore(properties) disable auto-detection #3102 [Josh Goebel][]
- fix(properties) fix incorrect handling of non-alphanumeric keys #3102 [Egor Rogov][]
- enh(java) support functions with nested template types (#2641) [Josh Goebel][]
- enh(java) highlight types and literals separate from keywords (#3074) [Josh Goebel][]
- enh(shell) add alias ShellSession [Ryan Mulligan][]
- enh(shell) consider one space after prompt as part of prompt [Ryan Mulligan][]
- fix(nginx) fix bug with $ and @ variables [Josh Goebel][]
- enh(nginx) improving highlighting of some sections [Josh Goebel][]
- fix(vim) variable names may not be zero length [Josh Goebel][]
- enh(sqf) Updated keywords to Arma 3 v2.02 (#3084) [R3voA3][]
- enh(sqf) Refactored function regex to match CBA component func naming scheme (#3181) [JonBons][]
- enh(nim) highlight types properly (not as built-ins) [Josh Goebel][]
- (chore) throttle deprecation messages (#3092) [Mihkel Eidast][]
- enh(c) Update keyword list for C11/C18 (#3010) [Josh Goebel][]
- enh(parser) highlight object properties (#3072) [Josh Goebel][]
- enh(javascript/typescript) highlight object properties (#3072) [Josh Goebel][]
- enh(haskell) add support for BinaryLiterals (#3150) [Martijn Bastiaan][]
- enh(haskell) add support for NumericUnderscores (#3150) [Martijn Bastiaan][]
- enh(haskell) add support for HexFloatLiterals (#3150) [Martijn Bastiaan][]
- fix(c,cpp) allow declaring multiple functions and (for C++) parenthetical initializers (#3155) [Erik Demaine][]
- enh(rust) highlight raw byte string literals correctly (#3173) [Nico Abram][]
- fix(cpp) fix detection of common functions that are function templates (#3178) [Kris van Rens][]
- enh(cpp) add various keywords and commonly used types for hinting (#3178) [Kris van Rens][]
- enh(cpp) cleanup reserved keywords and type lists (#3178) [Kris van Rens][]
New Languages:
- Added 3rd party Glimmer grammar to SUPPORTED_LANGUAGES(#3123) [NullVoxPopuli][]
- Added Wren support [Josh Goebel][]
- Added NestedText support [Josh Goebel][]
- Added WebAssembly language grammar [Josh Goebel][]
- Added 3rd party Splunk search processing language grammar to SUPPORTED_LANGUAGES (#3090) [Wei Su][]
- Added 3rd party ZenScript grammar to SUPPORTED_LANGUAGES(#3106) [Jared Luboff][]
- Added 3rd party Papyrus grammar to SUPPORTED_LANGUAGES(#3125) [Mike Watling][]
Theme Improvements:
- Added all official Base16 themes (over 150 new themes) [Josh Goebel][]
- chore(themes) remove `builtin-name` CSS class (#3119) [Josh Goebel][]
- chore(theme) Update GitHub theme css to match GitHub's current styling (#1616) [Jan Pilzer][]
- chore(theme) Update Srcery theme css to match its Emacs implementation [Chen Bin][]
New Themes:
- DeviBeans Dark by [Farzad Sadeghi][]
- GitHub Dark and GitHub Dark Dimmed [Jan Pilzer][]
Dev Improvements:
- (chore) greatly improve match scope visualization in dev tool (#3126) [NullVoxPopuli][]
- (fix) CSS used for devtool needed an adjustment to fix too wide of content (#3133) [NullVoxPopuli][]
[Farzad Sadeghi]: https://github.com/terminaldweller
[Martijn Bastiaan]: https://github.com/martijnbastiaan
[Bradley Mackey]: https://github.com/bradleymackey
[Dylan McBean]: https://github.com/DylanMcBean
[Josh Goebel]: https://github.com/joshgoebel
[Ryan Mulligan]: https://github.com/ryantm
[R3voA3]: https://github.com/R3voA3
[JonBons]: https://github.com/JonBons
[Wei Su]: https://github.com/swsoyee
[Jared Luboff]: https://github.com/jaredlll08
[NullVoxPopuli]: https://github.com/NullVoxPopuli
[Mike Watling]: https://github.com/Pickysaurus
[Nico Abram]: https://github.com/nico-abram
[James Edington]: http://www.ishygddt.xyz/
[Jan Pilzer]: https://github.com/Hirse
[Kris van Rens]: https://github.com/krisvanrens
## Version 10.7.1
- fix(parser) Resolves issues with TypeScript types [Josh Goebel][]
### Version 10.7.0
Parser:
- keywords now have a maximum # of times they provide relevance (#3129) [Josh Goebel][]
- enh(api) add `unregisterLanguage` method (#3009) [Antoine du Hamel][]
- enh: Make alias registration case insensitive (#3026) [David Ostrovsky][]
- fix(parser) `highlightAll()` now works if the library is lazy loaded [Josh Goebel][]
New Languages:
- Added 3rd party RiScript grammar to SUPPORTED_LANGUAGES (#2988) [John C][]
- Added 3rd party HLSL grammar to SUPPORTED_LANGUAGES (#3002) [Stef Levesque][]
- Added 3rd party Q# grammar to SUPPORTED_LANGUAGES(#3006) [Vyron Vasileiadis][]
Language grammar improvements:
- enh(js/ts) class references (CamelCase) are highlighted (#3169) [Josh Goebel][]
- enh(js/ts) constants (ALL_CAPS) are highlighted (#3169) [Josh Goebel][]
- enh(js/ts) highlights function invokation (#3169) [Josh Goebel][]
- enh(js/ts) functions assigned to variables are now highlighted `title.function` (#3169) [Josh Goebel][]
- enh(parser) smarter detection of comments (#2827) [Josh Goebel][]
- fix(python) allow keywords immediately following numbers (#2985) [Josh Goebel][]
- fix(xml) char immediately following tag close mis-highlighted (#3044) [Josh Goebel][]
- fix(ruby) fix `defined?()` mis-highlighted as `def` (#3025) [Josh Goebel][]
- fix(c) comments after `#include <str>` blocks (#3041) [Josh Goebel][]
- fix(cpp) comments after `#include <str>` blocks (#3041) [Josh Goebel][]
- enh(cpp) Highlight all function dispatches (#3005) [Josh Goebel][]
- enh(python) support type hints and better type support (#2972) [Josh Goebel][]
- enh(gml) Add additional GML 2.3 keywords (#2984) [xDGameStudios][]
- fix(cpp) constructor support for initializers (#3001) [Josh Goebel][]
- enh(php) Add `trait` to class-like naming patterns (#2997) [Ayesh][]
- enh(php) Add `Stringable`, `UnhandledMatchError`, and `WeakMap` classes/interfaces (#2997) [Ayesh][]
- enh(php) Add `mixed` to list of keywords (#2997) [Ayesh][]
- enh(php) Add support binary, octal, hex and scientific numerals with underscore separator support (#2997) [Ayesh][]
- enh(php) Add support for Enums (#3004) [Ayesh][]
- enh(ecmascript) Add built-in types [Vaibhav Chanana][]
- enh(kotlin) Add `kts` as an alias for Kotlin (#3021) [Vaibhav Chanana][]
- enh(css) Add `font-smoothing` to attributes list for CSS (#3027) [AndyKIron][]
- fix(python) Highlight `print` and `exec` as a builtin (#1468) [Samuel Colvin][]
- fix(csharp) Fix unit being highlighted instead of uint (#3046) [Spacehamster][]
- enh(swift) add async/await keywords (#3048) [Bradley Mackey][]
Deprecations:
- `highlight(languageName, code, ignoreIllegals, continuation)` deprecated as of 10.7
- Please use the newer API which takes `code` and then accepts options as an object
- IE: `highlight(code, {language, ignoreIllegals})`
- `continuation` is for internal use only and no longer supported
- `highlightBlock(el)` deprecated as of 10.7.
- Please use `highlightElement(el)` instead.
- Plugin callbacks renamed `before/after:highlightBlock` => `before/after:highlightElement`
- Plugin callback now takes `el` vs `block` attribute
- The old API and callbacks will be supported until v12.
[Stef Levesque]: https://github.com/stef-levesque
[Josh Goebel]: https://github.com/joshgoebel
[John Cheung]: https://github.com/Real-John-Cheung
[xDGameStudios]: https://github.com/xDGameStudios
[Ayesh]: https://github.com/Ayesh
[Vyron Vasileiadis]: https://github.com/fedonman
[Antoine du Hamel]: https://github.com/aduh95
[Vaibhav Chanana]: https://github.com/il3ven
[David Ostrovsky]: https://github.com/davido
[AndyKIron]: https://github.com/AndyKIron
[Samuel Colvin]: https://github.com/samuelcolvin
## Version 10.6.0
New Languages:
- Added 3rd party Laravel Blade grammar to SUPPORTED_LANGUAGES (#2944) [Michael Newton][]
Language grammar improvements:
- enh(scala) fix triple quoted strings (#2987) [Josh Goebel][]
- enh(perl) Much improved regex detection (#2960) [Josh Goebel][]
- enh(swift) Improved highlighting for operator and precedencegroup declarations. (#2938) [Steven Van Impe][]
- fix(xml) Support single-character namespaces. (#2957) [Jan Pilzer][]
- enh(ruby) Support for character literals (#2950) [Vaibhav Chanana][]
- enh(powershell) Add three VALID_VERBS and update the reference link (#2981) [davidhcefx][]
- fix(php) Highlighting of anonymous functions without {} block [Vaibhav Chanana][]
Grammar Deprecations:
- Deprecate `c-like`, though you should not be using it directly anyways.
- will be removed in v11.
- `c` and `cpp` are now wholly unique grammars that will diverge over time
Parser:
- new simpler `highlightAll()` API (#2962) [Josh Goebel][]
- this should be a drop-in replacement for both `initHighlighting()` and `initHighlightingOnLoad()`
- note: it does not prevent itself from being called multiple times (as the previous API did)
- `beginKeyword` no longer bestows double relevance (#2953) [Josh Goebel][]
- allow `keywords` to be an array of strings [Josh Goebel][]
- add `modes.MATCH_NOTHING_RE` that will never match
- 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][]
Deprecations:
- `initHighlighting()` and `initHighlightingOnLoad()` deprecated.
- Please use the new `highlightAll()` API instead.
- Deprecated as of 10.6.
- These will both be aliases to `highlightAll` in v11.
[Michael Newton]: https://github.com/miken32
[Steven Van Impe]: https://github.com/svanimpe/
[Josh Goebel]: https://github.com/joshgoebel
[Vaibhav Chanana]: https://github.com/il3ven
[davidhcefx]: https://github.com/davidhcefx
[Jan Pilzer]: https://github.com/Hirse
## Version 10.5.0
Build:
- Add Subresource Integrity digest lists to `cdn-assets` [Josh Goebel][]
- R and VB.net grammars now ship in our default build (`:common`) [Josh Goebel][]
Parser:
- add `match` as sugar for simple `begin` only matches (#2834) [Josh Goebel][]
- allow `illegal` to also be an array of regex (#2834) [Josh Goebel][]
- add `compilerExtensions` allows grammers to influence mode compilation (#2834) [Josh Goebel][]
- some internal pieces are now simple compiler extensions
New Languages:
- Added 3rd party Red & Rebol grammar to SUPPORTED_LANGUAGES (#2872) [Oldes Huhuman][]
Language grammar improvements:
- enh: CSS grammars now share common foundation, keywords, etc. (#2937) [Josh Goebel][]
- enh(css): many consistency improvements
- enh(scss): many consistency improvements
- enh(stylus): many consistency improvements
- enh(less): many consistency improvements
- enh(cpp): Support C++ pack expansion in function arguments [Martin Dørum][]
- enh(makefile): Add `make` as an alias (#2883) [tripleee][]
- enh(swift) Improved grammar for strings (#2819) [Steven Van Impe][]
- enh(swift) Grammar improvements (#2908) [Steven Van Impe][]
- New grammar for keywords and built-ins
- Added support for operator highlighting
- New grammar for attributes
- Added support for quoted identifiers, implicit parameters, and property wrapper projections
- Support for more complex expressions in string interpolation
- enh(swift) Improved highlighting for types and generic arguments (#2920) [Steven Van Impe][]
- enh(swift) Improved highlighting for functions, initializers, and subscripts (#2930) [Steven Van Impe][]
- fix(http) avoid recursive sublanguage and tighten rules (#2893) [Josh Goebel][]
- fix(asciidoc): Handle section titles level 5 (#2868) [Vaibhav Chanana][]
- fix(asciidoc): Support unconstrained emphasis syntax (#2869) [Guillaume Grossetie][]
- enh(scheme) Allow `[]` for argument lists (#2913) [Josh Goebel][]
- enh(vb) Large rework of VB.net grammar (#2808) [Jan Pilzer][]
- Adds support for Date data types, see (#2775)
- Adds support for `REM` comments and fixes `'''` doctags (#2875) (#2851)
- Custom number mode to support VB.net specific number flags
- Hex (&H), Oct (&O), and binary (&B) prefixes
- Separating digits with underscores: 90_946
- Type suffixes: 123UI (unsigned integer)
- Improves directives detection and adds support for `Enable`, `Disable`, and `Then` keywords
- Adds more markup tests
- fix(javascript) Empty block-comments break highlighting (#2896) [Jan Pilzer][]
- enh(dart) Fix empty block-comments from breaking highlighting (#2898) [Jan Pilzer][]
- enh(dart) Fix empty doc-comment eating next line [Jan Pilzer][]
- enh(asciidoc) Adds support for unconstrained bold syntax (#2869) [Guillaume Grossetie][]
- enh(c-like) Incorrect highlighting for interger suffix (#2919) [Vaibhav Chanana][]
- enh(properties) Correctly handle trailing backslash (#2922) [Vaibhav Chanana][]
Recent Deprecations:
- HTML "merging" is deprecated. (#2873) [Josh Goebel][]
- HTML inside `<pre>` blocks will no longer be magically merged back into the
highlighted code's HTML result - it will instead be silently removed.
- Consider [using a plugin][htmlPlugin] if you truly need this functionality
- Deprecated as of 10.5.0 - will be removed in v11.
- `tabReplace` option deprecated. (#2873) [Josh Goebel][]
- **Consider:** Use the CSS `tab-size` property, or simply pre-process the
text yourself before rendering the initial HTML
- otherwise, [use a plugin][tabPlugin]
- Deprecated as of 10.5.0 - will be removed in v11.
- `useBR` option deprecated. (#2559) [Josh Goebel][]
- **Recommended:** You really should just use the HTML `<pre>` tag
- or perhaps try CSS `white-space: pre;`
- otherwise, [use a plugin][brPlugin]
- Deprecated as of 10.3.0 - will be removed in v11.
- `requireLanguage` API is deprecated, will be removed in v11.0.
- **Consider:** Use `getLanguage` (with custom error handling) or built-time dependencies.
- See [Library API](https://highlightjs.readthedocs.io/en/latest/api.html#requirelanguage-name) for more information.
- Deprecated as of 10.4.0 - will be removed in v11.
[htmlPlugin]: https://github.com/highlightjs/highlight.js/issues/2889
[tabPlugin]: https://github.com/highlightjs/highlight.js/issues/2874
[brPlugin]: https://github.com/highlightjs/highlight.js/issues/2559
[Martin Dørum]: https://github.com/mortie
[Jan Pilzer]: https://github.com/Hirse
[Oldes Huhuman]: https://github.com/Oldes
[Josh Goebel]: https://github.com/joshgoebel
[tripleee]: https://github.com/tripleee
[Steven Van Impe]: https://github.com/svanimpe/
[Vaibhav Chanana]: https://github.com/il3ven
[Guillaume Grossetie]: https://github.com/mogztter
## Version 10.4.1 (tentative)
Security
- (fix) Exponential backtracking fixes for: [Josh Goebel][]
- cpp
- handlebars
- gams
- perl
- jboss-cli
- r
- erlang-repl
- powershell
- routeros
- (fix) Polynomial backtracking fixes for: [Josh Goebel][]
- asciidoc
- reasonml
- latex
- kotlin
- gcode
- d
- aspectj
- moonscript
- coffeescript/livescript
- csharp
- scilab
- crystal
- elixir
- basic
- ebnf
- ruby
- fortran/irpf90
- livecodeserver
- yaml
- x86asm
- dsconfig
- markdown
- ruleslanguage
- xquery
- sqf
Very grateful to [Michael Schmidt][] for all the help.
[Michael Schmidt]: https://github.com/RunDevelopment
[Josh Goebel]: https://github.com/joshgoebel
## Version 10.4.0
A largish release with many improvements and fixes from quite a few different contributors. Enjoy!
Deprecations:
- (chore) `requireLanguage` is deprecated.
- Prefer `getLanguage` (with custom error handling) or built-time dependencies.
- See [Library API](https://highlightjs.readthedocs.io/en/latest/api.html#requirelanguage-name) for more information.
Parser:
- enh(parser) use negative look-ahead for `beginKeywords` support (#2813) [Josh Goebel][]
- enh(grammars) allow `classNameAliases` for more complex grammars [Josh Goebel][]
- fix(vue): Language name now appears in CSS class (#2807) [Michael Rush][]
- (chore) Clean up all regexs to be UTF-8 compliant/ready (#2759) [Josh Goebel][]
- enh(grammars) allow `classNameAliases` for more complex grammars [Josh Goebel][]
New Languages:
- Added 3rd party Chapel grammar to SUPPORTED_LANGUAGES (#2806) [Brad Chamberlain][]
- Added BBCode grammar to SUPPORTED_LANGUAGES (#2867) [Paul Reid][]
- enh(javascript) Added `node-repl` for Node.js REPL sessions (#2792) [Marat Nagayev][]
Language Improvements:
- enh(shell) Recognize prompts which contain tilde `~` (#2859) [Guillaume Grossetie][]
- enh(shell) Add support for multiline commands with line continuation `\` (#2861) [Guillaume Grossetie][]
- enh(autodetect) Over 30+ improvements to auto-detect (#2745) [Josh Goebel][]
- 4-5% improvement in auto-detect against large sample set
- properties, angelscript, lsl, javascript, n1ql, ocaml, ruby
- protobuf, hy, scheme, crystal, yaml, r, vbscript, groovy
- python, java, php, lisp, matlab, clojure, csharp, css
- fix(r) fixed keywords not properly spaced (#2852) [Josh Goebel][]
- fix(javascript) fix potential catastrophic backtracking (#2852) [Josh Goebel][]
- fix(livescript) fix potential catastrophic backtracking (#2852) [Josh Goebel][]
- bug(xml) XML grammar was far too imprecise/fuzzy [Josh Goebel][]
- enh(xml) Improve precision to prevent false auto-detect positives [Josh Goebel][]
- fix(js/ts) Prevent for/while/if/switch from falsly matching as functions (#2803) [Josh Goebel][]
- enh(julia) Update keyword lists for Julia 1.x (#2781) [Fredrik Ekre][]
- enh(python) Match numeric literals per the language reference [Richard Gibson][]
- enh(ruby) Match numeric literals per language documentation [Richard Gibson][]
- enh(javascript) Match numeric literals per ECMA-262 spec [Richard Gibson][]
- enh(java) Match numeric literals per Java Language Specification [Richard Gibson][]
- enh(swift) Match numeric literals per language reference [Richard Gibson][]
- enh(php) highlight variables (#2785) [Taufik Nurrohman][]
- fix(python) Handle comments on decorators (#2804) [Jonathan Sharpe][]
- enh(diff) improve highlighting of diff for git patches [Florian Bezdeka][]
- fix(llvm) lots of small improvements and fixes (#2830) [Josh Goebel][]
- enh(mathematica) Rework entire implementation [Patrick Scheibe][]
- Correct matching of the many variations of Mathematica's numbers
- Matching of named-characters aka special symbols like `\[Gamma]`
- Updated list of version 12.1 built-in symbols
- Matching of patterns, slots, message-names and braces
- fix(swift) Handle keywords that start with `#` [Marcus Ortiz][]
- enh(swift) Match `some` keyword [Marcus Ortiz][]
- enh(swift) Match `@main` attribute [Marcus Ortiz][]
Dev Improvements:
- chore(dev) add theme picker to the tools/developer tool (#2770) [Josh Goebel][]
- fix(dev) the Vue.js plugin no longer throws an exception when hljs is not in the global namespace [Kyle Brown][]
New themes:
- *StackOverflow Dark* by [Jan Pilzer][]
- *StackOverflow Light* by [Jan Pilzer][]
[Guillaume Grossetie]: https://github.com/mogztter
[Brad Chamberlain]: https://github.com/bradcray
[Marat Nagayev]: https://github.com/nagayev
[Fredrik Ekre]: https://github.com/fredrikekre
[Richard Gibson]: https://github.com/gibson042
[Josh Goebel]: https://github.com/joshgoebel
[Taufik Nurrohman]: https://github.com/taufik-nurrohman
[Jan Pilzer]: https://github.com/Hirse
[Jonathan Sharpe]: https://github.com/textbook
[Michael Rush]: https://github.com/rushimusmaximus
[Patrick Scheibe]: https://github.com/halirutan
[Kyle Brown]: https://github.com/kylebrown9
[Marcus Ortiz]: https://github.com/mportiz08
[Paul Reid]: https://github.com/RedGuy12
## Version 10.3.1
Prior version let some look-behind regex sneak in, which does not work
yet on Safari. This release removes those incompatible regexes.
Fix:
- fix(Safari) Remove currently unsupported look-behind regex ([fix][187e7cfc]) [Josh Goebel][]
[Josh Goebel]: https://github.com/joshgoebel
[187e7cfc]: https://github.com/highlightjs/highlight.js/commit/187e7cfcb06277ce13b5f35fb6c37ab7a7b46de9
## Version 10.3.0
Language Improvements:
- enh(latex) Complete ground up rewrite of LaTex grammar [schtandard][]
- fix(cpp) implement backslash line continuation in comments (#2757) [Konrad Rudolph][]
- fix(cpp) improve parsing issues with templates (#2752) [Josh Goebel][]
- enh(cpp) add support for `enum (struct|class)` and `union` (#2752) [Josh Goebel][]
- fix(js/ts) Fix nesting of `{}` inside template literals SUBST expression (#2748) [Josh Goebel][]
- enh(js/ts) Highlight class methods as functions (#2727) [Josh Goebel][]
- fix(js/ts) `constructor` is now highlighted as a function title (not keyword) (#2727) [Josh Goebel][]
- fix(c-like) preprocessor directives not detected after else (#2738) [Josh Goebel][]
- enh(javascript) allow `#` for private class fields (#2701) [Chris Krycho][]
- fix(js) prevent runaway regex (#2746) [Josh Goebel][]
- fix(bash) enh(bash) allow nested params (#2731) [Josh Goebel][]
- fix(python) Fix highlighting of keywords and strings (#2713, #2715) [Konrad Rudolph][]
- fix(fsharp) Prevent `(*)` from being detected as a multi-line comment [Josh Goebel][]
- enh(bash) add support for heredocs (#2684) [Josh Goebel][]
- enh(r) major overhaul of the R language grammar (and fix a few bugs) (#2680) [Konrad Rudolph][]
- enh(csharp) Add all C# 9 keywords, and other missing keywords (#2679) [David Pine][]
- enh(objectivec) Add `objective-c++` and `obj-c++` aliases for Objective-C [Josh Goebel][]
- enh(java) Add support for `record` (#2685) [Josh Goebel][]
- fix(csharp) prevent modifier keywords wrongly flagged as `title` (#2683) [Josh Goebel][]
- enh(axapta) Update keyword list for Axapta (X++) (#2686) [Ryan Jonasson][]
- fix(fortran) FORTRAN 77-style comments (#2677) [Philipp Engel][]
- fix(javascript) Comments inside params should be highlighted (#2702) [Josh Goebel][]
- fix(scala) Comments inside class header should be highlighted (#1559) [Josh Goebel][]
- fix(c-like) Correctly highlight modifiers (`final`) in class declaration (#2696) [Josh Goebel][]
- enh(angelscript) Improve heredocs, numbers, metadata blocks (#2724) [Melissa Geels][]
- enh(javascript) Implement Numeric Separators (#2617) [Antoine du Hamel][]
- enh(typescript) TypeScript also gains support for numeric separators (#2617) [Antoine du Hamel][]
- enh(php) Add support for PHP 8 `match` keyword and add `php8` as an alias (#2733) [Ayesh Karunaratne][]
- fix(handlebars) Support if else keyboards (#2659) [Tom Wallace][]
Deprecations:
- `useBR` option deprecated and will be removed in v11.0. (#2559) [Josh Goebel][]
[Chris Krycho]: https://github.com/chriskrycho
[David Pine]: https://github.com/IEvangelist
[Ryan Jonasson]: https://github.com/ryanjonasson
[Philipp Engel]: https://github.com/interkosmos
[Konrad Rudolph]: https://github.com/klmr
[Melissa Geels]: https://github.com/codecat
[Antoine du Hamel]: https://github.com/aduh95
[Ayesh Karunaratne]: https://github.com/Ayesh
[Tom Wallace]: https://github.com/thomasmichaelwallace
[schtandard]: https://github.com/schtandard
## Version 10.2.1
Parser Engine:
- fix(parser) complete fix for resuming matches from same index (#2678) [Josh Goebel][]
[Josh Goebel]: https://github.com/yyyc514
## Version 10.2.0
Parser Engine:
- (fix) When ignoring a potential match highlighting can terminate early (#2649) [Josh Goebel][]
New themes:
- *Gradient Light* by [Samia Ali]()
Deprecations:
- `fixMarkup` is now deprecated and will be removed in v11.0. (#2534) [Josh Goebel][]
Big picture:
- Add simple Vue plugin for basic use cases (#2544) [Josh Goebel][]
Language Improvements:
- fix(bash) Fewer false positives for keywords in arguments (#2669) [sirosen][]
- fix(js) Prevent long series of /////// from causing freezes (#2656) [Josh Goebel][]
- enh(csharp) Add `init` and `record` keywords for C# 9.0 (#2660) [Youssef Victor][]
- enh(matlab) Add new R2019b `arguments` keyword and fix `enumeration` keyword (#2619) [Andrew Janke][]
- fix(kotlin) Remove very old keywords and update example code (#2623) [kageru][]
- fix(night) Prevent object prototypes method values from being returned in `getLanguage` (#2636) [night][]
- enh(java) Add support for `enum`, which will identify as a `class` now (#2643) [ezksd][]
- enh(nsis) Add support for NSIS 3.06 commands (#2653) [idleberg][]
- enh(php) detect newer more flexible HEREdoc syntax (#2658) [eytienne][]
[Youssef Victor]: https://github.com/Youssef1313
[Josh Goebel]: https://github.com/joshgoebel
[Andrew Janke]: https://github.com/apjanke
[Samia Ali]: https://github.com/samiaab1990
[kageru]: https://github.com/kageru
[night]: https://github.com/night
[ezksd]: https://github.com/ezksd
[idleberg]: https://github.com/idleberg
[eytienne]: https://github.com/eytienne
[sirosen]: https://github.com/sirosen
## Version 10.1.1
Fixes:
- Resolve issue on Node 6 due to dangling comma (#2608) [Edwin Hoogerbeets][]
- Resolve `index.d.ts is not a module` error (#2603) [Josh Goebel][]
[Josh Goebel]: https://github.com/joshgoebel
[Edwin Hoogerbeets]: https://github.com/ehoogerbeets
## Version 10.1.0
New themes:
- *NNFX* and *NNFX-dark* by [Jim Mason][]
- *lioshi* by [lioshi][]
Parser Engine:
- (parser) Now escapes quotes in text content when escaping HTML (#2564) [Josh Goebel][]
- (parser) Adds `keywords.$pattern` key to grammar definitions (#2519) [Josh Goebel][]
- (parser) Adds SHEBANG utility mode [Josh Goebel][]
- (parser) Adds `registerAliases` method (#2540) [Taufik Nurrohman][]
- (enh) Added `on:begin` callback for modes (#2261) [Josh Goebel][]
- (enh) Added `on:end` callback for modes (#2261) [Josh Goebel][]
- (enh) Added ability to programatically ignore begin and end matches (#2261) [Josh Goebel][]
- (enh) Added `END_SAME_AS_BEGIN` mode to replace `endSameAsBegin` parser attribute (#2261) [Josh Goebel][]
- (fix) `fixMarkup` would rarely destroy markup when `useBR` was enabled (#2532) [Josh Goebel][]
Deprecations:
- `htmlbars` grammar is now deprecated. Use `handlebars` instead. (#2344) [Nils Knappmeier][]
- when using `highlightBlock` `result.re` deprecated. Use `result.relevance` instead. (#2552) [Josh Goebel][]
- ditto for `result.second_best.re` => `result.second_best.relevance` (#2552)
- `lexemes` is now deprecated in favor of `keywords.$pattern` key (#2519) [Josh Goebel][]
- `endSameAsBegin` is now deprecated. (#2261) [Josh Goebel][]
Language Improvements:
- fix(groovy) strings are not allowed inside ternary clauses (#2217) [Josh Goebel][]
- fix(typescript) add `readonly` keyword (#2562) [Martin (Lhoerion)][]
- fix(javascript) fix regex inside parens after a non-regex (#2530) [Josh Goebel][]
- enh(typescript) use identifier to match potential keywords, preventing false positivites (#2519) [Josh Goebel][]
- enh(javascript) use identifier to match potential keywords, preventing false positivites (#2519) [Josh Goebel][]
- [enh] Add `OPTIMIZE:` and `HACK:` to the labels highlighted inside comments [Josh Goebel][]
- enh(typescript/javascript/coffeescript/livescript) derive ECMAscript keywords from a common foudation (#2518) [Josh Goebel][]
- enh(typescript) add setInterval, setTimeout, clearInterval, clearTimeout (#2514) [Josh Goebel][]
- enh(javascript) add setInterval, setTimeout, clearInterval, clearTimeout (#2514) [Vania Kucher][]
- enh(cpp) add `pair`, `make_pair`, `priority_queue` as built-ins (#2538) [Hankun Lin][]
- enh(cpp) recognize `priority_queue` `pair` as cpp containers (#2541) [Hankun Lin][]
- fix(javascript) prevent `set` keyword conflicting with setTimeout, etc. (#2514) [Vania Kucher][]
- fix(cpp) Fix highlighting of unterminated raw strings (#2261) [David Benjamin][]
- fix(javascript) `=>` function with nested `()` in params now works (#2502) [Josh Goebel][]
- fix(typescript) `=>` function with nested `()` in params now works (#2502) [Josh Goebel][]
- fix(yaml) Fix tags to include non-word characters (#2486) [Peter Plantinga][]
- fix(swift) `@objcMembers` was being partially highlighted (#2543) [Nick Randall][]
- enh(dart) Add `late` and `required` keywords, the `Never` built-in type, and nullable built-in types (#2550) [Sam Rawlins][]
- enh(erlang) Add underscore separators to numeric literals (#2554) [Sergey Prokhorov][]
- enh(handlebars) Support for sub-expressions, path-expressions, hashes, block-parameters and literals (#2344) [Nils Knappmeier][]
- enh(protobuf) Support multiline comments (#2597) [Pavel Evstigneev][]
- fix(toml) Improve key parsing (#2595) [Antoine du Hamel][]
[Josh Goebel]: https://github.com/joshgoebel
[Peter Plantinga]: https://github.com/pplantinga
[David Benjamin]: https://github.com/davidben
[Vania Kucher]: https://github.com/qWici
[Hankun Lin]: https://github.com/Linhk1606
[Nick Randall]: https://github.com/nicked
[Sam Rawlins]: https://github.com/srawlins
[Sergey Prokhorov]: https://github.com/seriyps
[Nils Knappmeier]: https://github.com/nknapp
[Martin (Lhoerion)]: https://github.com/Lhoerion
[Jim Mason]: https://github.com/RocketMan
[lioshi]: https://github.com/lioshi
[Pavel Evstigneev]: https://github.com/Paxa
[Antoine du Hamel]: https://github.com/aduh95
## Version 10.0.2
Brower build:
- [Issue](https://github.com/highlightjs/highlight.js/issues/2505) (bug) Fix: Version 10 fails to load as CommonJS module. (#2511) [Josh Goebel][]
- [Issue](https://github.com/highlightjs/highlight.js/issues/2505) (removal) AMD module loading support has been removed. (#2511) [Josh Goebel][]
Parser Engine Changes:
- [Issue](https://github.com/highlightjs/highlight.js/issues/2522) fix(parser) Fix freez issue with illegal 0 width matches (#2524) [Josh Goebel][]
[Josh Goebel]: https://github.com/joshgoebel
## Version 10.0.1
Parser Engine Changes:
- (bug) Fix sublanguage with no relevance score (#2506) [Josh Goebel][]
[Josh Goebel]: https://github.com/joshgoebel
## Version 10.0.0
New languages:
- add(php-template) Explicit language to detect PHP templates (vs xml) [Josh Goebel][]
- enh(python) Added `python-repl` for Python REPL sessions
- add(never) Added 3rd party Never language support
New themes:
- *Srcery* by [Chen Bin][]
Parser Engine Changes:
- (bug) Fix `beginKeywords` to ignore . matches (#2434) [Josh Goebel][]
- (enh) add `before:highlight` plugin API callback (#2395) [Josh Goebel][]
- (enh) add `after:highlight` plugin API callback (#2395) [Josh Goebel][]
- (enh) split out parse tree generation and HTML rendering concerns (#2404) [Josh Goebel][]
- (enh) every language can have a `name` attribute now (#2400) [Josh Goebel][]
- (enh) improve regular expression detect (less false-positives) (#2380) [Josh Goebel][]
- (enh) make `noHighlightRe` and `languagePrefixRe` configurable (#2374) [Josh Goebel][]
Language Improvements:
- enh(python) Exclude parens from functions params (#2490) [Álvaro Mondéjar][]
- enh(swift) Add `compactMap` to keywords as built_in (#2478) [Omid Golparvar][]
- enh(nim) adds `func` keyword (#2468) [Adnan Yaqoob][]
- enh(xml) deprecate ActionScript inside script tags (#2444) [Josh Goebel][]
- fix(javascript) prevent get/set variables conflicting with keywords (#2440) [Josh Goebel][]
- bug(clojure) Now highlights `defn-` properly (#2438) [Josh Goebel][]
- enh(bash) default value is another variable (#2439) [Josh Goebel][]
- enh(bash) string nested within string (#2439) [Josh Goebel][]
- enh(bash) Add arithmetic expression support (#2439) [Josh Goebel][]
- enh(clojure) Add support for global definitions name (#2347) [Alexandre Grison][]
- enh(fortran) Support Fortran 77 style comments (#2416) [Josh Goebel][]
- (csharp) add support for `@identifier` style identifiers (#2414) [Josh Goebel][]
- fix(elixir) Support function names with a slash (#2406) [Josh Goebel][]
- fix(javascript) comma is allowed in a "value container" (#2403) [Josh Goebel][]
- enh(apache) add `deny` and `allow` keywords [Josh Goebel][]
- enh(apache) highlight numeric attributes values [Josh Goebel][]
- enh(apache) highlight IP addresses, ports, and strings in sections [Josh Goebel][]
- enh(php) added more keywords and include `<?=` syntax to meta [Taufik Nurrohman][]
- fix(protobuf) Fix `rpc` when followed by a block (#) [Josh Goebel][]
- enh(zephir) almost complete rework of the zephir grammar (#2387) [Josh Goebel][]
- (markdown) much improved code block support (#2382) [Josh Goebel][]
- (markdown) improve bold/italic nesting (#2382) [Josh Goebel][]
- enh(csharp) Support `where` keyword as class constraint (#2378) [Josh Goebel][]
- enh(csharp) Allow reference path in class inheritance lists (#2378) [Josh Goebel][]
- enh(csharp) Add generic modifiers (in, out) (#2378) [Josh Goebel][]
- (fortran) enh(fortran) support intrinsic data types (#2379) [Josh Goebel][]
- enh(java) annotations can include numbers (#2377) [Josh Goebel][]
- enh(java) annotations can take params (#2377) [Josh Goebel][]
- enh(java) allow annotations inside function call params (#2377) [Josh Goebel][]
- enh(parser) pre/post-highlightBlock callbacks via plugin (#2285) [Josh Goebel][]
- (fortran) Add Fortran 2018 keywords and coarray intrinsics (#2361) [Sam Miller][]
- (delphi) highlight hexadecimal, octal, and binary numbers (#2370) [Robert Riebisch]()
- enh(plaintext) added `text` and `txt` as alias (#2360) [Taufik Nurrohman][]
- enh(powershell) added PowerShell v5.1/v7 default aliases as "built_in"s (#2423) [Sean Williams][]
- enh(yaml) added support for timestamps (#2475) [Peter Plantinga][]
Developer Tools:
- added Dockerfile for optionally developing with a container
[Omid Golparvar]: https://github.com/omidgolparvar
[Alexandre Grison]: https://github.com/agrison
[Josh Goebel]: https://github.com/joshgoebel
[Chen Bin]: https://github.com/redguardtoo
[Sam Miller]: https://github.com/smillerc
[Robert Riebisch]: https://github.com/bttrx
[Taufik Nurrohman]: https://github.com/taufik-nurrohman
[Josh Goebel]: https://github.com/joshgoebel
[Sean Williams]: https://github.com/hmmwhatsthisdo
[Adnan Yaqoob]: https://github.com/adnanyaqoobvirk
[Álvaro Mondéjar]: https://github.com/mondeja
## Version 9.18.1
Grammar Improvements:
- bug(coffeescript) fix freezing bug due to badly behaved regex (#2376) [Josh Goebel][]
[Josh Goebel]: https://github.com/joshgoebel
## Version 9.18.0
New languages:
- none.
New themes:
- none.
Core Changes:
- none.
Language Improvements:
- (javascript) fix JSX self-closing tag issues (#2322) [Josh Goebel][]
- (fortran) added `block` and `endblock` keywords (#2343) [Philipp Engel][]
- (javascript) support jsx fragments (#2333) [Josh Goebel][]
- (ini) support TOML arrays, clean up grammar (#2335) [Josh Goebel][]
- (vbnet) add nameof operator to the keywords (#2329) [Youssef Victor][]
- (stan) updated with improved coverage of language keywords and patterns. (#1829) [Jeffrey Arnold][]
- enh(cpp) Detect namespaced function types (`A::typeName func(...)`) (#2332) [Josh Goebel][]
- enh(cpp) Detect namespaced functions also (`A::functionName`) (#2332) [Josh Goebel][]
- enh(cpp) Properly detect decltype(auto) (#2332) [Josh Goebel][]
- enh(cpp) recognize primitive types (`int8_t`, etc.) as function types (#2332) [Josh Goebel][]
Developer Tools:
- feat(developer): add button to show parsed structure (#2345) [Nils Knappmeier][]
[Jeffrey Arnold]: https://github.com/jrnold
[Josh Goebel]: https://github.com/joshgoebel
[Philipp Engel]: https://github.com/interkosmos
[Youssef Victor]: https://github.com/Youssef1313
[Nils Knappmeier]: https://github.com/nknapp
## Version 9.17.1
Fixes:
- fix(parser): resolve IE 11 issue with Object.freeze() (#2319) [Josh Goebel][]
[Josh Goebel]: https://github.com/joshgoebel
## Version 9.17.0
New languages:
- none.
New themes:
- *Gradient Dark* by [Samia Ali][]
Core Improvements:
- chore(parser): switch from `createElementNS` to `createElement` (#2314) [Josh Goebel][]
- enh(parser): add better error when a language requirement is missing (#2311) [Josh Goebel][]
- fix(parser/docs): disallow `self` mode at the top-level of a language (#2294) [Josh Goebel][]
- enh(parser) add safe & debug modes. Better error handling for crash conditions. (#2286) [Josh Goebel][]
- fix(parser): Fix merger HTML attribute quoting (#2235) [Josh Goebel][]
- fix(parser): Look-ahead regex now work for end matches also (#2237) [Josh Goebel][]
- fix(parser): Better errors when a language is missing (#2236) [Josh Goebel][]
- fix(parser): freeze built-in modes to prevent grammars altering them (#2271) [Josh Goebel][]
- fix(themes): fix inconsistencies between some themes padding/spacing (#2300) [Josh Goebel][]
- ehh(build) Add CI check for building a "use strict" safe rollup package from NPM builds (#2247) [Josh Goebel][]
- fix(pkg): Prefix global addEventListener with window to be able to minify with closure compiler (#2305) [Kirill Saksin]()
Language Improvements:
- fix(sql): backslash is not used to escape in strings in standard SQL (#1748) [Mike Schall][]
- enh(ebnf) add backticks as additional string variant (#2290) [Chris Marchesi][]
- chore(javascript): add esm related extensions to aliases (#2298) [Rongjian Zhang][]
- fix(kotlin): fix termination of """ string literals (#2295) [Josh Goebel][]
- fix(mercury): don't change global STRING modes (#2271) [Josh Goebel][]
- enh(xml) expand and improve document type highlighting (#2287) [w3suli][]
- enh(ebnf) add underscore as allowed meta identifier character, and dot as terminator (#2281) [Chris Marchesi][]
- fix(makefile) fix double relevance for assigns, improves auto-detection (#2278) [Josh Goebel][]
- enh(xml) support for highlighting entities (#2260) [w3suli][]
- enh(gml) fix naming of keyword class (consistency fix) (#2254) [Liam Nobel][]
- enh(javascript): Add support for jsdoc comments (#2245) [Milutin Kristofic][]
- fix(python) fix `if` getting confused as an f-string (#2200) [Josh Goebel][] and [Carl Baxter][]
- enh(powershell) major overhaul, huge improvements (#2224)
- enh(css) Improve @rule highlighting, including properties (#2241) [Josh Goebel][]
- enh(css) Improve highlighting of numbers inside expr/func `calc(2px+3px)` (#2241)
- enh(scss) Pull some of the CSS improvements back into SCSS (#2241)
- fix(go): Fix escaped character literals (#2266) [David Benjamin][]
- fix(objectivec): Fix various preprocessor highlighting issues (#2265) [David Benjamin][]
- fix(objectivec): Handle multibyte character literals (#2268) [David Benjamin][]
- enh(cpp): Add additional keywords (#2289) [Adrian Ostrowski][]
[Josh Goebel]: https://github.com/joshgoebel
[Liam Nobel]: https://github.com/liamnobel
[Carl Baxter]: https://github.com/cdbax
[Milutin Kristofic]: https://github.com/milutin
[w3suli]: https://github.com/w3suli
[David Benjamin]: https://github.com/davidben
[Chris Marchesi]: https://github.com/vancluever
[Adrian Ostrowski]: https://github.com/aostrowski
[Rongjian Zhang]: https://github.com/pd4d10
[Mike Schall]: https://github.com/schallm
[Kirill Saksin]: https://github.com/saksmt
[Samia Ali]:https://github.com/samiaab1990
[Erik Demaine]:https://github.com/edemaine
## Version 9.16.2
New languages:
none.
New styles:
none.
Improvements:
- fix(arduino) Resolves issue with arduino.js not being "use strict" safe (#2247)
## Version 9.16.1
New languages:
none.
New styles:
- *Night Owl* by [Carl Baxter][]
Improvements:
- Add CLI tool to quickly check for relevance conflicts [Mark Ellis][] (#1554)
- enhance(twig) update list of filter and tags (#2090)
- fix(crystal): correctly highlight `!~` method definition (#2222)
- fix dropping characters if we choke up on a 0-width match (#2219)
- (accesslog) improve accesslog relevancy scoring (#2172)
- fix(shell): fix parsing of prompts with forward slash (#2218)
- improve parser to properly support look-ahead regex in begin matchers (#2135)
- blacklist super-common keywords from having relevance (#2179)
- fix(swift): support for `@dynamicMemberLookup` and `@propertyWrapper` (#2202)
- fix: `endWithParent` inside `starts` now always works (#2201)
- fix(typescript): constructor in declaration doesn't break highlighting
- fix(typescript): only match function keyword as a separate identifier (#2191)
- feature(arduino) make arduino a super-set of cpp grammar
- fix(javascript): fix object attributes immediately following line comments
- fix(xml): remove `vbscript` as potential script tag subLanguage
- fix(Elixir): improve regex for numbers
- fix(YAML): improve matching for keys, blocks and numbers
- fix(Pony): improve regex for numbers
- fix(handlebars): add support for raw-blocks, and triple-mustaches(#2175)
- fix(handlebars): fix parsing of block-comments containing closing mustaches (#2175)
- fix(handlebars): add support for segment-literal notation, and escaped mustaches (#2184)
- JSON: support for comments in JSON (#2016)
- fix(cpp): improve string literal matching
- fix(highlight.js): omit empty span-tags in the output (#2182)
- fix(Go): improve function declaration matching
- fix(python): added support for f-string literal curly braces (#2195)
- fix(cpp): add `future` built-in (#1610)
- fix(python): support comments within function parameters (#2214)
[Carl Baxter]: https://github.com/cdbax
[Mark Ellis]: https://github.com/ellismarkf
## Version 9.15.10
New languages:
none.
New styles:
none.
Improvements:
- support for ruby's squiggly heredoc (#2049)
- support css custom properties (#2082)
- fix(PureBASIC): update to 5.60 (#1508)
- fix(Kotlin): parenthesized types in function declaration (#2107)
- fix(Kotlin): nested comment (#2104)
- fix(isbl): contains key typo (#2103)
- fix(github-gist.css): match Github styles (#2100)
- fix(elm): update to latest elm syntax (#2088)
- fix: Support highlighting inline HTML and CSS tagged template strings in JS and TS (#2105)
- feat(YAML): add YAML to common languages (#1952)
- feat(xml): Add support for Windows Script File (.wsf), inline VBScript in XML `script` tags (#1690)
## Version 9.15.9
Improvements:
- fix(AutoHotkey): order and extended highlighting (#1579)
- fix(Go): correctly highlight hex numbers, rather than stopping at last 'd' or 'f'. (#2060)
- fix(Mathematica): Improvements to language (#2065)
- fix(Node): Adds SCSS build (#2079)
- fix(Rust): update keywords (#2052)
- fix(Stata): Added keywords for the meta-analysis suite introduced in Stata 16 (#2081)
- fix(Bash): escape double quotes (#2048)
## Version 9.15.8
New languages:
none.
New styles:
none.
Improvements:
- fix(bash): revert escaped double quotes - broke Firefox/Safari.
## Version 9.15.7
New languages:
none.
New styles:
none.
Improvements:
- fix(powershell): Add cmdlets (#2022)
- fix(Bash): escaped double quotes (#2041)
- fix(c++): add aliases 'hh', 'hxx', 'cxx' (#2017)
- fix(ini/toml): Support comments on the same line. (#2039)
- fix(JSX): not rendering well in a function without parentheses. (#2024)
- fix(LiveCode): language definition update (#2021)
- fix(markdown): indented lists (#2004)
- fix(styles/school-book): don't style all the pre, use .hljs instead (#2034)
- fix(JSX): Modify JSX tag detection to use XML language regex in place of simplistic \w+
## Version 9.15.6
New languages:
none.
New styles:
none.
Improvements:
- Move dependencies to be devDependencies.
- Fixed security issues in dev dependencies.
## Version 9.15.5
New languages:
none.
New styles:
none.
Improvements:
🔥 Hot fix: updated build tool.
## Version 9.15.4
New languages:
none.
New styles:
none.
Improvements:
🔥 Hot fix: reverted hljs cli build tool, as it was causing issues with install.
## Version 9.15.3
New languages:
none.
New styles:
none.
Improvements:
🔥 Hot fix: reverted hljs cli build tool, as it was causing issues with install.
## Version 9.15.2
New languages:
none.
New styles:
none.
Improvements:
🔥 Hot fix that was preventing highlight.js from installing.
## Version 9.15.1
New languages:
none.
New styles:
none.
Improvements:
- 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.
- Support external language files in minified version of highlight.js (#1888)
## Version 9.15
New languages:
none.
New styles:
none.
Improvements:
- new cli tool `hljs` - allows easier [building from command line](docs/building-testing.rst#building-a-bundle-from-the-command-line).
- cpp: Fully support C++11 raw strings. (#1897)
- Python: Treat False None and True as literals (#1920)
## Version 9.14.2
New languages:
none.
New styles:
none.
Improvements:
- *Gauss* fixed to stop global namespace pollution [Scott Hyndman][].
- fix(Tcl): removed apostrophe string delimiters (don't exist)
[Scott Hyndman]: https://github.com/shyndman
## Version 9.14.1
New languages:
none.
New styles:
none.
Improvements:
- Pony: language improvements (#1958)
## Version 9.14.0
New languages:
none.
New styles:
none.
Improvements:
- Pony: add missing "object" highlighting (#1932)
- Added *XQuery* built-in functions, prolog declarations, as well as parsing of function bodies, computed and direct constructors, by [Duncan Paterson][]
- fix(dart): Corrects highlighting with string interpolation. (#1946)
- fix(swift): be eager on optional-using types (!/?) (#1919)
- fix(tex): Changed cyrillic to unicode (IE11 throw SCRIPT5021) (#1601)
- fix(JavaScript): Recognize get/set accessor keywords (#1940)
- Fixed Dockerfile definition when using highlight continuation parameter, by [Laurent Voullemier][]
- Added tests & new `annotation` and `verbatim` keywords to *Crystal*, by [Benoit de Chezelles][]
- Added missing dockerfile markup tests, by [Laurent Voullemier][]
Allow empty prompt text in clojure-repl, by [Egor Rogov][]
- Fixed several issues with *Crystal* language definition, by [Johannes Müller][]
- Added `C#` as an alias for *CSharp* language, by [Ahmed Atito][]
- Added generic user-defined proc support, new compiler define, refactor to re-use rules, and add tests to *GAUSS*, by [Matthew Evans][]
- Improve *Crystal* language to highlight regexes after some keywords, by [Tsuyusato Kitsune][]
- Fix filterByQualifiers: fileInfo can be null
- Fixed String interpolation in Dart, by [Scott Hyndman][].
[Laurent Voullemier]: https://github.com/l-vo
[Benoit de Chezelles]: https://github.com/bew
[Johannes Müller]: https://github.com/straight-shoota
[Ahmed Atito]: https://github.com/atitoa93
[Matthew Evans]: https://github.com/matthewevans
[Tsuyusato Kitsune]: https://github.com/MakeNowJust
[Scott Hyndman]: https://github.com/shyndman
[Duncan Paterson]: https://github.com/duncdrum
## Version 9.13.1
Improvements:
- *C#* function declarations no longer include trailing whitespace, by [JeremyTCD][]
- Added new and missing keywords to *AngelScript*, by [Melissa Geels][]
- *TypeScript* decorator factories highlighting fix, by [Antoine Boisier-Michaud][]
- Added support for multiline strings to *Swift*, by [Alejandro Isaza][]
- Fixed issue that was causing some minifiers to fail.
- Fixed `autoDetection` to accept language aliases.
[JeremyTCD]: https://github.com/JeremyTCD
[Melissa Geels]: https://github.com/codecat
[Antoine Boisier-Michaud]: https://github.com/Aboisier
[Alejandro Isaza]: https://github.com/alejandro-isaza
## Version 9.13.0
New languages:
- *ArcGIS Arcade* by [John Foster][]
- *AngelScript* by [Melissa Geels][]
- *GML* by [meseta][]
- *isbl* built-in language DIRECTUM and Conterra by [Dmitriy Tarasov][].
- *PostgreSQL* SQL dialect and PL/pgSQL language by [Egor Rogov][].
- *ReasonML* by [Gidi Meir Morris][]
- *SAS* by [Mauricio Caceres Bravo][]
- *Plaintext* by [Egor Rogov][]
- *.properties* by [bostko][] and [Egor Rogov][]
New styles:
- *a11y-dark theme* by [Eric Bailey][]
- *a11y-light theme* by [Eric Bailey][]
- *An Old Hope* by [Gustavo Costa][]
- *Atom One Dark Reasonable* by [Gidi Meir Morris][]
- *isbl editor dark* by [Dmitriy Tarasov][]
- *isbl editor light* by [Dmitriy Tarasov][]
- *Lightfair* by [Tristian Kelly][]
- [*Nord*][nord-highlightjs] by [Arctic Ice Studio][]
- *[🦄 Shades of Purple](https://github.com/ahmadawais/Shades-of-Purple-HighlightJS)* by [Ahmad Awais][]
Improvements:
- New attribute `endSameAsBegin` for nested constructs with variable names
by [Egor Rogov][].
- *Python* highlighting of escaped quotes fixed by [Harmon][]
- *PHP*: Added alias for php7, by [Vijaya Chandran Mani][]
- *C++* string handling, by [David Benjamin][]
- *Swift* Add `@objcMembers` to `@attributes`, by [Berk Çebi][]
- Infrastructural changes by [Marcos Cáceres][]
- Fixed metachars highighting for *NSIS* by [Jan T. Sott][]
- *Yaml* highlight local tags as types by [Léo Lam][]
- Improved highlighting for *Elixir* by [Piotr Kaminski][]
- New attribute `disableAutodetect` for preventing autodetection by [Egor Rogov][]
- *Matlab*: transpose operators and double quote strings, by [JohnC32][] and [Egor Rogov][]
- Various documentation typos and improvemets by [Jimmy Wärting][], [Lutz Büch][], [bcleland][]
- *Cmake* updated with new keywords and commands by [Deniz Bahadir][]
[Ahmad Awais]: https://github.com/ahmadawais
[Arctic Ice Studio]: https://github.com/arcticicestudio
[Dmitriy Tarasov]: https://github.com/MedvedTMN
[Egor Rogov]: https://github.com/egor-rogov
[Eric Bailey]: https://github.com/ericwbailey
[Gidi Meir Morris]: https://github.com/gmmorris
[Gustavo Costa]: https://github.com/gusbemacbe
[Harmon]: https://github.com/Harmon758
[Melissa Geels]: https://github.com/codecat
[meseta]: https://github.com/meseta
[nord-highlightjs]: https://github.com/arcticicestudio/nord-highlightjs
[Tristian Kelly]: https://github.com/TristianK3604
[Vijaya Chandran Mani]: https://github.com/vijaycs85
[John Foster]: https://github.com/jf990
[David Benjamin]: https://github.com/davidben
[Berk Çebi]: https://github.com/berkcebi
[Mauricio Caceres Bravo]: https://github.com/mcaceresb
[bostko]: https://github.com/bostko
[Deniz Bahadir]: https://github.com/Bagira80
[bcleland]: https://github.com/bcleland
[JohnC32]: https://github.com/JohnC32
[Lutz Büch]: https://github.com/lutz-100worte
[Piotr Kaminski]: https://github.com/pkaminski
[Léo Lam]: https://github.com/leoetlino
[Jan T. Sott]: https://github.com/idleberg
[Jimmy Wärting]: https://github.com/jimmywarting
[Marcos Cáceres]: https://github.com/marcoscaceres
## Version 9.12.0
New language:
- *MikroTik* RouterOS Scripting language by [Ivan Dementev][].
New style:
- *VisualStudio 2015 Dark* by [Nicolas LLOBERA][]
Improvements:
- *Crystal* updated with new keywords and syntaxes by [Tsuyusato Kitsune][].
- *Julia* updated to the modern definitions by [Alex Arslan][].
- *julia-repl* added by [Morten Piibeleht][].
- [Stanislav Belov][] wrote a new definition for *1C*, replacing the one that
has not been updated for more than 8 years. The new version supports syntax
for versions 7.7 and 8.
- [Nicolas LLOBERA][] improved C# definition fixing edge cases with function
titles detection and added highlighting of `[Attributes]`.
- [nnnik][] provided a few correctness fixes for *Autohotkey*.
- [Martin Clausen][] made annotation collections in *Clojure* to look
consistently with other kinds.
- [Alejandro Alonso][] updated *Swift* keywords.
[Tsuyusato Kitsune]: https://github.com/MakeNowJust
[Alex Arslan]: https://github.com/ararslan
[Morten Piibeleht]: https://github.com/mortenpi
[Stanislav Belov]: https://github.com/4ppl
[Ivan Dementev]: https://github.com/DiVAN1x
[Nicolas LLOBERA]: https://github.com/Nicolas01
[nnnik]: https://github.com/nnnik
[Martin Clausen]: https://github.com/maacl
[Alejandro Alonso]: https://github.com/Azoy
## Version 9.11.0
New languages:
- *Shell* by [Tsuyusato Kitsune][]
- *jboss-cli* by [Raphaël Parrëe][]
Improvements:
- [Joël Porquet] has [greatly improved the definition of *makefile*][5b3e0e6].
- *C++* class titles are now highlighted as in other languages with classes.
- [Jordi Petit][] added rarely used `or`, `and` and `not` keywords to *C++*.
- [Pieter Vantorre][] fixed highlighting of negative floating point values.
[Tsuyusato Kitsune]: https://github.com/MakeNowJust
[Jordi Petit]: https://github.com/jordi-petit
[Raphaël Parrëe]: https://github.com/rparree
[Pieter Vantorre]: https://github.com/NuclearCookie
[5b3e0e6]: https://github.com/isagalaev/highlight.js/commit/5b3e0e68bfaae282faff6697d6a490567fa9d44b
## Version 9.10.0
Apologies for missing the previous release cycle. Some thing just can't be
automated… Anyway, we're back!
New languages:
- *Hy* by [Sergey Sobko][]
- *Leaf* by [Hale Chan][]
- *N1QL* by [Andres Täht][] and [Rene Saarsoo][]
Improvements:
- *Rust* got updated with new keywords by [Kasper Andersen][] and then
significantly modernized even more by [Eduard-Mihai Burtescu][] (yes, @eddyb,
Rust core team member!)
- *Python* updated with f-literals by [Philipp A][].
- *YAML* updated with unquoted strings support.
- *Gauss* updated with new keywords by [Matt Evans][].
- *Lua* updated with new keywords by [Joe Blow][].
- *Kotlin* updated with new keywords by [Philipp Hauer][].
- *TypeScript* got highlighting of function params and updated keywords by
[Ike Ku][].
- *Scheme* now correctly handles \`-quoted lists thanks to [Guannan Wei].
- [Sam Wu][] fixed handling of `<<` in *C++* defines.
[Philipp A]: https://github.com/flying-sheep
[Philipp Hauer]: https://github.com/phauer
[Sergey Sobko]: https://github.com/profitware
[Hale Chan]: https://github.com/halechan
[Matt Evans]: https://github.com/matthewevans
[Joe Blow]: https://github.com/mossarelli
[Kasper Andersen]: https://github.com/kasma1990
[Eduard-Mihai Burtescu]: https://github.com/eddyb
[Andres Täht]: https://github.com/andrestaht
[Rene Saarsoo]: https://github.com/nene
[Philipp Hauer]: https://github.com/phauer
[Ike Ku]: https://github.com/dempfi
[Guannan Wei]: https://github.com/Kraks
[Sam Wu]: https://github.com/samsam2310
## Version 9.9.0
New languages
- *LLVM* by [Michael Rodler][]
Improvements:
- *TypeScript* updated with annotations and param lists inside constructors, by
[Raphael Parree][].
- *CoffeeScript* updated with new keywords and fixed to recognize JavaScript
in \`\`\`, thanks to thanks to [Geoffrey Booth][].
- Compiler directives in *Delphi* are now correctly highlighted as "meta".
[Raphael Parree]: https://github.com/rparree
[Michael Rodler]: https://github.com/f0rki
[Geoffrey Booth]: https://github.com/GeoffreyBooth
## Version 9.8.0 "New York"
This version is the second one that deserved a name. Because I'm in New York,
and the release isn't missing the deadline only because it's still Tuesday on
West Coast.
New languages:
- *Clean* by [Camil Staps][]
- *Flix* by [Magnus Madsen][]
Improvements:
- [Kenton Hamaluik][] did a comprehensive update for *Haxe*.
- New commands for *PowerShell* from [Nicolas Le Gall][].
- [Jan T. Sott][] updated *NSIS*.
- *Java* and *Swift* support unicode characters in identifiers thanks to
[Alexander Lichter][].
[Camil Staps]: https://github.com/camilstaps
[Magnus Madsen]: https://github.com/magnus-madsen
[Kenton Hamaluik]: https://github.com/FuzzyWuzzie
[Nicolas Le Gall]: https://github.com/darkitty
[Jan T. Sott]: https://github.com/idleberg
[Alexander Lichter]: https://github.com/manniL
## Version 9.7.0
A comprehensive bugfix release. This is one of the best things about
highlight.js: even boring things keep getting better (even if slow).
- VHDL updated with PSL keywords and uses more consistent styling.
- Nested C-style comments no longer break highlighting in many languages.
- JavaScript updated with `=>` functions, highlighted object attributes and
parsing within template string substitution blocks (`${...}`).
- Fixed another corner case with self-closing `<tag/>` in JSX.
- Added `HEALTHCHECK` directive in Docker.
- Delphi updated with new Free Pascal keywords.
- Fixed digit separator parsing in C++.
- C# updated with new keywords and fixed to allow multiple identifiers within
generics `<...>`.
- Fixed another slow regex in Less.
## Version 9.6.0
New languages:
- *ABNF* and *EBNF* by [Alex McKibben][]
- *Awk* by [Matthew Daly][]
- *SubUnit* by [Sergey Bronnikov][]
New styles:
- *Atom One* in both Dark and Light variants by [Daniel Gamage][]
Plus, a few smaller updates for *Lasso*, *Elixir*, *C++* and *SQL*.
[Alex McKibben]: https://github.com/mckibbenta
[Daniel Gamage]: https://github.com/danielgamage
[Matthew Daly]: https://github.com/matthewbdaly
[Sergey Bronnikov]: https://github.com/ligurio
## Version 9.5.0
New languages:
- *Excel* by [Victor Zhou][]
- *Linden Scripting Language* by [Builder's Brewery][]
- *TAP* (Test Anything Protocol) by [Sergey Bronnikov][]
- *Pony* by [Joe Eli McIlvain][]
- *Coq* by [Stephan Boyer][]
- *dsconfig* and *LDIF* by [Jacob Childress][]
New styles:
- *Ocean Dark* by [Gavin Siu][]
Notable changes:
- [Minh Nguyễn][] added more built-ins to Objective C.
- [Jeremy Hull][] fixed corner cases in C++ preprocessor directives and Diff
comments.
- [Victor Zhou][] added support for digit separators in C++ numbers.
[Gavin Siu]: https://github.com/gavsiu
[Builder's Brewery]: https://github.com/buildersbrewery
[Victor Zhou]: https://github.com/OiCMudkips
[Sergey Bronnikov]: https://github.com/ligurio
[Joe Eli McIlvain]: https://github.com/jemc
[Stephan Boyer]: https://github.com/boyers
[Jacob Childress]: https://github.com/braveulysses
[Minh Nguyễn]: https://github.com/1ec5
[Jeremy Hull]: https://github.com/sourrust
## Version 9.4.0
New languages:
- *PureBASIC* by [Tristano Ajmone][]
- *BNF* by [Oleg Efimov][]
- *Ada* by [Lars Schulna][]
New styles:
- *PureBASIC* by [Tristano Ajmone][]
Improvements to existing languages and styles:
- We now highlight function declarations in Go.
- [Taisuke Fujimoto][] contributed very convoluted rules for raw and
interpolated strings in C#.
- [Boone Severson][] updated Verilog to comply with IEEE 1800-2012
SystemVerilog.
- [Victor Zhou][] improved rules for comments and strings in PowerShell files.
- [Janis Voigtländer][] updated the definition of Elm to version 0.17 of the
languages. Elm is now featured on the front page of <https://highlightjs.org>.
- Special variable `$this` is highlighted as a keyword in PHP.
- `usize` and `isize` are now highlighted in Rust.
- Fixed labels and directives in x86 assembler.
[Tristano Ajmone]: https://github.com/tajmone
[Taisuke Fujimoto]: https://github.com/temp-impl
[Oleg Efimov]: https://github.com/Sannis
[Boone Severson]: https://github.com/BooneJS
[Victor Zhou]: https://github.com/OiCMudkips
[Lars Schulna]: https://github.com/captain-hanuta
[Janis Voigtländer]: https://github.com/jvoigtlaender
## Version 9.3.0
New languages:
- *Tagger Script* by [Philipp Wolfer][]
- *MoonScript* by [Billy Quith][]
New styles:
- *xt256* by [Herbert Shin][]
Improvements to existing languages and styles:
- More robust handling of unquoted HTML tag attributes
- Relevance tuning for QML which was unnecessary eager at seizing other
languages' code
- Improve GAMS language parsing
- Fixed a bunch of bugs around selectors in Less
- Kotlin's got a new definition for annotations, updated keywords and other
minor improvements
- Added `move` to Rust keywords
- Markdown now recognizes \`\`\`-fenced code blocks
- Improved detection of function declarations in C++ and C#
[Philipp Wolfer]: https://github.com/phw
[Billy Quith]: https://github.com/billyquith
[Herbert Shin]: https://github.com/initbar
## Version 9.2.0
New languages:
- *QML* by [John Foster][]
- *HTMLBars* by [Michael Johnston][]
- *CSP* by [Taras][]
- *Maxima* by [Robert Dodier][]
New styles:
- *Gruvbox* by [Qeole][]
- *Dracula* by [Denis Ciccale][]
Improvements to existing languages and styles:
- We now correctly handle JSX with arbitrary node tree depth.
- Argument list for `(lambda)` in Scheme is no longer highlighted as a function
call.
- Stylus syntax doesn't break on valid CSS.
- More correct handling of comments and strings and other improvements for
VimScript.
- More subtle work on the default style.
- We now use anonymous modules for AMD.
- `macro_rules!` is now recognized as a built-in in Rust.
[John Foster]: https://github.com/jf990
[Qeole]: https://github.com/Qeole
[Denis Ciccale]: https://github.com/dciccale
[Michael Johnston]: https://github.com/lastobelus
[Taras]: https://github.com/oxdef
[Robert Dodier]: https://github.com/robert-dodier
## Version 9.1.0
New languages:
- *Stan* by [Brendan Rocks][]
- *BASIC* by [Raphaël Assénat][]
- *GAUSS* by [Matt Evans][]
- *DTS* by [Martin Braun][]
- *Arduino* by [Stefania Mellai][]
New Styles:
- *Arduino Light* by [Stefania Mellai][]
Improvements to existing languages and styles:
- Handle return type annotations in Python
- Allow shebang headers in Javascript
- Support strings in Rust meta
- Recognize `struct` as a class-level definition in Rust
- Recognize b-prefixed chars and strings in Rust
- Better numbers handling in Verilog
[Brendan Rocks]: http://brendanrocks.com
[Raphaël Assénat]: https://github.com/raphnet
[Matt Evans]: https://github.com/matthewevans
[Martin Braun]: https://github.com/mbr0wn
[Stefania Mellai]: https://github.com/smellai
## Version 9.0.0
The new major version brings a reworked styling system. Highlight.js now defines
a limited set of highlightable classes giving a consistent result across all the
styles and languages. You can read a more detailed explanation and background in
the [tracking issue][#348] that started this long process back in May.
This change is backwards incompatible for those who uses highlight.js with a
custom stylesheet. The [new style guide][sg] explains how to write styles
in this new world.
Bundled themes have also suffered a significant amount of improvements and may
look different in places, but all the things now consistent and make more sense.
Among others, the Default style has got a refresh and will probably be tweaked
some more in next releases. Please do give your feedback in our
[issue tracker][issues].
New languages in this release:
- *Caché Object Script* by [Nikita Savchenko][]
- *YAML* by [Stefan Wienert][]
- *MIPS Assembler* by [Nebuleon Fumika][]
- *HSP* by [prince][]
Improvements to existing languages and styles:
- ECMAScript 6 modules import now do not require closing semicolon.
- ECMAScript 6 classes constructors now highlighted.
- Template string support for Typescript, as for ECMAScript 6.
- Scala case classes params highlight fixed.
- Built-in names introduced in Julia v0.4 added by [Kenta Sato][].
- Refreshed Default style.
Other notable changes:
- [Web workers support][webworkers] added bu [Jan Kühle][].
- We now have tests for compressed browser builds as well.
- The building tool chain has been switched to node.js 4.x. and is now
shamelessly uses ES6 features all over the place, courtesy of [Jeremy Hull][].
- License added to non-compressed browser build.
[Jan Kühle]: https://github.com/frigus02
[Stefan Wienert]: https://github.com/zealot128
[Kenta Sato]: https://github.com/bicycle1885
[Nikita Savchenko]: https://github.com/ZitRos
[webworkers]: https://github.com/isagalaev/highlight.js#web-workers
[Jeremy Hull]: https://github.com/sourrust
[#348]: https://github.com/isagalaev/highlight.js/issues/348
[sg]: http://highlightjs.readthedocs.org/en/latest/style-guide.html
[issues]: https://github.com/isagalaev/highlight.js/issues
[Nebuleon Fumika]: https://github.com/Nebuleon
[prince]: https://github.com/prince-0203
## Version 8.9.1
Some last-minute changes reverted due to strange bug with minified browser build:
- Scala case classes params highlight fixed
- ECMAScript 6 modules import now do not require closing semicolon
- ECMAScript 6 classes constructors now highlighted
- Template string support for Typescript, as for ECMAScript 6
- License added to not minified browser build
## Version 8.9.0
New languages:
- *crmsh* by [Kristoffer Gronlund][]
- *SQF* by [Soren Enevoldsen][]
[Kristoffer Gronlund]: https://github.com/krig
[Soren Enevoldsen]: https://github.com/senevoldsen90
Notable fixes and improvements to existing languages:
- Added `abstract` and `namespace` keywords to TypeScript by [Daniel Rosenwasser][]
- Added `label` support to Dockerfile by [Ladislav Prskavec][]
- Crystal highlighting improved by [Tsuyusato Kitsune][]
- Missing Swift keywords added by [Nate Cook][]
- Improve detection of C block comments
- ~~Scala case classes params highlight fixed~~
- ~~ECMAScript 6 modules import now do not require closing semicolon~~
- ~~ECMAScript 6 classes constructors now highlighted~~
- ~~Template string support for Typescript, as for ECMAScript 6~~
Other notable changes:
- ~~License added to not minified browser build~~
[Kristoffer Gronlund]: https://github.com/krig
[Søren Enevoldsen]: https://github.com/senevoldsen90
[Daniel Rosenwasser]: https://github.com/DanielRosenwasser
[Ladislav Prskavec]: https://github.com/abtris
[Tsuyusato Kitsune]: https://github.com/MakeNowJust
[Nate Cook]: https://github.com/natecook1000
## Version 8.8.0
New languages:
- *Golo* by [Philippe Charrière][]
- *GAMS* by [Stefan Bechert][]
- *IRPF90* by [Anthony Scemama][]
- *Access logs* by [Oleg Efimov][]
- *Crystal* by [Tsuyusato Kitsune][]
Notable fixes and improvements to existing languages:
- JavaScript highlighting no longer fails with ES6 default parameters
- Added keywords `async` and `await` to Python
- PHP heredoc support improved
- Allow preprocessor directives within C++ functions
Other notable changes:
- Change versions to X.Y.Z SemVer-compatible format
- Added ability to build all targets at once
[Philippe Charrière]: https://github.com/k33g
[Stefan Bechert]: https://github.com/b-pos465
[Anthony Scemama]: https://github.com/scemama
[Oleg Efimov]: https://github.com/Sannis
[Tsuyusato Kitsune]: https://github.com/MakeNowJust
## Version 8.7
New languages:
- *Zephir* by [Oleg Efimov][]
- *Elm* by [Janis Voigtländer][]
- *XQuery* by [Dirk Kirsten][]
- *Mojolicious* by [Dotan Dimet][]
- *AutoIt* by Manh Tuan from [J2TeaM][]
- *Toml* (ini extension) by [Guillaume Gomez][]
New styles:
- *Hopscotch* by [Jan T. Sott][]
- *Grayscale* by [MY Sun][]
Notable fixes and improvements to existing languages:
- Fix encoding of images when copied over in certain builds
- Fix incorrect highlighting of the word "bug" in comments
- Treat decorators different from matrix multiplication in Python
- Fix traits inheritance highlighting in Rust
- Fix incorrect document
- Oracle keywords added to SQL language definition by [Vadimtro][]
- Postgres keywords added to SQL language definition by [Benjamin Auder][]
- Fix registers in x86asm being highlighted as a hex number
- Fix highlighting for numbers with a leading decimal point
- Correctly highlight numbers and strings inside of C/C++ macros
- C/C++ functions now support pointer, reference, and move returns
[Oleg Efimov]: https://github.com/Sannis
[Guillaume Gomez]: https://github.com/GuillaumeGomez
[Janis Voigtländer]: https://github.com/jvoigtlaender
[Jan T. Sott]: https://github.com/idleberg
[Dirk Kirsten]: https://github.com/dirkk
[MY Sun]: https://github.com/simonmysun
[Vadimtro]: https://github.com/Vadimtro
[Benjamin Auder]: https://github.com/ghost
[Dotan Dimet]: https://github.com/dotandimet
[J2TeaM]: https://github.com/J2TeaM
## Version 8.6
New languages:
- *C/AL* by [Kenneth Fuglsang][]
- *DNS zone file* by [Tim Schumacher][]
- *Ceylon* by [Lucas Werkmeister][]
- *OpenSCAD* by [Dan Panzarella][]
- *Inform7* by [Bruno Dias][]
- *armasm* by [Dan Panzarella][]
- *TP* by [Jay Strybis][]
New styles:
- *Atelier Cave*, *Atelier Estuary*,
*Atelier Plateau* and *Atelier Savanna* by [Bram de Haan][]
- *Github Gist* by [Louis Barranqueiro][]
Notable fixes and improvements to existing languages:
- Multi-line raw strings from C++11 are now supported
- Fix class names with dashes in HAML
- The `async` keyword from ES6/7 is now supported
- TypeScript functions handle type and parameter complexity better
- We unified phpdoc/javadoc/yardoc etc modes across all languages
- CSS .class selectors relevance was dropped to prevent wrong language detection
- Images is now included to CDN build
- Release process is now automated
[Bram de Haan]: https://github.com/atelierbram
[Kenneth Fuglsang]: https://github.com/kfuglsang
[Louis Barranqueiro]: https://github.com/LouisBarranqueiro
[Tim Schumacher]: https://github.com/enko
[Lucas Werkmeister]: https://github.com/lucaswerkmeister
[Dan Panzarella]: https://github.com/pzl
[Bruno Dias]: https://github.com/sequitur
[Jay Strybis]: https://github.com/unreal
## Version 8.5
New languages:
- *pf.conf* by [Peter Piwowarski][]
- *Julia* by [Kenta Sato][]
- *Prolog* by [Raivo Laanemets][]
- *Docker* by [Alexis Hénaut][]
- *Fortran* by [Anthony Scemama][] and [Thomas Applencourt][]
- *Kotlin* by [Sergey Mashkov][]
New styles:
- *Agate* by [Taufik Nurrohman][]
- *Darcula* by [JetBrains][]
- *Atelier Sulphurpool* by [Bram de Haan][]
- *Android Studio* by [Pedro Oliveira][]
Notable fixes and improvements to existing languages:
- ES6 features in JavaScript are better supported now by [Gu Yiling][].
- Swift now recognizes body-less method definitions.
- Single expression functions `def foo, do: ... ` now work in Elixir.
- More uniform detection of built-in classes in Objective C.
- Fixes for number literals and processor directives in Rust.
- HTML `<script>` tag now allows any language, not just JavaScript.
- Multi-line comments are supported now in MatLab.
[Taufik Nurrohman]: https://github.com/taufik-nurrohman
[Jet Brains]: https://www.jetbrains.com/
[Peter Piwowarski]: https://github.com/oldlaptop
[Kenta Sato]: https://github.com/bicycle1885
[Bram de Haan]: https://github.com/atelierbram
[Raivo Laanemets]: https://github.com/rla
[Alexis Hénaut]: https://github.com/AlexisNo
[Anthony Scemama]: https://github.com/scemama
[Pedro Oliveira]: https://github.com/kanytu
[Gu Yiling]: https://github.com/Justineo
[Sergey Mashkov]: https://github.com/cy6erGn0m
[Thomas Applencourt]: https://github.com/TApplencourt
## Version 8.4
We've got the new [demo page][]! The obvious new feature is the new look, but
apart from that it's got smarter: by presenting languages in groups it avoids
running 10000 highlighting attempts after first load which was slowing it down
and giving bad overall impression. It is now also being generated from test
code snippets so the authors of new languages don't have to update both tests
and the demo page with the same thing.
Other notable changes:
- The `template_comment` class is gone in favor of the more general `comment`.
- Number parsing unified and improved across languages.
- C++, Java and C# now use unified grammar to highlight titles in
function/method definitions.
- The browser build is now usable as an AMD module, there's no separate build
target for that anymore.
- OCaml has got a [comprehensive overhaul][ocaml] by [Mickaël Delahaye][].
- Clojure's data structures and literals are now highlighted outside of lists
and we can now highlight Clojure's REPL sessions.
New languages:
- *AspectJ* by [Hakan Özler][]
- *STEP Part 21* by [Adam Joseph Cook][]
- *SML* derived by [Edwin Dalorzo][] from OCaml definition
- *Mercury* by [mucaho][]
- *Smali* by [Dennis Titze][]
- *Verilog* by [Jon Evans][]
- *Stata* by [Brian Quistorff][]
[Hakan Özler]: https://github.com/ozlerhakan
[Adam Joseph Cook]: https://github.com/adamjcook
[demo page]: https://highlightjs.org/static/demo/
[Ivan Sagalaev]: https://github.com/isagalaev
[Edwin Dalorzo]: https://github.com/edalorzo
[mucaho]: https://github.com/mucaho
[Dennis Titze]: https://github.com/titze
[Jon Evans]: https://github.com/craftyjon
[Brian Quistorff]: https://github.com/bquistorff
[ocaml]: https://github.com/isagalaev/highlight.js/pull/608#issue-46190207
[Mickaël Delahaye]: https://github.com/polazarus
## Version 8.3
We streamlined our tool chain, it is now based entirely on node.js instead of
being a mix of node.js, Python and Java. The build script options and arguments
remained the same, and we've noted all the changes in the [documentation][b].
Apart from reducing complexity, the new build script is also faster from not
having to start Java machine repeatedly. The credits for the work go to [Jeremy
Hull][].
Some notable fixes:
- PHP and JavaScript mixed in HTML now live happily with each other.
- JavaScript regexes now understand ES6 flags "u" and "y".
- `throw` keyword is no longer detected as a method name in Java.
- Fixed parsing of numbers and symbols in Clojure thanks to [input from Ivan
Kleshnin][ik].
New languages in this release:
- *Less* by [Max Mikhailov][]
- *Stylus* by [Bryant Williams][]
- *Tcl* by [Radek Liska][]
- *Puppet* by [Jose Molina Colmenero][]
- *Processing* by [Erik Paluka][]
- *Twig* templates by [Luke Holder][]
- *PowerShell* by [David Mohundro][], based on [the work of Nicholas Blumhardt][ps]
- *XL* by [Christophe de Dinechin][]
- *LiveScript* by [Taneli Vatanen][] and [Jen Evers-Corvina][]
- *ERB* (Ruby in HTML) by [Lucas Mazza][]
- *Roboconf* by [Vincent Zurczak][]
[b]: http://highlightjs.readthedocs.org/en/latest/building-testing.html
[Jeremy Hull]: https://github.com/sourrust
[ik]: https://twitter.com/IvanKleshnin/status/514041599484231680
[Max Mikhailov]: https://github.com/seven-phases-max
[Bryant Williams]: https://github.com/scien
[Radek Liska]: https://github.com/Nindaleth
[Jose Molina Colmenero]: https://github.com/Moliholy
[Erik Paluka]: https://github.com/paluka
[Luke Holder]: https://github.com/lukeholder
[David Mohundro]: https://github.com/drmohundro
[ps]: https://github.com/OctopusDeploy/Library/blob/master/app/shared/presentation/highlighting/powershell.js
[Christophe de Dinechin]: https://github.com/c3d
[Taneli Vatanen]: https://github.com/Daiz-
[Jen Evers-Corvina]: https://github.com/sevvie
[Lucas Mazza]: https://github.com/lucasmazza
[Vincent Zurczak]: https://github.com/vincent-zurczak
## Version 8.2
We've finally got [real tests][test] and [continuous testing on Travis][ci]
thanks to [Jeremy Hull][] and [Chris Eidhof][]. The tests designed to cover
everything: language detection, correct parsing of individual language features
and various special cases. This is a very important change that gives us
confidence in extending language definitions and refactoring library core.
We're going to redesign the old [demo/test suite][demo] into an interactive
demo web app. If you're confident front-end developer or designer and want to
help us with it, drop a comment into [the issue][#542] on GitHub.
[test]: https://github.com/isagalaev/highlight.js/tree/master/test
[demo]: https://highlightjs.org/static/test.html
[#542]: https://github.com/isagalaev/highlight.js/issues/542
[ci]: https://travis-ci.org/isagalaev/highlight.js
[Jeremy Hull]: https://github.com/sourrust
[Chris Eidhof]: https://github.com/chriseidhof
As usually there's a handful of new languages in this release:
- *Groovy* by [Guillaume Laforge][]
- *Dart* by [Maxim Dikun][]
- *Dust* by [Michael Allen][]
- *Scheme* by [JP Verkamp][]
- *G-Code* by [Adam Joseph Cook][]
- *Q* from Kx Systems by [Sergey Vidyuk][]
[Guillaume Laforge]: https://github.com/glaforge
[Maxim Dikun]: https://github.com/dikmax
[Michael Allen]: https://github.com/bfui
[JP Verkamp]: https://github.com/jpverkamp
[Adam Joseph Cook]: https://github.com/adamjcook
[Sergey Vidyuk]: https://github.com/sv
Other improvements:
- [Erik Osheim][] heavily reworked Scala definitions making it richer.
- [Lucas Mazza][] fixed Ruby hashes highlighting
- Lisp variants (Lisp, Clojure and Scheme) are unified in regard to naming
the first symbol in parentheses: it's "keyword" in general case and also
"built_in" for built-in functions in Clojure and Scheme.
[Erik Osheim]: https://github.com/non
[Lucas Mazza]: https://github.com/lucasmazza
## Version 8.1
New languages:
- *Gherkin* by [Sam Pikesley][]
- *Elixir* by [Josh Adams][]
- *NSIS* by [Jan T. Sott][]
- *VIM script* by [Jun Yang][]
- *Protocol Buffers* by [Dan Tao][]
- *Nix* by [Domen Kožar][]
- *x86asm* by [innocenat][]
- *Cap'n Proto* and *Thrift* by [Oleg Efimov][]
- *Monkey* by [Arthur Bikmullin][]
- *TypeScript* by [Panu Horsmalahti][]
- *Nimrod* by [Flaviu Tamas][]
- *Gradle* by [Damian Mee][]
- *Haxe* by [Christopher Kaster][]
- *Swift* by [Chris Eidhof][] and [Nate Cook][]
New styles:
- *Kimbie*, light and dark variants by [Jan T. Sott][]
- *Color brewer* by [Fabrício Tavares de Oliveira][]
- *Codepen.io embed* by [Justin Perry][]
- *Hybrid* by [Nic West][]
[Sam Pikesley]: https://github.com/pikesley
[Sindre Sorhus]: https://github.com/sindresorhus
[Josh Adams]: https://github.com/knewter
[Jan T. Sott]: https://github.com/idleberg
[Jun Yang]: https://github.com/harttle
[Dan Tao]: https://github.com/dtao
[Domen Kožar]: https://github.com/iElectric
[innocenat]: https://github.com/innocenat
[Oleg Efimov]: https://github.com/Sannis
[Arthur Bikmullin]: https://github.com/devolonter
[Panu Horsmalahti]: https://github.com/panuhorsmalahti
[Flaviu Tamas]: https://github.com/flaviut
[Damian Mee]: https://github.com/chester1000
[Christopher Kaster]: http://christopher.kaster.ws
[Fabrício Tavares de Oliveira]: https://github.com/fabriciotav
[Justin Perry]: https://github.com/ourmaninamsterdam
[Nic West]: https://github.com/nicwest
[Chris Eidhof]: https://github.com/chriseidhof
[Nate Cook]: https://github.com/natecook1000
Other improvements:
- The README is heavily reworked and brought up to date by [Jeremy Hull][].
- Added [`listLanguages()`][ll] method in the API.
- Improved C/C++/C# detection.
- Added a bunch of new language aliases, documented the existing ones. Thanks to
[Sindre Sorhus][] for background research.
- Added phrasal English words to boost relevance in comments.
- Many improvements to SQL definition made by [Heiko August][],
[Nikolay Lisienko][] and [Travis Odom][].
- The shorter `lang-` prefix for language names in HTML classes supported
alongside `language-`. Thanks to [Jeff Escalante][].
- Ruby's got support for interactive console sessions. Thanks to
[Pascal Hurni][].
- Added built-in functions for R language. Thanks to [Artem A. Klevtsov][].
- Rust's got definition for lifetime parameters and improved string syntax.
Thanks to [Roman Shmatov][].
- Various improvements to Objective-C definition by [Matt Diephouse][].
- Fixed highlighting of generics in Java.
[ll]: http://highlightjs.readthedocs.org/en/latest/api.html#listlanguages
[Sindre Sorhus]: https://github.com/sindresorhus
[Heiko August]: https://github.com/auge8472
[Nikolay Lisienko]: https://github.com/neor-ru
[Travis Odom]: https://github.com/Burstaholic
[Jeff Escalante]: https://github.com/jenius
[Pascal Hurni]: https://github.com/phurni
[Jiyin Yiyong]: https://github.com/jiyinyiyong
[Artem A. Klevtsov]: https://github.com/unikum
[Roman Shmatov]: https://github.com/shmatov
[Jeremy Hull]: https://github.com/sourrust
[Matt Diephouse]: https://github.com/mdiep
## Version 8.0
This new major release is quite a big overhaul bringing both new features and
some backwards incompatible changes. However, chances are that the majority of
users won't be affected by the latter: the basic scenario described in the
README is left intact.
Here's what did change in an incompatible way:
- We're now prefixing all classes located in [CSS classes reference][cr] with
`hljs-`, by default, because some class names would collide with other
people's stylesheets. If you were using an older version, you might still want
the previous behavior, but still want to upgrade. To suppress this new
behavior, you would initialize like so:
```html
<script type="text/javascript">
hljs.configure({classPrefix: ''});
hljs.initHighlightingOnLoad();
</script>
```
- `tabReplace` and `useBR` that were used in different places are also unified
into the global options object and are to be set using `configure(options)`.
This function is documented in our [API docs][]. Also note that these
parameters are gone from `highlightBlock` and `fixMarkup` which are now also
rely on `configure`.
- We removed public-facing (though undocumented) object `hljs.LANGUAGES` which
was used to register languages with the library in favor of two new methods:
`registerLanguage` and `getLanguage`. Both are documented in our [API docs][].
- Result returned from `highlight` and `highlightAuto` no longer contains two
separate attributes contributing to relevance score, `relevance` and
`keyword_count`. They are now unified in `relevance`.
Another technically compatible change that nonetheless might need attention:
- The structure of the NPM package was refactored, so if you had installed it
locally, you'll have to update your paths. The usual `require('highlight.js')`
works as before. This is contributed by [Dmitry Smolin][].
New features:
- Languages now can be recognized by multiple names like "js" for JavaScript or
"html" for, well, HTML (which earlier insisted on calling it "xml"). These
aliases can be specified in the class attribute of the code container in your
HTML as well as in various API calls. For now there are only a few very common
aliases but we'll expand it in the future. All of them are listed in the
[class reference][cr].
- Language detection can now be restricted to a subset of languages relevant in
a given context — a web page or even a single highlighting call. This is
especially useful for node.js build that includes all the known languages.
Another example is a StackOverflow-style site where users specify languages
as tags rather than in the markdown-formatted code snippets. This is
documented in the [API reference][] (see methods `highlightAuto` and
`configure`).
- Language definition syntax streamlined with [variants][] and
[beginKeywords][].
New languages and styles:
- *Oxygene* by [Carlo Kok][]
- *Mathematica* by [Daniel Kvasnička][]
- *Autohotkey* by [Seongwon Lee][]
- *Atelier* family of styles in 10 variants by [Bram de Haan][]
- *Paraíso* styles by [Jan T. Sott][]
Miscellaneous improvements:
- Highlighting `=>` prompts in Clojure.
- [Jeremy Hull][] fixed a lot of styles for consistency.
- Finally, highlighting PHP and HTML [mixed in peculiar ways][php-html].
- Objective C and C# now properly highlight titles in method definition.
- Big overhaul of relevance counting for a number of languages. Please do report
bugs about mis-detection of non-trivial code snippets!
[API reference]: http://highlightjs.readthedocs.org/en/latest/api.html
[cr]: http://highlightjs.readthedocs.org/en/latest/css-classes-reference.html
[api docs]: http://highlightjs.readthedocs.org/en/latest/api.html
[variants]: https://groups.google.com/d/topic/highlightjs/VoGC9-1p5vk/discussion
[beginKeywords]: https://github.com/isagalaev/highlight.js/commit/6c7fdea002eb3949577a85b3f7930137c7c3038d
[php-html]: https://twitter.com/highlightjs/status/408890903017689088
[Carlo Kok]: https://github.com/carlokok
[Bram de Haan]: https://github.com/atelierbram
[Daniel Kvasnička]: https://github.com/dkvasnicka
[Dmitry Smolin]: https://github.com/dimsmol
[Jeremy Hull]: https://github.com/sourrust
[Seongwon Lee]: https://github.com/dlimpid
[Jan T. Sott]: https://github.com/idleberg
## Version 7.5
A catch-up release dealing with some of the accumulated contributions. This one
is probably will be the last before the 8.0 which will be slightly backwards
incompatible regarding some advanced use-cases.
One outstanding change in this version is the addition of 6 languages to the
[hosted script][d]: Markdown, ObjectiveC, CoffeeScript, Apache, Nginx and
Makefile. It now weighs about 6K more but we're going to keep it under 30K.
New languages:
- OCaml by [Mehdi Dogguy][mehdid] and [Nicolas Braud-Santoni][nbraud]
- [LiveCode Server][lcs] by [Ralf Bitter][revig]
- Scilab by [Sylvestre Ledru][sylvestre]
- basic support for Makefile by [Ivan Sagalaev][isagalaev]
Improvements:
- Ruby's got support for characters like `?A`, `?1`, `?\012` etc. and `%r{..}`
regexps.
- Clojure now allows a function call in the beginning of s-expressions
`(($filter "myCount") (arr 1 2 3 4 5))`.
- Haskell's got new keywords and now recognizes more things like pragmas,
preprocessors, modules, containers, FFIs etc. Thanks to [Zena Treep][treep]
for the implementation and to [Jeremy Hull][sourrust] for guiding it.
- Miscellaneous fixes in PHP, Brainfuck, SCSS, Asciidoc, CMake, Python and F#.
[mehdid]: https://github.com/mehdid
[nbraud]: https://github.com/nbraud
[revig]: https://github.com/revig
[lcs]: http://livecode.com/developers/guides/server/
[sylvestre]: https://github.com/sylvestre
[isagalaev]: https://github.com/isagalaev
[treep]: https://github.com/treep
[sourrust]: https://github.com/sourrust
[d]: http://highlightjs.org/download/
## New core developers
The latest long period of almost complete inactivity in the project coincided
with growing interest to it led to a decision that now seems completely obvious:
we need more core developers.
So without further ado let me welcome to the core team two long-time
contributors: [Jeremy Hull][] and [Oleg
Efimov][].
Hope now we'll be able to work through stuff faster!
P.S. The historical commit is [here][1] for the record.
[Jeremy Hull]: https://github.com/sourrust
[Oleg Efimov]: https://github.com/sannis
[1]: https://github.com/isagalaev/highlight.js/commit/f3056941bda56d2b72276b97bc0dd5f230f2473f
## Version 7.4
This long overdue version is a snapshot of the current source tree with all the
changes that happened during the past year. Sorry for taking so long!
Along with the changes in code highlight.js has finally got its new home at
<http://highlightjs.org/>, moving from its cradle on Software Maniacs which it
outgrew a long time ago. Be sure to report any bugs about the site to
<mailto:info@highlightjs.org>.
On to what's new…
New languages:
- Handlebars templates by [Robin Ward][]
- Oracle Rules Language by [Jason Jacobson][]
- F# by [Joans Follesø][]
- AsciiDoc and Haml by [Dan Allen][]
- Lasso by [Eric Knibbe][]
- SCSS by [Kurt Emch][]
- VB.NET by [Poren Chiang][]
- Mizar by [Kelley van Evert][]
[Robin Ward]: https://github.com/eviltrout
[Jason Jacobson]: https://github.com/jayce7
[Joans Follesø]: https://github.com/follesoe
[Dan Allen]: https://github.com/mojavelinux
[Eric Knibbe]: https://github.com/EricFromCanada
[Kurt Emch]: https://github.com/kemch
[Poren Chiang]: https://github.com/rschiang
[Kelley van Evert]: https://github.com/kelleyvanevert
New style themes:
- Monokai Sublime by [noformnocontent][]
- Railscasts by [Damien White][]
- Obsidian by [Alexander Marenin][]
- Docco by [Simon Madine][]
- Mono Blue by [Ivan Sagalaev][] (uses a single color hue for everything)
- Foundation by [Dan Allen][]
[noformnocontent]: http://nn.mit-license.org/
[Damien White]: https://github.com/visoft
[Alexander Marenin]: https://github.com/ioncreature
[Simon Madine]: https://github.com/thingsinjars
[Ivan Sagalaev]: https://github.com/isagalaev
Other notable changes:
- Corrected many corner cases in CSS.
- Dropped Python 2 version of the build tool.
- Implemented building for the AMD format.
- Updated Rust keywords (thanks to [Dmitry Medvinsky][]).
- Literal regexes can now be used in language definitions.
- CoffeeScript highlighting is now significantly more robust and rich due to
input from [Cédric Néhémie][].
[Dmitry Medvinsky]: https://github.com/dmedvinsky
[Cédric Néhémie]: https://github.com/abe33
## Version 7.3
- Since this version highlight.js no longer works in IE version 8 and older.
It's made it possible to reduce the library size and dramatically improve code
readability and made it easier to maintain. Time to go forward!
- New languages: AppleScript (by [Nathan Grigg][ng] and [Dr. Drang][dd]) and
Brainfuck (by [Evgeny Stepanischev][bolk]).
- Improvements to existing languages:
- interpreter prompt in Python (`>>>` and `...`)
- @-properties and classes in CoffeeScript
- E4X in JavaScript (by [Oleg Efimov][oe])
- new keywords in Perl (by [Kirk Kimmel][kk])
- big Ruby syntax update (by [Vasily Polovnyov][vast])
- small fixes in Bash
- Also Oleg Efimov did a great job of moving all the docs for language and style
developers and contributors from the old wiki under the source code in the
"docs" directory. Now these docs are nicely presented at
<http://highlightjs.readthedocs.org/>.
[ng]: https://github.com/nathan11g
[dd]: https://github.com/drdrang
[bolk]: https://github.com/bolknote
[oe]: https://github.com/Sannis
[kk]: https://github.com/kimmel
[vast]: https://github.com/vast
## Version 7.2
A regular bug-fix release without any significant new features. Enjoy!
## Version 7.1
A Summer crop:
- [Marc Fornos][mf] made the definition for Clojure along with the matching
style Rainbow (which, of course, works for other languages too).
- CoffeeScript support continues to improve getting support for regular
expressions.
- Yoshihide Jimbo ported to highlight.js [five Tomorrow styles][tm] from the
[project by Chris Kempson][tm0].
- Thanks to [Casey Duncun][cd] the library can now be built in the popular
[AMD format][amd].
- And last but not least, we've got a fair number of correctness and consistency
fixes, including a pretty significant refactoring of Ruby.
[mf]: https://github.com/mfornos
[tm]: http://jmblog.github.com/color-themes-for-highlightjs/
[tm0]: https://github.com/ChrisKempson/Tomorrow-Theme
[cd]: https://github.com/caseman
[amd]: http://requirejs.org/docs/whyamd.html
## Version 7.0
The reason for the new major version update is a global change of keyword syntax
which resulted in the library getting smaller once again. For example, the
hosted build is 2K less than at the previous version while supporting two new
languages.
Notable changes:
- The library now works not only in a browser but also with [node.js][]. It is
installable with `npm install highlight.js`. [API][] docs are available on our
wiki.
- The new unique feature (apparently) among syntax highlighters is highlighting
*HTTP* headers and an arbitrary language in the request body. The most useful
languages here are *XML* and *JSON* both of which highlight.js does support.
Here's [the detailed post][p] about the feature.
- Two new style themes: a dark "south" *[Pojoaque][]* by Jason Tate and an
emulation of*XCode* IDE by [Angel Olloqui][ao].
- Three new languages: *D* by [Aleksandar Ružičić][ar], *R* by [Joe Cheng][jc]
and *GLSL* by [Sergey Tikhomirov][st].
- *Nginx* syntax has become a million times smaller and more universal thanks to
remaking it in a more generic manner that doesn't require listing all the
directives in the known universe.
- Function titles are now highlighted in *PHP*.
- *Haskell* and *VHDL* were significantly reworked to be more rich and correct
by their respective maintainers [Jeremy Hull][sr] and [Igor Kalnitsky][ik].
And last but not least, many bugs have been fixed around correctness and
language detection.
Overall highlight.js currently supports 51 languages and 20 style themes.
[node.js]: http://nodejs.org/
[api]: http://softwaremaniacs.org/wiki/doku.php/highlight.js:api
[p]: http://softwaremaniacs.org/blog/2012/05/10/http-and-json-in-highlight-js/en/
[pojoaque]: http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html
[ao]: https://github.com/angelolloqui
[ar]: https://github.com/raleksandar
[jc]: https://github.com/jcheng5
[st]: https://github.com/tikhomirov
[sr]: https://github.com/sourrust
[ik]: https://github.com/ikalnitsky
## Version 6.2
A lot of things happened in highlight.js since the last version! We've got nine
new contributors, the discussion group came alive, and the main branch on GitHub
now counts more than 350 followers. Here are most significant results coming
from all this activity:
- 5 (five!) new languages: Rust, ActionScript, CoffeeScript, MatLab and
experimental support for markdown. Thanks go to [Andrey Vlasovskikh][av],
[Alexander Myadzel][am], [Dmytrii Nagirniak][dn], [Oleg Efimov][oe], [Denis
Bardadym][db] and [John Crepezzi][jc].
- 2 new style themes: Monokai by [Luigi Maselli][lm] and stylistic imitation of
another well-known highlighter Google Code Prettify by [Aahan Krish][ak].
- A vast number of [correctness fixes and code refactorings][log], mostly made
by [Oleg Efimov][oe] and [Evgeny Stepanischev][es].
[av]: https://github.com/vlasovskikh
[am]: https://github.com/myadzel
[dn]: https://github.com/dnagir
[oe]: https://github.com/Sannis
[db]: https://github.com/btd
[jc]: https://github.com/seejohnrun
[lm]: http://grigio.org/
[ak]: https://github.com/geekpanth3r
[es]: https://github.com/bolknote
[log]: https://github.com/isagalaev/highlight.js/commits/
## Version 6.1 — Solarized
[Jeremy Hull][jh] has implemented my dream feature — a port of [Solarized][]
style theme famous for being based on the intricate color theory to achieve
correct contrast and color perception. It is now available for highlight.js in
both variants — light and dark.
This version also adds a new original style Arta. Its author pumbur maintains a
[heavily modified fork of highlight.js][pb] on GitHub.
[jh]: https://github.com/sourrust
[solarized]: http://ethanschoonover.com/solarized
[pb]: https://github.com/pumbur/highlight.js
## Version 6.0
New major version of the highlighter has been built on a significantly
refactored syntax. Due to this it's even smaller than the previous one while
supporting more languages!
New languages are:
- Haskell by [Jeremy Hull][sourrust]
- Erlang in two varieties — module and REPL — made collectively by [Nikolay
Zakharov][desh], [Dmitry Kovega][arhibot] and [Sergey Ignatov][ignatov]
- Objective C by [Valerii Hiora][vhbit]
- Vala by [Antono Vasiljev][antono]
- Go by [Stephan Kountso][steplg]
[sourrust]: https://github.com/sourrust
[desh]: http://desh.su/
[arhibot]: https://github.com/arhibot
[ignatov]: https://github.com/ignatov
[vhbit]: https://github.com/vhbit
[antono]: https://github.com/antono
[steplg]: https://github.com/steplg
Also this version is marginally faster and fixes a number of small long-standing
bugs.
Developer overview of the new language syntax is available in a [blog post about
recent beta release][beta].
[beta]: http://softwaremaniacs.org/blog/2011/04/25/highlight-js-60-beta/en/
P.S. New version is not yet available on a Yandex CDN, so for now you have to
download [your own copy][d].
[d]: /soft/highlight/en/download/
## Version 5.14
Fixed bugs in HTML/XML detection and relevance introduced in previous
refactoring.
Also test.html now shows the second best result of language detection by
relevance.
## Version 5.13
Past weekend began with a couple of simple additions for existing languages but
ended up in a big code refactoring bringing along nice improvements for language
developers.
### For users
- Description of C++ has got new keywords from the upcoming [C++ 0x][] standard.
- Description of HTML has got new tags from [HTML 5][].
- CSS-styles have been unified to use consistent padding and also have lost
pop-outs with names of detected languages.
- [Igor Kalnitsky][ik] has sent two new language descriptions: CMake & VHDL.
This makes total number of languages supported by highlight.js to reach 35.
Bug fixes:
- Custom classes on `<pre>` tags are not being overridden anymore
- More correct highlighting of code blocks inside non-`<pre>` containers:
highlighter now doesn't insist on replacing them with its own container and
just replaces the contents.
- Small fixes in browser compatibility and heuristics.
[c++ 0x]: http://ru.wikipedia.org/wiki/C%2B%2B0x
[html 5]: http://en.wikipedia.org/wiki/HTML5
[ik]: http://kalnitsky.org.ua/
### For developers
The most significant change is the ability to include language submodes right
under `contains` instead of defining explicit named submodes in the main array:
contains: [
'string',
'number',
{begin: '\\n', end: hljs.IMMEDIATE_RE}
]
This is useful for auxiliary modes needed only in one place to define parsing.
Note that such modes often don't have `className` and hence won't generate a
separate `<span>` in the resulting markup. This is similar in effect to
`noMarkup: true`. All existing languages have been refactored accordingly.
Test file test.html has at last become a real test. Now it not only puts the
detected language name under the code snippet but also tests if it matches the
expected one. Test summary is displayed right above all language snippets.
## CDN
Fine people at [Yandex][] agreed to host highlight.js on their big fast servers.
[Link up][l]!
[yandex]: http://yandex.com/
[l]: http://softwaremaniacs.org/soft/highlight/en/download/
## Version 5.10 — "Paris".
Though I'm on a vacation in Paris, I decided to release a new version with a
couple of small fixes:
- Tomas Vitvar discovered that TAB replacement doesn't always work when used
with custom markup in code
- SQL parsing is even more rigid now and doesn't step over SmallTalk in tests
## Version 5.9
A long-awaited version is finally released.
New languages:
- Andrew Fedorov made a definition for Lua
- a long-time highlight.js contributor [Peter Leonov][pl] made a definition for
Nginx config
- [Vladimir Moskva][vm] made a definition for TeX
[pl]: http://kung-fu-tzu.ru/
[vm]: http://fulc.ru/
Fixes for existing languages:
- [Loren Segal][ls] reworked the Ruby definition and added highlighting for
[YARD][] inline documentation
- the definition of SQL has become more solid and now it shouldn't be overly
greedy when it comes to language detection
[ls]: http://gnuu.org/
[yard]: http://yardoc.org/
The highlighter has become more usable as a library allowing to do highlighting
from initialization code of JS frameworks and in ajax methods (see.
readme.eng.txt).
Also this version drops support for the [WordPress][wp] plugin. Everyone is
welcome to [pick up its maintenance][p] if needed.
[wp]: http://wordpress.org/
[p]: http://bazaar.launchpad.net/~isagalaev/+junk/highlight/annotate/342/src/wp_highlight.js.php
## Version 5.8
- Jan Berkel has contributed a definition for Scala. +1 to hotness!
- All CSS-styles are rewritten to work only inside `<pre>` tags to avoid
conflicts with host site styles.
## Version 5.7.
Fixed escaping of quotes in VBScript strings.
## Version 5.5
This version brings a small change: now .ini-files allow digits, underscores and
square brackets in key names.
## Version 5.4
Fixed small but upsetting bug in the packer which caused incorrect highlighting
of explicitly specified languages. Thanks to Andrew Fedorov for precise
diagnostics!
## Version 5.3
The version to fulfil old promises.
The most significant change is that highlight.js now preserves custom user
markup in code along with its own highlighting markup. This means that now it's
possible to use, say, links in code. Thanks to [Vladimir Dolzhenko][vd] for the
[initial proposal][1] and for making a proof-of-concept patch.
Also in this version:
- [Vasily Polovnyov][vp] has sent a GitHub-like style and has implemented
support for CSS @-rules and Ruby symbols.
- Yura Zaripov has sent two styles: Brown Paper and School Book.
- Oleg Volchkov has sent a definition for [Parser 3][p3].
[1]: http://softwaremaniacs.org/forum/highlightjs/6612/
[p3]: http://www.parser.ru/
[vp]: http://vasily.polovnyov.ru/
[vd]: http://dolzhenko.blogspot.com/
## Version 5.2
- at last it's possible to replace indentation TABs with something sensible
(e.g. 2 or 4 spaces)
- new keywords and built-ins for 1C by Sergey Baranov
- a couple of small fixes to Apache highlighting
## Version 5.1
This is one of those nice version consisting entirely of new and shiny
contributions!
- [Vladimir Ermakov][vooon] created highlighting for AVR Assembler
- [Ruslan Keba][rukeba] created highlighting for Apache config file. Also his
original visual style for it is now available for all highlight.js languages
under the name "Magula".
- [Shuen-Huei Guan][drake] (aka Drake) sent new keywords for RenderMan
languages. Also thanks go to [Konstantin Evdokimenko][ke] for his advice on
the matter.
[vooon]: http://vehq.ru/about/
[rukeba]: http://rukeba.com/
[drake]: http://drakeguan.org/
[ke]: http://k-evdokimenko.moikrug.ru/
## Version 5.0
The main change in the new major version of highlight.js is a mechanism for
packing several languages along with the library itself into a single compressed
file. Now sites using several languages will load considerably faster because
the library won't dynamically include additional files while loading.
Also this version fixes a long-standing bug with Javascript highlighting that
couldn't distinguish between regular expressions and division operations.
And as usually there were a couple of minor correctness fixes.
Great thanks to all contributors! Keep using highlight.js.
## Version 4.3
This version comes with two contributions from [Jason Diamond][jd]:
- language definition for C# (yes! it was a long-missed thing!)
- Visual Studio-like highlighting style
Plus there are a couple of minor bug fixes for parsing HTML and XML attributes.
[jd]: http://jason.diamond.name/weblog/
## Version 4.2
The biggest news is highlighting for Lisp, courtesy of Vasily Polovnyov. It's
somewhat experimental meaning that for highlighting "keywords" it doesn't use
any pre-defined set of a Lisp dialect. Instead it tries to highlight first word
in parentheses wherever it makes sense. I'd like to ask people programming in
Lisp to confirm if it's a good idea and send feedback to [the forum][f].
Other changes:
- Smalltalk was excluded from DEFAULT_LANGUAGES to save traffic
- [Vladimir Epifanov][voldmar] has implemented javascript style switcher for
test.html
- comments now allowed inside Ruby function definition
- [MEL][] language from [Shuen-Huei Guan][drake]
- whitespace now allowed between `<pre>` and `<code>`
- better auto-detection of C++ and PHP
- HTML allows embedded VBScript (`<% .. %>`)
[f]: http://softwaremaniacs.org/forum/highlightjs/
[voldmar]: http://voldmar.ya.ru/
[mel]: http://en.wikipedia.org/wiki/Maya_Embedded_Language
[drake]: http://drakeguan.org/
## Version 4.1
Languages:
- Bash from Vah
- DOS bat-files from Alexander Makarov (Sam)
- Diff files from Vasily Polovnyov
- Ini files from myself though initial idea was from Sam
Styles:
- Zenburn from Vladimir Epifanov, this is an imitation of a
[well-known theme for Vim][zenburn].
- Ascetic from myself, as a realization of ideals of non-flashy highlighting:
just one color in only three gradations :-)
In other news. [One small bug][bug] was fixed, built-in keywords were added for
Python and C++ which improved auto-detection for the latter (it was shame that
[my wife's blog][alenacpp] had issues with it from time to time). And lastly
thanks go to Sam for getting rid of my stylistic comments in code that were
getting in the way of [JSMin][].
[zenburn]: http://en.wikipedia.org/wiki/Zenburn
[alenacpp]: http://alenacpp.blogspot.com/
[bug]: http://softwaremaniacs.org/forum/viewtopic.php?id=1823
[jsmin]: http://code.google.com/p/jsmin-php/
## Version 4.0
New major version is a result of vast refactoring and of many contributions.
Visible new features:
- Highlighting of embedded languages. Currently is implemented highlighting of
Javascript and CSS inside HTML.
- Bundled 5 ready-made style themes!
Invisible new features:
- Highlight.js no longer pollutes global namespace. Only one object and one
function for backward compatibility.
- Performance is further increased by about 15%.
Changing of a major version number caused by a new format of language definition
files. If you use some third-party language files they should be updated.
## Version 3.5
A very nice version in my opinion fixing a number of small bugs and slightly
increased speed in a couple of corner cases. Thanks to everybody who reports
bugs in he [forum][f] and by email!
There is also a new language — XML. A custom XML formerly was detected as HTML
and didn't highlight custom tags. In this version I tried to make custom XML to
be detected and highlighted by its own rules. Which by the way include such
things as CDATA sections and processing instructions (`<? ... ?>`).
[f]: http://softwaremaniacs.org/forum/viewforum.php?id=6
## Version 3.3
[Vladimir Gubarkov][xonix] has provided an interesting and useful addition.
File export.html contains a little program that shows and allows to copy and
paste an HTML code generated by the highlighter for any code snippet. This can
be useful in situations when one can't use the script itself on a site.
[xonix]: http://xonixx.blogspot.com/
## Version 3.2 consists completely of contributions:
- Vladimir Gubarkov has described SmallTalk
- Yuri Ivanov has described 1C
- Peter Leonov has packaged the highlighter as a Firefox extension
- Vladimir Ermakov has compiled a mod for phpBB
Many thanks to you all!
## Version 3.1
Three new languages are available: Django templates, SQL and Axapta. The latter
two are sent by [Dmitri Roudakov][1]. However I've almost entirely rewrote an
SQL definition but I'd never started it be it from the ground up :-)
The engine itself has got a long awaited feature of grouping keywords
("keyword", "built-in function", "literal"). No more hacks!
[1]: http://roudakov.ru/
## Version 3.0
It is major mainly because now highlight.js has grown large and has become
modular. Now when you pass it a list of languages to highlight it will
dynamically load into a browser only those languages.
Also:
- Konstantin Evdokimenko of [RibKit][] project has created a highlighting for
RenderMan Shading Language and RenderMan Interface Bytestream. Yay for more
languages!
- Heuristics for C++ and HTML got better.
- I've implemented (at last) a correct handling of backslash escapes in C-like
languages.
There is also a small backwards incompatible change in the new version. The
function initHighlighting that was used to initialize highlighting instead of
initHighlightingOnLoad a long time ago no longer works. If you by chance still
use it — replace it with the new one.
[RibKit]: http://ribkit.sourceforge.net/
## Version 2.9
Highlight.js is a parser, not just a couple of regular expressions. That said
I'm glad to announce that in the new version 2.9 has support for:
- in-string substitutions for Ruby -- `#{...}`
- strings from from numeric symbol codes (like #XX) for Delphi
## Version 2.8
A maintenance release with more tuned heuristics. Fully backwards compatible.
## Version 2.7
- Nikita Ledyaev presents highlighting for VBScript, yay!
- A couple of bugs with escaping in strings were fixed thanks to Mickle
- Ongoing tuning of heuristics
Fixed bugs were rather unpleasant so I encourage everyone to upgrade!
## Version 2.4
- Peter Leonov provides another improved highlighting for Perl
- Javascript gets a new kind of keywords — "literals". These are the words
"true", "false" and "null"
Also highlight.js homepage now lists sites that use the library. Feel free to
add your site by [dropping me a message][mail] until I find the time to build a
submit form.
[mail]: mailto:Maniac@SoftwareManiacs.Org
## Version 2.3
This version fixes IE breakage in previous version. My apologies to all who have
already downloaded that one!
## Version 2.2
- added highlighting for Javascript
- at last fixed parsing of Delphi's escaped apostrophes in strings
- in Ruby fixed highlighting of keywords 'def' and 'class', same for 'sub' in
Perl
## Version 2.0
- Ruby support by [Anton Kovalyov][ak]
- speed increased by orders of magnitude due to new way of parsing
- this same way allows now correct highlighting of keywords in some tricky
places (like keyword "End" at the end of Delphi classes)
[ak]: http://anton.kovalyov.net/
## Version 1.0
Version 1.0 of javascript syntax highlighter is released!
It's the first version available with English description. Feel free to post
your comments and question to [highlight.js forum][forum]. And don't be afraid
if you find there some fancy Cyrillic letters -- it's for Russian users too :-)
[forum]: http://softwaremaniacs.org/forum/viewforum.php?id=6
================================================
FILE: CONTRIBUTING.md
================================================
# Contributing
[](https://discord.gg/M24EbU7ja9)
[](https://github.com/highlightjs/highlight.js/issues)
[](https://github.com/highlightjs/highlight.js/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+welcome%22)
[](https://github.com/highlightjs/highlight.js/issues?q=is%3Aopen%20is%3Aissue%20label%3A%22good%20first%20issue%22)
**Contents**
- [Welcome](#welcome)
- [Our Philosophy](#our-philosophy)
- [Prerequisites](#prerequisites)
- [Requesting Features](#requesting-features)
- [Language Requests](#language-requests)
- [Reporting Issues](#reporting-issues)
- [Fixing Issues (PRs)](#fixing-issues-prs)
- [In a nutshell](#in-a-nutshell)
- [Build and Test](#build-and-test)
## Welcome
Hello and welcome to Highlight.js. We're a code-highlighting engine, but you probably knew that already. If you are considering contributing to Highlight.js this document will be hopefully be a helpful resource.
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
**You do not have to be a programmer.** There are many ways to contribute::
- Hang out on our [Discord](https://discord.gg/M24EbU7ja9) and help answers questions as they come up
- Report [new issues or bugs](https://github.com/highlightjs/highlight.js/issues/new/choose) or join the existing discussion on open issues
- Submit pull requests to resolve issues
- Write [plugins](https://highlightjs.readthedocs.io/en/latest/plugin-api.html) that extend our core functionality
- Author [language definitions](https://github.com/highlightjs/highlight.js/blob/master/extra/3RD_PARTY_QUICK_START.md) to improve our language support
- Design [new themes](https://highlightjs.readthedocs.io/en/latest/theme-guide.html) to make our highlighting extra beautiful
- Improve our documentation to better explain all the things to all the peoples
### Our Philosophy
Highlight.js makes an effort to keep the core engine small, simple, and easy to use. Our goal with core is to support the highlighting "happy path" and let plug-ins handle edge cases.
- Rather than add lots of tiny features and configuration knobs we [embrace plug-ins and extensions](https://github.com/highlightjs/highlight.js/issues/2225). For example, our [lack of line numbers is considered a feature](https://highlightjs.readthedocs.io/en/latest/line-numbers.html).
- We do quite bit more than highlight keywords. We often make an attempt to understand local context, yet we do not strive to be a full and correct parser for any language.
- Our [language auto-detection is unfortunately not magic](https://github.com/highlightjs/highlight.js/issues/1213). It's best effort, not best in class. If you think you could help improve it that'd be a great contribution!
### Prerequisites
- To help answer questions on issues or contribute on Discord you need only be friendly.
- To contribute to language definitions knowing [Regular Expressions](https://www.regular-expressions.info) is often necessary.
- To work on the core parsing engine you'll need to know JavaScript.
- To work on documentation you need to be ready and willing to document things.
- Attention to detail or expert knowledge in one of the languages we highlight can be super helpful.
## Requesting Features
Feature requests are always welcome. If the feature doesn't belong in the core library then we're always happy to suggest how you might go about developing a plug-in.
If you're thinking of contributing a feature first open an issue to discuss whether the feature belongs in core vs a plug-in. Often this is a great way to get implementation tips or links to prior discussions on the topic often with additional context, etc.
### Language Requests
If you wish we supported a language we don't, first read [On requesting new languages](https://highlightjs.readthedocs.io/en/latest/language-requests.html). TL;DR The core team generally doesn't implement new languages - so there is no point opening requests. Please consider trying to contribute the language yourself or enlisting the help of a friend.
## Reporting Issues
If you find a bug or think of an improvement, feel free to [open an issue](https://github.com/highlightjs/highlight.js/issues/new/choose).
- If you've found a language highlighting issue, you can use [this JSFiddle](https://jsfiddle.net/ajoshguy/cjhvre2k/) to create a test case.
## Fixing Issues (PRs)
If you feel comfortable with the [prerequisites](#prerequisites), you can grab any issue marked ["good first issue"](https://github.com/highlightjs/highlight.js/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22). Or feel free to jump in with thoughts or comments on any of the more complex issues.
### In a nutshell
If you're new to contributing to open-source, have a look at [this GitHub Guide](https://guides.github.com/activities/forking). It explains the general process of GitHub collaboration.
Highlight.js is developed in JavaScript, so you'll need the usual suspects: [Node.js](https://nodejs.dev/download/), npm (or yarn), git, etc. You'll likely start by forking the repository on GitHub and then cloning it locally.
1. Fork this project on GitHub.
2. Clone it locally `git clone git@github.com:username/highlight.js.git`.
3. Create a work branch (`git checkout -b my-branch`).
4. Commit your changes (`git commit -m 'my changes'`).
5. [Build and Test](#build-and-test)
6. Push the branch (`git push origin my-branch`).
7. Open a Pull Request from your fork back to this repository.
### Keep in Mind <!-- omit in toc -->
Please open a new issue before your PR (or join the discussion on the existing issue), so we can explore and discuss the topic at hand. Your time is important, and we need to be sure it's well-spent.
*Before* you start coding, keep these tips in mind:
- You should usually add markup tests (ie. whenever you've made a significant grammar change or fixed a bug). Simply adding `keywords` can be an exception to this rule.
- Change only what needs to be changed; don't re-lint or rewrite whole files when fixing small bugs
- Linting or major re-organization needs a dedicated commit
*After* you make your changes, we have some housekeeping tasks for you - like updating the [changelog](https://github.com/highlightjs/highlight.js/blob/main/CHANGES.md). The PR template will be your guide.
### Build and Test
When contributing a PR (that doesn't make any specific changes to browser features) it's usually sufficient to build and test only the Node.js build. Our CI process will guarantee that the browser build is still green.
Testing the Node.js build:
```console
npm run build
npm run test
```
The browser library is built and tested separately:
```console
npm run build-browser
npm run test-browser
```
There's a developer tool ([tools/developer.html](https://github.com/highlightjs/highlight.js/blob/master/tools/developer.html)) for visually testing and debugging language definitions. It requires a browser build to be present. (ie `npm run build-browser` first)
For more details, see [Building and Testing](https://highlightjs.readthedocs.io/en/latest/building-testing.html) in our docs.
================================================
FILE: CONTRIBUTORS.md
================================================
# Contributors
### Core Team
- Josh Goebel <hello@joshgoebel.com> (maintainer)
- Vladimir Jimenez <me@allejo.io>
### Former Maintainers
- Ivan Sagalaev <maniac@softwaremaniacs.org> (original author)
- Jeremy Hull <sourdrums@gmail.com>
- Oleg Efimov <efimovov@gmail.com>
### Former Core Team
- Egor Rogov <e.rogov@postgrespro.ru>
- Gidi Meir Morris <gidi@gidi.io>
- Jan T. Sott <git@idleberg.com>
- Li Xuanji <xuanji@gmail.com>
- Marcos Cáceres <marcos@marcosc.com>
- Sang Dang <sang.dang@polku.io>
### Individual Contributors
Highlight.js has also been greatly improved over the years thanks to the help of [many other contributors](https://github.com/highlightjs/highlight.js/graphs/contributors). A big thank you to everyone who has helped make this project what it is today!
================================================
FILE: Dockerfile
================================================
# Dockerfile for highlight.js
#
# Build image:
# docker build -t highlight-js .
#
# Run container:
# docker run --rm -it --publish 8080:80 highlight-js
#
# And open a browser to http://localhost:8080
FROM node:12-slim
RUN apt-get update -qq \
&& apt-get install --yes --no-install-recommends \
nginx git \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /var/www/html
COPY package*.json /var/www/html/
RUN npm install
COPY . .
RUN node tools/build.js :common
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
================================================
FILE: LICENSE
================================================
BSD 3-Clause License
Copyright (c) 2006, Ivan Sagalaev.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
================================================
FILE: MAINTAINERS_GUIDE.md
================================================
Maintainer's Guide
==================
Commit Policy
-------------
* Pull requests from outside contributors require a review from a maintainer.
* Maintainers should avoid working on a main branch directly and create branches for everything. A code review from another maintainer is recommended but not required, use your best judgment.
Release process
---------------
Releases (minor) typically happen on a 6-week schedule.
For major/minor releases you'll be releasing from `main` For patch releases you'll be releasing from a stable branch, such as `11-stable`. This allows ongoing development of new features to continue in isolation (in main) without those changes leaking into patch releases (which should focus only on fixing breaking changes).
The goal being that minor version series always get more stable over time and that patch releases do not add features.
* For patch releases: First switch to the associated stable branch (i.e., `11-stable`)
* Update `CHANGES.md` with everything interesting since the last update.
* Update version numbers using the three-part x.y.z notation everywhere:
* The header in `CHANGES.md` (this is where the site looks for the latest version number)
* `version` attribute in `package.json`
* `version` attribute in `package-lock.json` (run `npm install`)
* `release` variable in `docs/conf.py`
* All mentions of version number in the `README.md`
* Update `SECURITY.md` version table
* Commit the version changes and tag the commit with the version number (`10.4.0`, no "v" prefix or anything like that)
* For major/minor releases: Create (or push push) the `[major]-stable` branch such as `11-stable`
IE, the `11-stable` branch should always point to the latest stable release in the 11 series.
* Push the commit the tag (`git push && git push 10.4.0`)
Pushing the tag triggers the update process which can be monitored at http://highlightjs.org/api/release/
When something didn't work *and* it's fixable in code (version numbers mismatch, last minute patches, etc), simply make another release incrementing the third (revision) part of the version number.
================================================
FILE: README.CDN.md
================================================
# Highlight.js CDN Assets
[](https://packagephobia.now.sh/result?p=highlight.js)
**This package contains only the CDN build assets of highlight.js.**
This may be what you want if you'd like to install the pre-built distributable highlight.js client-side assets via NPM. If you're wanting to use highlight.js mainly on the server-side you likely want the [highlight.js][1] package instead.
To access these files via CDN:<br>
https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@latest/build/
**If you just want a single .js file with the common languages built-in:
<https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@latest/build/highlight.min.js>**
---
## Highlight.js
Highlight.js is a syntax highlighter written in JavaScript. It works in
the browser as well as on the server. It works with pretty much any
markup, doesn’t depend on any framework, and has automatic language
detection.
If you'd like to read the full README:<br>
<https://github.com/highlightjs/highlight.js/blob/main/README.md>
## License
Highlight.js is released under the BSD License. See [LICENSE][7] file
for details.
## Links
The official site for the library is at <https://highlightjs.org/>.
The Github project may be found at: <https://github.com/highlightjs/highlight.js>
Further in-depth documentation for the API and other topics is at
<http://highlightjs.readthedocs.io/>.
A list of the Core Team and contributors can be found in the [CONTRIBUTORS.md][8] file.
[1]: https://www.npmjs.com/package/highlight.js
[7]: https://github.com/highlightjs/highlight.js/blob/main/LICENSE
[8]: https://github.com/highlightjs/highlight.js/blob/main/CONTRIBUTORS.md
================================================
FILE: README.md
================================================
# Highlight.js
[](https://www.npmjs.com/package/highlight.js)
[](https://github.com/highlightjs/highlight.js/blob/main/LICENSE)
[](https://packagephobia.now.sh/result?p=highlight.js)

[](https://www.npmjs.com/package/highlight.js)
[](https://www.jsdelivr.com/package/gh/highlightjs/cdn-release)
[](https://github.com/highlightjs/highlight.js/actions/workflows/tests.js.yml)
[](https://github.com/highlightjs/highlight.js/actions/workflows/github-code-scanning/codeql)
[](https://snyk.io/test/github/highlightjs/highlight.js?targetFile=package.json)
[](https://discord.gg/M24EbU7ja9)
[](https://github.com/highlightjs/highlight.js/issues)
[](https://github.com/highlightjs/highlight.js/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+welcome%22)
[](https://github.com/highlightjs/highlight.js/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22)
<!-- [](https://github.com/highlightjs/highlight.js/actions?query=workflow%3A%22Node.js+CI%22) -->
<!-- [](https://github.com/highlightjs/highlight.js/commits/main) -->
<!-- [](https://www.jsdelivr.com/package/gh/highlightjs/cdn-release) -->
<!-- []() -->
<!-- [](https://bundlephobia.com/result?p=highlight.js) -->
Highlight.js is a syntax highlighter written in JavaScript. It works in
the browser as well as on the server. It can work with pretty much any
markup, doesn’t depend on any other frameworks, and has automatic language
detection.
**Contents**
- [Basic Usage](#basic-usage)
- [In the Browser](#in-the-browser)
- [Plaintext Code Blocks](#plaintext-code-blocks)
- [Ignoring a Code Block](#ignoring-a-code-block)
- [Node.js on the Server](#nodejs-on-the-server)
- [Supported Languages](#supported-languages)
- [Custom Usage](#custom-usage)
- [Using custom HTML](#using-custom-html)
- [Using with Vue.js](#using-with-vuejs)
- [Using Web Workers](#using-web-workers)
- [Importing the Library](#importing-the-library)
- [Node.js CommonJS Modules / `require`](#nodejs-commonjs-modules--require)
- [Node.js ES6 Modules / `import`](#nodejs-es6-modules--import)
- [Browser ES6 Modules](#browser-es6-modules)
- [Getting the Library](#getting-the-library)
- [Fetch via CDN](#fetch-via-cdn)
- [cdnjs (link)](#cdnjs-link)
- [jsdelivr (link)](#jsdelivr-link)
- [unpkg (link)](#unpkg-link)
- [Download prebuilt CDN assets](#download-prebuilt-cdn-assets)
- [Download from our website](#download-from-our-website)
- [Install via NPM package](#install-via-npm-package)
- [Build from Source](#build-from-source)
- [Requirements](#requirements)
- [License](#license)
- [Links](#links)
---
#### Upgrading to Version 11
As always, major releases do contain 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 breaking changes and any actions you may need to take.
#### Support for older versions <!-- omit in toc -->
Please see [SECURITY.md](https://github.com/highlightjs/highlight.js/blob/main/SECURITY.md) for long-term support information.
---
## Basic Usage
### In the Browser
The bare minimum for using highlight.js on a web page is linking to the
library along with one of the themes and calling [`highlightAll`][1]:
```html
<link rel="stylesheet" href="/path/to/styles/default.min.css">
<script src="/path/to/highlight.min.js"></script>
<script>hljs.highlightAll();</script>
```
This will find and highlight code inside of `<pre><code>` tags; it tries
to detect the language automatically. If automatic detection doesn’t
work for you, or you simply prefer to be explicit, you can specify the language manually by using the `class` attribute:
```html
<pre><code class="language-html">...</code></pre>
```
#### Plaintext Code Blocks
To apply the Highlight.js styling to plaintext without actually highlighting it, use the `plaintext` language:
```html
<pre><code class="language-plaintext">...</code></pre>
```
#### Ignoring a Code Block
To skip highlighting of a code block completely, use the `nohighlight` class:
```html
<pre><code class="nohighlight">...</code></pre>
```
### Node.js on the Server
The bare minimum to auto-detect the language and highlight some code.
```js
// load the library and ALL languages
hljs = require('highlight.js');
html = hljs.highlightAuto('<h1>Hello World!</h1>').value
```
To load only a "common" subset of popular languages:
```js
hljs = require('highlight.js/lib/common');
```
To highlight code with a specific language, use `highlight`:
```js
html = hljs.highlight('<h1>Hello World!</h1>', {language: 'xml'}).value
```
See [Importing the Library](#importing-the-library) for more examples of `require` vs `import` usage, etc. For more information about the result object returned by `highlight` or `highlightAuto` refer to the [api docs](https://highlightjs.readthedocs.io/en/latest/api.html).
## Supported Languages
Highlight.js supports over 180 languages in the core library. There are also 3rd party
language definitions available to support even more languages. You can find the full list of supported languages in [SUPPORTED_LANGUAGES.md][9].
## Custom Usage
If you need a bit more control over the initialization of
Highlight.js, you can use the [`highlightElement`][3] and [`configure`][4]
functions. This allows you to better control *what* to highlight and *when*.
For example, here’s the rough equivalent of calling [`highlightAll`][1] but doing the work manually instead:
```js
document.addEventListener('DOMContentLoaded', (event) => {
document.querySelectorAll('pre code').forEach((el) => {
hljs.highlightElement(el);
});
});
```
Please refer to the documentation for [`configure`][4] options.
### Using custom HTML
We strongly recommend `<pre><code>` wrapping for code blocks. It's quite
semantic and "just works" out of the box with zero fiddling. It is possible to
use other HTML elements (or combos), but you may need to pay special attention to
preserving linebreaks.
Let's say your markup for code blocks uses divs:
```html
<div class='code'>...</div>
```
To highlight such blocks manually:
```js
// first, find all the div.code blocks
document.querySelectorAll('div.code').forEach(el => {
// then highlight each
hljs.highlightElement(el);
});
```
Without using a tag that preserves linebreaks (like `pre`) you'll need some
additional CSS to help preserve them. You could also [pre and post-process line
breaks with a plug-in][brPlugin], but *we recommend using CSS*.
[brPlugin]: https://github.com/highlightjs/highlight.js/issues/2559
To preserve linebreaks inside a `div` using CSS:
```css
div.code {
white-space: pre;
}
```
### Using with Vue.js
See [highlightjs/vue-plugin](https://github.com/highlightjs/vue-plugin) for a simple Vue plugin that works great with Highlight.js.
An example of `vue-plugin` in action:
```html
<div id="app">
<!-- bind to a data property named `code` -->
<highlightjs autodetect :code="code" />
<!-- or literal code works as well -->
<highlightjs language='javascript' code="var x = 5;" />
</div>
```
### Using Web Workers
You can run highlighting inside a web worker to avoid freezing the browser
window while dealing with very big chunks of code.
In your main script:
```js
addEventListener('load', () => {
const code = document.querySelector('#code');
const worker = new Worker('worker.js');
worker.onmessage = (event) => { code.innerHTML = event.data; }
worker.postMessage(code.textContent);
});
```
In worker.js:
```js
onmessage = (event) => {
importScripts('<path>/highlight.min.js');
const result = self.hljs.highlightAuto(event.data);
postMessage(result.value);
};
```
## Importing the Library
First, you'll likely be installing the library via `npm` or `yarn` -- see [Getting the Library](#getting-the-library).
### Node.js CommonJS Modules / `require`
Requiring the top-level library will load all languages:
```js
// require the highlight.js library, including all languages
const hljs = require('./highlight.js');
const highlightedCode = hljs.highlightAuto('<span>Hello World!</span>').value
```
For a smaller footprint, load our common subset of languages (the same set used for our default web build).
```js
const hljs = require('highlight.js/lib/common');
```
For the smallest footprint, load only the languages you need:
```js
const hljs = require('highlight.js/lib/core');
hljs.registerLanguage('xml', require('highlight.js/lib/languages/xml'));
const highlightedCode = hljs.highlight('<span>Hello World!</span>', {language: 'xml'}).value
```
### Node.js ES6 Modules / `import`
The default import will register all languages:
```js
import hljs from 'highlight.js';
```
It is more efficient to import only the library and register the languages you need:
```js
import hljs from 'highlight.js/lib/core';
import javascript from 'highlight.js/lib/languages/javascript';
hljs.registerLanguage('javascript', javascript);
```
If your build tool processes CSS imports, you can also import the theme directly as a module:
```js
import hljs from 'highlight.js';
import 'highlight.js/styles/github.css';
```
### Browser ES6 Modules
*Note: For now you'll want to install `@highlightjs/cdn-assets` package instead of `highlight.js`.
See [Download prebuilt CDN assets](#download-prebuilt-cdn-assets)*
To import the library and register only those languages that you need:
```js
import hljs from './assets/js/@highlightjs/cdn-assets/es/core.js';
import javascript from './assets/js/@highlightjs/cdn-assets/es/languages/javascript.min.js';
hljs.registerLanguage('javascript', javascript);
```
To import the library and register all languages:
```js
import hljs from './assets/js/@highlightjs/cdn-assets/es/highlight.js';
```
*Note: The path to these files will vary depending on where you have installed/copied them
within your project or site. The above path is only an example.*
You can also use [`importmap`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script/type/importmap) to import in similar way as Node:
```html
<script type="importmap">
{
"imports": {
"@highlightjs": "./assets/js/@highlightjs/cdn-assets/es/"
}
}
</script>
```
Use the above code in your HTML. After that, your JavaScript can import using the named key from
your `importmap`, for example `@highlightjs` in this case:
```js
import hljs from '@highlightjs/core.js';
import javascript from '@highlightjs/languages/javascript.min.js';
hljs.registerLanguage('javascript', javascript);
```
*Note: You can also import directly from fully static URLs, such as our very own pre-built ES6 Module CDN resources. See [Fetch via CDN](#fetch-via-cdn) for specific examples.*
## Getting the Library
You can get highlight.js as a hosted, or custom-build, browser script or
as a server module. Right out of the box the browser script supports
both AMD and CommonJS, so if you wish you can use RequireJS or
Browserify without having to build from source. The server module also
works perfectly fine with Browserify, but there is the option to use a
build specific to browsers rather than something meant for a server.
**Do not link to GitHub directly.** The library is not supposed to work straight
from the source, it requires building. If none of the pre-packaged options
work for you refer to the [building documentation][6].
**On Almond.** You need to use the optimizer to give the module a name. For
example:
```bash
r.js -o name=hljs paths.hljs=/path/to/highlight out=highlight.js
```
### Fetch via CDN
A prebuilt version of Highlight.js bundled with many common languages is hosted by several popular CDNs.
When using Highlight.js via CDN you can use Subresource Integrity for additional security. For details
see [DIGESTS.md](https://github.com/highlightjs/cdn-release/blob/main/DIGESTS.md).
#### cdnjs ([link](https://cdnjs.com/libraries/highlight.js))
##### Common JS <!-- omit in toc -->
```html
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/default.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/highlight.min.js"></script>
<!-- and it's easy to individually load additional languages -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/languages/go.min.js"></script>
```
##### ES6 Modules <!-- omit in toc -->
````html
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/dark.min.css">
<script type="module">
import hljs from 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/es/highlight.min.js';
// and it's easy to individually load additional languages
import go from 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/es/languages/go.min.js';
hljs.registerLanguage('go', go);
</script>
````
#### jsdelivr ([link](https://www.jsdelivr.com/package/gh/highlightjs/cdn-release))
##### Common JS <!-- omit in toc -->
```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.11.1/build/styles/default.min.css">
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.11.1/build/highlight.min.js"></script>
<!-- and it's easy to individually load additional languages -->
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.11.1/build/languages/go.min.js"></script>
```
##### ES6 Modules <!-- omit in toc -->
```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.11.1/build/styles/default.min.css">
<script type="module">
import hljs from 'https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.11.1/build/es/highlight.min.js';
// and it's easy to individually load additional languages
import go from 'https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.11.1/build/es/languages/go.min.js';
hljs.registerLanguage('go', go);
</script>
```
#### unpkg ([link](https://unpkg.com/browse/@highlightjs/cdn-assets/))
##### Common JS <!-- omit in toc -->
```h
gitextract_6r0dturf/
├── .dockerignore
├── .editorconfig
├── .eslintrc.js
├── .eslintrc.lang.js
├── .git-blame-ignore-revs
├── .gitattributes
├── .github/
│ ├── ISSUE_TEMPLATE/
│ │ ├── 1_incorrect-syntax-highlighting.md
│ │ ├── bug_report.md
│ │ ├── config.yml
│ │ ├── feature_request.md
│ │ └── z_request_language_repo.md
│ ├── dependabot.yml
│ ├── pull_request_template.md
│ └── workflows/
│ ├── lint.yml
│ ├── release.yml
│ ├── size_report_comment.yml
│ └── size_report_create.yml
├── .gitignore
├── .mocharc.json
├── .readthedocs.yaml
├── .tokeignore
├── CHANGES.md
├── CONTRIBUTING.md
├── CONTRIBUTORS.md
├── Dockerfile
├── LICENSE
├── MAINTAINERS_GUIDE.md
├── README.CDN.md
├── README.md
├── SECURITY.md
├── SUPPORTED_LANGUAGES.md
├── VERSION_10_BREAKING_CHANGES.md
├── VERSION_10_UPGRADE.md
├── VERSION_11_UPGRADE.md
├── demo/
│ ├── demo.js
│ ├── index.html
│ ├── readme.md
│ └── style.css
├── docs/
│ ├── Makefile
│ ├── _static/
│ │ └── .gitkeep
│ ├── _templates/
│ │ └── .gitkeep
│ ├── api.rst
│ ├── building-testing.rst
│ ├── conf.py
│ ├── css-classes-reference.rst
│ ├── index.rst
│ ├── language-contribution.rst
│ ├── language-guide.rst
│ ├── language-requests.rst
│ ├── line-numbers.rst
│ ├── mode-reference.rst
│ ├── plugin-api.rst
│ ├── plugin-recipes.rst
│ ├── requirements.txt
│ └── theme-guide.rst
├── package.json
├── src/
│ ├── core.d.ts
│ ├── highlight.js
│ ├── languages/
│ │ ├── 1c.js
│ │ ├── abnf.js
│ │ ├── accesslog.js
│ │ ├── actionscript.js
│ │ ├── ada.js
│ │ ├── angelscript.js
│ │ ├── apache.js
│ │ ├── applescript.js
│ │ ├── arcade.js
│ │ ├── arduino.js
│ │ ├── armasm.js
│ │ ├── asciidoc.js
│ │ ├── aspectj.js
│ │ ├── autohotkey.js
│ │ ├── autoit.js
│ │ ├── avrasm.js
│ │ ├── awk.js
│ │ ├── axapta.js
│ │ ├── bash.js
│ │ ├── basic.js
│ │ ├── bnf.js
│ │ ├── brainfuck.js
│ │ ├── c.js
│ │ ├── cal.js
│ │ ├── capnproto.js
│ │ ├── ceylon.js
│ │ ├── clean.js
│ │ ├── clojure-repl.js
│ │ ├── clojure.js
│ │ ├── cmake.js
│ │ ├── coffeescript.js
│ │ ├── coq.js
│ │ ├── cos.js
│ │ ├── cpp.js
│ │ ├── crmsh.js
│ │ ├── crystal.js
│ │ ├── csharp.js
│ │ ├── csp.js
│ │ ├── css.js
│ │ ├── d.js
│ │ ├── dart.js
│ │ ├── delphi.js
│ │ ├── diff.js
│ │ ├── django.js
│ │ ├── dns.js
│ │ ├── dockerfile.js
│ │ ├── dos.js
│ │ ├── dsconfig.js
│ │ ├── dts.js
│ │ ├── dust.js
│ │ ├── ebnf.js
│ │ ├── elixir.js
│ │ ├── elm.js
│ │ ├── erb.js
│ │ ├── erlang-repl.js
│ │ ├── erlang.js
│ │ ├── excel.js
│ │ ├── fix.js
│ │ ├── flix.js
│ │ ├── fortran.js
│ │ ├── fsharp.js
│ │ ├── gams.js
│ │ ├── gauss.js
│ │ ├── gcode.js
│ │ ├── gherkin.js
│ │ ├── glsl.js
│ │ ├── gml.js
│ │ ├── go.js
│ │ ├── golo.js
│ │ ├── gradle.js
│ │ ├── graphql.js
│ │ ├── groovy.js
│ │ ├── haml.js
│ │ ├── handlebars.js
│ │ ├── haskell.js
│ │ ├── haxe.js
│ │ ├── hsp.js
│ │ ├── http.js
│ │ ├── hy.js
│ │ ├── inform7.js
│ │ ├── ini.js
│ │ ├── irpf90.js
│ │ ├── isbl.js
│ │ ├── java.js
│ │ ├── javascript.js
│ │ ├── jboss-cli.js
│ │ ├── json.js
│ │ ├── julia-repl.js
│ │ ├── julia.js
│ │ ├── kotlin.js
│ │ ├── lasso.js
│ │ ├── latex.js
│ │ ├── ldif.js
│ │ ├── leaf.js
│ │ ├── less.js
│ │ ├── lib/
│ │ │ ├── css-shared.js
│ │ │ ├── ecmascript.js
│ │ │ ├── java.js
│ │ │ ├── kws_swift.js
│ │ │ └── mathematica.js
│ │ ├── lisp.js
│ │ ├── livecodeserver.js
│ │ ├── livescript.js
│ │ ├── llvm.js
│ │ ├── lsl.js
│ │ ├── lua.js
│ │ ├── makefile.js
│ │ ├── markdown.js
│ │ ├── mathematica.js
│ │ ├── matlab.js
│ │ ├── maxima.js
│ │ ├── mel.js
│ │ ├── mercury.js
│ │ ├── mipsasm.js
│ │ ├── mizar.js
│ │ ├── mojolicious.js
│ │ ├── monkey.js
│ │ ├── moonscript.js
│ │ ├── n1ql.js
│ │ ├── nestedtext.js
│ │ ├── nginx.js
│ │ ├── nim.js
│ │ ├── nix.js
│ │ ├── node-repl.js
│ │ ├── nsis.js
│ │ ├── objectivec.js
│ │ ├── ocaml.js
│ │ ├── openscad.js
│ │ ├── oxygene.js
│ │ ├── parser3.js
│ │ ├── perl.js
│ │ ├── pf.js
│ │ ├── pgsql.js
│ │ ├── php-template.js
│ │ ├── php.js
│ │ ├── plaintext.js
│ │ ├── pony.js
│ │ ├── powershell.js
│ │ ├── processing.js
│ │ ├── profile.js
│ │ ├── prolog.js
│ │ ├── properties.js
│ │ ├── protobuf.js
│ │ ├── puppet.js
│ │ ├── purebasic.js
│ │ ├── python-repl.js
│ │ ├── python.js
│ │ ├── q.js
│ │ ├── qml.js
│ │ ├── r.js
│ │ ├── reasonml.js
│ │ ├── rib.js
│ │ ├── roboconf.js
│ │ ├── routeros.js
│ │ ├── rsl.js
│ │ ├── ruby.js
│ │ ├── ruleslanguage.js
│ │ ├── rust.js
│ │ ├── sas.js
│ │ ├── scala.js
│ │ ├── scheme.js
│ │ ├── scilab.js
│ │ ├── scss.js
│ │ ├── shell.js
│ │ ├── smali.js
│ │ ├── smalltalk.js
│ │ ├── sml.js
│ │ ├── sqf.js
│ │ ├── sql.js
│ │ ├── stan.js
│ │ ├── stata.js
│ │ ├── step21.js
│ │ ├── stylus.js
│ │ ├── subunit.js
│ │ ├── swift.js
│ │ ├── taggerscript.js
│ │ ├── tap.js
│ │ ├── tcl.js
│ │ ├── thrift.js
│ │ ├── tp.js
│ │ ├── twig.js
│ │ ├── typescript.js
│ │ ├── vala.js
│ │ ├── vbnet.js
│ │ ├── vbscript-html.js
│ │ ├── vbscript.js
│ │ ├── verilog.js
│ │ ├── vhdl.js
│ │ ├── vim.js
│ │ ├── wasm.js
│ │ ├── wren.js
│ │ ├── x86asm.js
│ │ ├── xl.js
│ │ ├── xml.js
│ │ ├── xquery.js
│ │ ├── yaml.js
│ │ └── zephir.js
│ ├── lib/
│ │ ├── compile_keywords.js
│ │ ├── compiler_extensions.js
│ │ ├── ext/
│ │ │ └── multi_class.js
│ │ ├── exts/
│ │ │ └── before_match.js
│ │ ├── html_injection_error.js
│ │ ├── html_renderer.js
│ │ ├── logger.js
│ │ ├── mode_compiler.js
│ │ ├── modes.js
│ │ ├── regex.js
│ │ ├── response.js
│ │ ├── token_tree.js
│ │ └── utils.js
│ ├── stub.js
│ └── styles/
│ ├── 1c-light.css
│ ├── a11y-dark.css
│ ├── a11y-light.css
│ ├── agate.css
│ ├── an-old-hope.css
│ ├── androidstudio.css
│ ├── arduino-light.css
│ ├── arta.css
│ ├── ascetic.css
│ ├── atom-one-dark-reasonable.css
│ ├── atom-one-dark.css
│ ├── atom-one-light.css
│ ├── base16/
│ │ ├── 3024.css
│ │ ├── apathy.css
│ │ ├── apprentice.css
│ │ ├── ashes.css
│ │ ├── atelier-cave-light.css
│ │ ├── atelier-cave.css
│ │ ├── atelier-dune-light.css
│ │ ├── atelier-dune.css
│ │ ├── atelier-estuary-light.css
│ │ ├── atelier-estuary.css
│ │ ├── atelier-forest-light.css
│ │ ├── atelier-forest.css
│ │ ├── atelier-heath-light.css
│ │ ├── atelier-heath.css
│ │ ├── atelier-lakeside-light.css
│ │ ├── atelier-lakeside.css
│ │ ├── atelier-plateau-light.css
│ │ ├── atelier-plateau.css
│ │ ├── atelier-savanna-light.css
│ │ ├── atelier-savanna.css
│ │ ├── atelier-seaside-light.css
│ │ ├── atelier-seaside.css
│ │ ├── atelier-sulphurpool-light.css
│ │ ├── atelier-sulphurpool.css
│ │ ├── atlas.css
│ │ ├── bespin.css
│ │ ├── black-metal-bathory.css
│ │ ├── black-metal-burzum.css
│ │ ├── black-metal-dark-funeral.css
│ │ ├── black-metal-gorgoroth.css
│ │ ├── black-metal-immortal.css
│ │ ├── black-metal-khold.css
│ │ ├── black-metal-marduk.css
│ │ ├── black-metal-mayhem.css
│ │ ├── black-metal-nile.css
│ │ ├── black-metal-venom.css
│ │ ├── black-metal.css
│ │ ├── brewer.css
│ │ ├── bright.css
│ │ ├── brogrammer.css
│ │ ├── brush-trees-dark.css
│ │ ├── brush-trees.css
│ │ ├── chalk.css
│ │ ├── circus.css
│ │ ├── classic-dark.css
│ │ ├── classic-light.css
│ │ ├── codeschool.css
│ │ ├── colors.css
│ │ ├── cupcake.css
│ │ ├── cupertino.css
│ │ ├── danqing.css
│ │ ├── darcula.css
│ │ ├── dark-violet.css
│ │ ├── darkmoss.css
│ │ ├── darktooth.css
│ │ ├── decaf.css
│ │ ├── default-dark.css
│ │ ├── default-light.css
│ │ ├── dirtysea.css
│ │ ├── dracula.css
│ │ ├── edge-dark.css
│ │ ├── edge-light.css
│ │ ├── eighties.css
│ │ ├── embers.css
│ │ ├── equilibrium-dark.css
│ │ ├── equilibrium-gray-dark.css
│ │ ├── equilibrium-gray-light.css
│ │ ├── equilibrium-light.css
│ │ ├── espresso.css
│ │ ├── eva-dim.css
│ │ ├── eva.css
│ │ ├── flat.css
│ │ ├── framer.css
│ │ ├── fruit-soda.css
│ │ ├── gigavolt.css
│ │ ├── github.css
│ │ ├── google-dark.css
│ │ ├── google-light.css
│ │ ├── grayscale-dark.css
│ │ ├── grayscale-light.css
│ │ ├── green-screen.css
│ │ ├── gruvbox-dark-hard.css
│ │ ├── gruvbox-dark-medium.css
│ │ ├── gruvbox-dark-pale.css
│ │ ├── gruvbox-dark-soft.css
│ │ ├── gruvbox-light-hard.css
│ │ ├── gruvbox-light-medium.css
│ │ ├── gruvbox-light-soft.css
│ │ ├── hardcore.css
│ │ ├── harmonic16-dark.css
│ │ ├── harmonic16-light.css
│ │ ├── heetch-dark.css
│ │ ├── heetch-light.css
│ │ ├── helios.css
│ │ ├── hopscotch.css
│ │ ├── horizon-dark.css
│ │ ├── horizon-light.css
│ │ ├── humanoid-dark.css
│ │ ├── humanoid-light.css
│ │ ├── ia-dark.css
│ │ ├── ia-light.css
│ │ ├── icy-dark.css
│ │ ├── ir-black.css
│ │ ├── isotope.css
│ │ ├── kimber.css
│ │ ├── london-tube.css
│ │ ├── macintosh.css
│ │ ├── marrakesh.css
│ │ ├── materia.css
│ │ ├── material-darker.css
│ │ ├── material-lighter.css
│ │ ├── material-palenight.css
│ │ ├── material-vivid.css
│ │ ├── material.css
│ │ ├── mellow-purple.css
│ │ ├── mexico-light.css
│ │ ├── mocha.css
│ │ ├── monokai.css
│ │ ├── nebula.css
│ │ ├── nord.css
│ │ ├── nova.css
│ │ ├── ocean.css
│ │ ├── oceanicnext.css
│ │ ├── one-light.css
│ │ ├── onedark.css
│ │ ├── outrun-dark.css
│ │ ├── papercolor-dark.css
│ │ ├── papercolor-light.css
│ │ ├── paraiso.css
│ │ ├── pasque.css
│ │ ├── phd.css
│ │ ├── pico.css
│ │ ├── pop.css
│ │ ├── porple.css
│ │ ├── qualia.css
│ │ ├── railscasts.css
│ │ ├── rebecca.css
│ │ ├── ros-pine-dawn.css
│ │ ├── ros-pine-moon.css
│ │ ├── ros-pine.css
│ │ ├── sagelight.css
│ │ ├── sandcastle.css
│ │ ├── seti-ui.css
│ │ ├── shapeshifter.css
│ │ ├── silk-dark.css
│ │ ├── silk-light.css
│ │ ├── snazzy.css
│ │ ├── solar-flare-light.css
│ │ ├── solar-flare.css
│ │ ├── solarized-dark.css
│ │ ├── solarized-light.css
│ │ ├── spacemacs.css
│ │ ├── summercamp.css
│ │ ├── summerfruit-dark.css
│ │ ├── summerfruit-light.css
│ │ ├── synth-midnight-terminal-dark.css
│ │ ├── synth-midnight-terminal-light.css
│ │ ├── tango.css
│ │ ├── tender.css
│ │ ├── tomorrow-night.css
│ │ ├── tomorrow.css
│ │ ├── twilight.css
│ │ ├── unikitty-dark.css
│ │ ├── unikitty-light.css
│ │ ├── vulcan.css
│ │ ├── windows-10-light.css
│ │ ├── windows-10.css
│ │ ├── windows-95-light.css
│ │ ├── windows-95.css
│ │ ├── windows-high-contrast-light.css
│ │ ├── windows-high-contrast.css
│ │ ├── windows-nt-light.css
│ │ ├── windows-nt.css
│ │ ├── woodland.css
│ │ ├── xcode-dusk.css
│ │ └── zenburn.css
│ ├── brown-paper.css
│ ├── codepen-embed.css
│ ├── color-brewer.css
│ ├── cybertopia-cherry.css
│ ├── cybertopia-dimmer.css
│ ├── cybertopia-icecap.css
│ ├── cybertopia-saturated.css
│ ├── dark.css
│ ├── default.css
│ ├── devibeans.css
│ ├── docco.css
│ ├── far.css
│ ├── felipec.css
│ ├── foundation.css
│ ├── github-dark-dimmed.css
│ ├── github-dark.css
│ ├── github.css
│ ├── gml.css
│ ├── googlecode.css
│ ├── gradient-dark.css
│ ├── gradient-light.css
│ ├── grayscale.css
│ ├── hybrid.css
│ ├── idea.css
│ ├── intellij-light.css
│ ├── ir-black.css
│ ├── isbl-editor-dark.css
│ ├── isbl-editor-light.css
│ ├── kimbie-dark.css
│ ├── kimbie-light.css
│ ├── lightfair.css
│ ├── lioshi.css
│ ├── magula.css
│ ├── mono-blue.css
│ ├── monokai-sublime.css
│ ├── monokai.css
│ ├── night-owl.css
│ ├── nnfx-dark.css
│ ├── nnfx-light.css
│ ├── nord.css
│ ├── obsidian.css
│ ├── panda-syntax-dark.css
│ ├── panda-syntax-light.css
│ ├── paraiso-dark.css
│ ├── paraiso-light.css
│ ├── pojoaque.css
│ ├── purebasic.css
│ ├── qtcreator-dark.css
│ ├── qtcreator-light.css
│ ├── rainbow.css
│ ├── rose-pine-dawn.css
│ ├── rose-pine-moon.css
│ ├── rose-pine.css
│ ├── routeros.css
│ ├── school-book.css
│ ├── shades-of-purple.css
│ ├── srcery.css
│ ├── stackoverflow-dark.css
│ ├── stackoverflow-light.css
│ ├── sunburst.css
│ ├── tokyo-night-dark.css
│ ├── tokyo-night-light.css
│ ├── tomorrow-night-blue.css
│ ├── tomorrow-night-bright.css
│ ├── vs-dark.css
│ ├── vs.css
│ ├── vs2015.css
│ ├── xcode.css
│ └── xt256.css
├── test/
│ ├── api/
│ │ ├── autoDetection.js
│ │ ├── beginKeywords.js
│ │ ├── binaryNumber.js
│ │ ├── cNumber.js
│ │ ├── getLanguage.js
│ │ ├── highlight.js
│ │ ├── ident.js
│ │ ├── index.js
│ │ ├── keywords.js
│ │ ├── multiClassMatch.js
│ │ ├── number.js
│ │ ├── registerAlias.js
│ │ ├── starters.js
│ │ ├── underscoreIdent.js
│ │ └── unregisterLanguage.js
│ ├── browser/
│ │ ├── highlight_block_callbacks.js
│ │ ├── index.js
│ │ ├── plain.js
│ │ └── worker.js
│ ├── builds/
│ │ ├── browser_build_as_commonjs.js
│ │ ├── cdn_build_as_esm.mjs
│ │ ├── node_build_as_esm.mjs
│ │ ├── package.js
│ │ ├── rollup_import_cdn_build_esm.mjs
│ │ ├── rollup_import_node_build_esm.mjs
│ │ └── rollup_import_via_commonjs.mjs
│ ├── detect/
│ │ ├── 1c/
│ │ │ └── default.txt
│ │ ├── abnf/
│ │ │ └── default.txt
│ │ ├── accesslog/
│ │ │ └── default.txt
│ │ ├── actionscript/
│ │ │ └── default.txt
│ │ ├── ada/
│ │ │ └── default.txt
│ │ ├── angelscript/
│ │ │ └── default.txt
│ │ ├── apache/
│ │ │ └── default.txt
│ │ ├── applescript/
│ │ │ └── default.txt
│ │ ├── arcade/
│ │ │ └── default.txt
│ │ ├── arduino/
│ │ │ └── default.txt
│ │ ├── armasm/
│ │ │ └── default.txt
│ │ ├── asciidoc/
│ │ │ └── default.txt
│ │ ├── aspectj/
│ │ │ └── default.txt
│ │ ├── autohotkey/
│ │ │ └── default.txt
│ │ ├── autoit/
│ │ │ └── default.txt
│ │ ├── avrasm/
│ │ │ └── default.txt
│ │ ├── awk/
│ │ │ └── default.txt
│ │ ├── axapta/
│ │ │ └── default.txt
│ │ ├── bash/
│ │ │ └── default.txt
│ │ ├── basic/
│ │ │ └── default.txt
│ │ ├── bnf/
│ │ │ └── default.txt
│ │ ├── brainfuck/
│ │ │ └── default.txt
│ │ ├── cal/
│ │ │ └── default.txt
│ │ ├── capnproto/
│ │ │ └── default.txt
│ │ ├── ceylon/
│ │ │ └── default.txt
│ │ ├── clean/
│ │ │ └── default.txt
│ │ ├── clojure/
│ │ │ └── default.txt
│ │ ├── clojure-repl/
│ │ │ └── default.txt
│ │ ├── cmake/
│ │ │ └── default.txt
│ │ ├── coffeescript/
│ │ │ └── default.txt
│ │ ├── coq/
│ │ │ └── default.txt
│ │ ├── cos/
│ │ │ └── default.txt
│ │ ├── cpp/
│ │ │ └── default.txt
│ │ ├── crmsh/
│ │ │ └── default.txt
│ │ ├── crystal/
│ │ │ └── default.txt
│ │ ├── csharp/
│ │ │ └── default.txt
│ │ ├── csp/
│ │ │ └── default.txt
│ │ ├── css/
│ │ │ └── default.txt
│ │ ├── d/
│ │ │ └── default.txt
│ │ ├── dart/
│ │ │ └── default.txt
│ │ ├── delphi/
│ │ │ └── default.txt
│ │ ├── diff/
│ │ │ └── default.txt
│ │ ├── django/
│ │ │ └── default.txt
│ │ ├── dns/
│ │ │ └── default.txt
│ │ ├── dockerfile/
│ │ │ └── default.txt
│ │ ├── dos/
│ │ │ └── default.txt
│ │ ├── dsconfig/
│ │ │ └── default.txt
│ │ ├── dts/
│ │ │ └── default.txt
│ │ ├── dust/
│ │ │ └── default.txt
│ │ ├── ebnf/
│ │ │ └── default.txt
│ │ ├── elixir/
│ │ │ └── default.txt
│ │ ├── elm/
│ │ │ └── default.txt
│ │ ├── erb/
│ │ │ └── default.txt
│ │ ├── erlang/
│ │ │ └── default.txt
│ │ ├── erlang-repl/
│ │ │ └── default.txt
│ │ ├── excel/
│ │ │ └── default.txt
│ │ ├── fix/
│ │ │ └── default.txt
│ │ ├── flix/
│ │ │ └── default.txt
│ │ ├── fortran/
│ │ │ └── default.txt
│ │ ├── fsharp/
│ │ │ └── default.txt
│ │ ├── gams/
│ │ │ └── default.txt
│ │ ├── gauss/
│ │ │ └── default.txt
│ │ ├── gcode/
│ │ │ └── default.txt
│ │ ├── gherkin/
│ │ │ └── default.txt
│ │ ├── glsl/
│ │ │ └── default.txt
│ │ ├── gml/
│ │ │ └── default.txt
│ │ ├── go/
│ │ │ ├── default.txt
│ │ │ └── swift-like.txt
│ │ ├── golo/
│ │ │ └── default.txt
│ │ ├── gradle/
│ │ │ └── default.txt
│ │ ├── graphql/
│ │ │ └── default.txt
│ │ ├── groovy/
│ │ │ └── default.txt
│ │ ├── haml/
│ │ │ └── default.txt
│ │ ├── handlebars/
│ │ │ └── default.txt
│ │ ├── haskell/
│ │ │ └── default.txt
│ │ ├── haxe/
│ │ │ └── default.txt
│ │ ├── hsp/
│ │ │ └── default.txt
│ │ ├── http/
│ │ │ └── default.txt
│ │ ├── hy/
│ │ │ └── default.txt
│ │ ├── index.js
│ │ ├── inform7/
│ │ │ └── default.txt
│ │ ├── ini/
│ │ │ └── default.txt
│ │ ├── irpf90/
│ │ │ └── default.txt
│ │ ├── isbl/
│ │ │ └── default.txt
│ │ ├── java/
│ │ │ └── default.txt
│ │ ├── javascript/
│ │ │ ├── default.txt
│ │ │ ├── sample1.txt
│ │ │ └── short-plain.txt
│ │ ├── jboss-cli/
│ │ │ └── default.txt
│ │ ├── json/
│ │ │ └── default.txt
│ │ ├── json5/
│ │ │ └── default.txt
│ │ ├── julia/
│ │ │ └── default.txt
│ │ ├── julia-repl/
│ │ │ └── default.txt
│ │ ├── kotlin/
│ │ │ └── default.txt
│ │ ├── lasso/
│ │ │ └── default.txt
│ │ ├── latex/
│ │ │ └── default.txt
│ │ ├── ldif/
│ │ │ └── default.txt
│ │ ├── leaf/
│ │ │ └── default.txt
│ │ ├── less/
│ │ │ └── default.txt
│ │ ├── lisp/
│ │ │ └── default.txt
│ │ ├── livecodeserver/
│ │ │ └── default.txt
│ │ ├── livescript/
│ │ │ └── default.txt
│ │ ├── llvm/
│ │ │ └── default.txt
│ │ ├── lsl/
│ │ │ └── default.txt
│ │ ├── lua/
│ │ │ └── default.txt
│ │ ├── makefile/
│ │ │ └── default.txt
│ │ ├── markdown/
│ │ │ └── default.txt
│ │ ├── mathematica/
│ │ │ └── default.txt
│ │ ├── matlab/
│ │ │ └── default.txt
│ │ ├── maxima/
│ │ │ └── default.txt
│ │ ├── mel/
│ │ │ └── default.txt
│ │ ├── mercury/
│ │ │ └── default.txt
│ │ ├── mipsasm/
│ │ │ └── default.txt
│ │ ├── mizar/
│ │ │ └── default.txt
│ │ ├── mojolicious/
│ │ │ └── default.txt
│ │ ├── monkey/
│ │ │ └── default.txt
│ │ ├── moonscript/
│ │ │ └── default.txt
│ │ ├── n1ql/
│ │ │ └── default.txt
│ │ ├── nestedtext/
│ │ │ └── default.txt
│ │ ├── nginx/
│ │ │ └── default.txt
│ │ ├── nim/
│ │ │ └── default.txt
│ │ ├── nix/
│ │ │ └── default.txt
│ │ ├── node-repl/
│ │ │ └── default.txt
│ │ ├── nsis/
│ │ │ └── default.txt
│ │ ├── objectivec/
│ │ │ └── default.txt
│ │ ├── ocaml/
│ │ │ └── default.txt
│ │ ├── openscad/
│ │ │ └── default.txt
│ │ ├── oxygene/
│ │ │ └── default.txt
│ │ ├── parser3/
│ │ │ └── default.txt
│ │ ├── perl/
│ │ │ └── default.txt
│ │ ├── pf/
│ │ │ └── default.txt
│ │ ├── pgsql/
│ │ │ └── default.txt
│ │ ├── php/
│ │ │ └── default.txt
│ │ ├── php-template/
│ │ │ └── default.txt
│ │ ├── plaintext/
│ │ │ └── default.txt
│ │ ├── pony/
│ │ │ └── default.txt
│ │ ├── powershell/
│ │ │ └── default.txt
│ │ ├── processing/
│ │ │ └── default.txt
│ │ ├── profile/
│ │ │ └── default.txt
│ │ ├── prolog/
│ │ │ └── default.txt
│ │ ├── properties/
│ │ │ └── default.txt
│ │ ├── protobuf/
│ │ │ └── default.txt
│ │ ├── puppet/
│ │ │ └── default.txt
│ │ ├── purebasic/
│ │ │ └── default.txt
│ │ ├── python/
│ │ │ └── default.txt
│ │ ├── python-repl/
│ │ │ └── default.txt
│ │ ├── q/
│ │ │ └── default.txt
│ │ ├── qml/
│ │ │ └── default.txt
│ │ ├── r/
│ │ │ └── default.txt
│ │ ├── reasonml/
│ │ │ └── default.txt
│ │ ├── rib/
│ │ │ └── default.txt
│ │ ├── roboconf/
│ │ │ └── default.txt
│ │ ├── routeros/
│ │ │ └── default.txt
│ │ ├── rsl/
│ │ │ └── default.txt
│ │ ├── ruby/
│ │ │ ├── default.txt
│ │ │ └── double-colon.txt
│ │ ├── ruleslanguage/
│ │ │ └── default.txt
│ │ ├── rust/
│ │ │ └── default.txt
│ │ ├── sas/
│ │ │ └── default.txt
│ │ ├── scala/
│ │ │ └── default.txt
│ │ ├── scheme/
│ │ │ └── default.txt
│ │ ├── scilab/
│ │ │ └── default.txt
│ │ ├── scss/
│ │ │ └── default.txt
│ │ ├── shell/
│ │ │ └── default.txt
│ │ ├── smali/
│ │ │ └── default.txt
│ │ ├── smalltalk/
│ │ │ └── default.txt
│ │ ├── sml/
│ │ │ └── default.txt
│ │ ├── sqf/
│ │ │ └── default.txt
│ │ ├── sql/
│ │ │ └── default.txt
│ │ ├── stan/
│ │ │ └── default.txt
│ │ ├── stata/
│ │ │ └── default.txt
│ │ ├── step21/
│ │ │ └── default.txt
│ │ ├── stylus/
│ │ │ └── default.txt
│ │ ├── subunit/
│ │ │ └── default.txt
│ │ ├── swift/
│ │ │ └── default.txt
│ │ ├── taggerscript/
│ │ │ └── default.txt
│ │ ├── tap/
│ │ │ └── default.txt
│ │ ├── tcl/
│ │ │ └── default.txt
│ │ ├── thrift/
│ │ │ └── default.txt
│ │ ├── tp/
│ │ │ └── default.txt
│ │ ├── twig/
│ │ │ └── default.txt
│ │ ├── typescript/
│ │ │ └── default.txt
│ │ ├── vala/
│ │ │ └── default.txt
│ │ ├── vbnet/
│ │ │ └── default.txt
│ │ ├── vbscript/
│ │ │ └── default.txt
│ │ ├── vbscript-html/
│ │ │ └── default.txt
│ │ ├── verilog/
│ │ │ └── default.txt
│ │ ├── vhdl/
│ │ │ └── default.txt
│ │ ├── vim/
│ │ │ └── default.txt
│ │ ├── wasm/
│ │ │ └── default.txt
│ │ ├── wren/
│ │ │ └── default.txt
│ │ ├── x86asm/
│ │ │ └── default.txt
│ │ ├── xl/
│ │ │ └── default.txt
│ │ ├── xml/
│ │ │ ├── default.txt
│ │ │ ├── groovy-julia.txt
│ │ │ └── js.txt
│ │ ├── xquery/
│ │ │ └── default.txt
│ │ ├── yaml/
│ │ │ └── default.txt
│ │ └── zephir/
│ │ └── default.txt
│ ├── fixtures/
│ │ ├── expect/
│ │ │ ├── endsWithParentVariants.txt
│ │ │ ├── explicit1.txt
│ │ │ ├── explicit2.txt
│ │ │ ├── languagealias.txt
│ │ │ ├── sublanguages.txt
│ │ │ └── useBr.txt
│ │ ├── index.html
│ │ └── nested.js
│ ├── index.js
│ ├── markup/
│ │ ├── 1c/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── abnf/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── accesslog/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── actionscript/
│ │ │ ├── method-call.expect.txt
│ │ │ └── method-call.txt
│ │ ├── ada/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── angelscript/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── apache/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── applescript/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── arcade/
│ │ │ ├── profile.expect.txt
│ │ │ └── profile.txt
│ │ ├── arduino/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── armasm/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── asciidoc/
│ │ │ ├── constrained.expect.txt
│ │ │ ├── constrained.txt
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── unconstrained.expect.txt
│ │ │ └── unconstrained.txt
│ │ ├── aspectj/
│ │ │ ├── intertype-constructor.expect.txt
│ │ │ ├── intertype-constructor.txt
│ │ │ ├── intertype-method.expect.txt
│ │ │ └── intertype-method.txt
│ │ ├── autohotkey/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── autoit/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── avrasm/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── awk/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── axapta/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── bash/
│ │ │ ├── arithmetic.expect.txt
│ │ │ ├── arithmetic.txt
│ │ │ ├── escaped-apos.expect.txt
│ │ │ ├── escaped-apos.txt
│ │ │ ├── escaped-quote.expect.txt
│ │ │ ├── escaped-quote.txt
│ │ │ ├── no-numbers.expect.txt
│ │ │ ├── no-numbers.txt
│ │ │ ├── not-comments.expect.txt
│ │ │ ├── not-comments.txt
│ │ │ ├── strings.expect.txt
│ │ │ ├── strings.txt
│ │ │ ├── token-containing-keyword.expect.txt
│ │ │ ├── token-containing-keyword.txt
│ │ │ ├── variables.expect.txt
│ │ │ └── variables.txt
│ │ ├── basic/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── bnf/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── brainfuck/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── c/
│ │ │ ├── number-literals.expect.txt
│ │ │ └── number-literals.txt
│ │ ├── cal/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── capnproto/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── ceylon/
│ │ │ ├── nested-comments.expect.txt
│ │ │ └── nested-comments.txt
│ │ ├── clean/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── clojure/
│ │ │ ├── character.expect.txt
│ │ │ ├── character.txt
│ │ │ ├── comment-macro.expect.txt
│ │ │ ├── comment-macro.txt
│ │ │ ├── deps_edn.expect.txt
│ │ │ ├── deps_edn.txt
│ │ │ ├── globals_definition.expect.txt
│ │ │ ├── globals_definition.txt
│ │ │ ├── number.expect.txt
│ │ │ ├── number.txt
│ │ │ ├── symbols-numbers.expect.txt
│ │ │ └── symbols-numbers.txt
│ │ ├── clojure-repl/
│ │ │ ├── prompt.expect.txt
│ │ │ └── prompt.txt
│ │ ├── cmake/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── coffeescript/
│ │ │ ├── division.expect.txt
│ │ │ ├── division.txt
│ │ │ ├── freeze_bug.expect.txt
│ │ │ ├── freeze_bug.txt
│ │ │ ├── function.expect.txt
│ │ │ ├── function.txt
│ │ │ ├── regex.expect.txt
│ │ │ └── regex.txt
│ │ ├── coq/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── cos/
│ │ │ ├── basic.expect.txt
│ │ │ ├── basic.txt
│ │ │ ├── embedded.expect.txt
│ │ │ └── embedded.txt
│ │ ├── cpp/
│ │ │ ├── bitwise-keywords.expect.txt
│ │ │ ├── bitwise-keywords.txt
│ │ │ ├── bugs.expect.txt
│ │ │ ├── bugs.txt
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── expression-keywords.expect.txt
│ │ │ ├── expression-keywords.txt
│ │ │ ├── function-declarations.expect.txt
│ │ │ ├── function-declarations.txt
│ │ │ ├── function-like-keywords.expect.txt
│ │ │ ├── function-like-keywords.txt
│ │ │ ├── function-params.expect.txt
│ │ │ ├── function-params.txt
│ │ │ ├── function-title.expect.txt
│ │ │ ├── function-title.txt
│ │ │ ├── initializers.expect.txt
│ │ │ ├── initializers.txt
│ │ │ ├── number-literals.expect.txt
│ │ │ ├── number-literals.txt
│ │ │ ├── pointers-returns.expect.txt
│ │ │ ├── pointers-returns.txt
│ │ │ ├── preprocessor.expect.txt
│ │ │ ├── preprocessor.txt
│ │ │ ├── primitive-types.expect.txt
│ │ │ ├── primitive-types.txt
│ │ │ ├── string-literals.expect.txt
│ │ │ ├── string-literals.txt
│ │ │ ├── template-complexity.expect.txt
│ │ │ ├── template-complexity.txt
│ │ │ ├── truncated-raw-string.expect.txt
│ │ │ └── truncated-raw-string.txt
│ │ ├── crmsh/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── crystal/
│ │ │ ├── defs.expect.txt
│ │ │ ├── defs.txt
│ │ │ ├── literals.expect.txt
│ │ │ ├── literals.txt
│ │ │ ├── macro.expect.txt
│ │ │ ├── macro.txt
│ │ │ ├── operators.expect.txt
│ │ │ ├── operators.txt
│ │ │ ├── regexes.expect.txt
│ │ │ ├── regexes.txt
│ │ │ ├── toplevel-keywords.expect.txt
│ │ │ └── toplevel-keywords.txt
│ │ ├── csharp/
│ │ │ ├── dotted-namespace.expect.txt
│ │ │ ├── dotted-namespace.txt
│ │ │ ├── floats.expect.txt
│ │ │ ├── floats.txt
│ │ │ ├── functions.expect.txt
│ │ │ ├── functions.txt
│ │ │ ├── generic_modifiers.expect.txt
│ │ │ ├── generic_modifiers.txt
│ │ │ ├── identifiers.expect.txt
│ │ │ ├── identifiers.txt
│ │ │ ├── records.expect.txt
│ │ │ ├── records.txt
│ │ │ ├── scoped.expect.txt
│ │ │ ├── scoped.txt
│ │ │ ├── string-interpolation.expect.txt
│ │ │ ├── string-interpolation.txt
│ │ │ ├── string-raw.expect.txt
│ │ │ ├── string-raw.txt
│ │ │ ├── titles.expect.txt
│ │ │ ├── titles.txt
│ │ │ ├── try-catch.expect.txt
│ │ │ └── try-catch.txt
│ │ ├── csp/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── css/
│ │ │ ├── css_consistency.expect.txt
│ │ │ ├── css_consistency.txt
│ │ │ ├── hex-colors.expect.txt
│ │ │ ├── hex-colors.txt
│ │ │ ├── pseudo-selector.expect.txt
│ │ │ ├── pseudo-selector.txt
│ │ │ ├── pseudo.expect.txt
│ │ │ ├── pseudo.txt
│ │ │ ├── sample.expect.txt
│ │ │ ├── sample.txt
│ │ │ ├── url.expect.txt
│ │ │ ├── url.txt
│ │ │ ├── variables.expect.txt
│ │ │ └── variables.txt
│ │ ├── d/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── dart/
│ │ │ ├── comment-markdown.expect.txt
│ │ │ ├── comment-markdown.txt
│ │ │ ├── string-interpolation.expect.txt
│ │ │ └── string-interpolation.txt
│ │ ├── delphi/
│ │ │ ├── character-string.expect.txt
│ │ │ ├── character-string.txt
│ │ │ ├── compiler-directive.expect.txt
│ │ │ ├── compiler-directive.txt
│ │ │ ├── numeric-literal.expect.txt
│ │ │ └── numeric-literal.txt
│ │ ├── diff/
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── git-format-patch.expect.txt
│ │ │ └── git-format-patch.txt
│ │ ├── django/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── dns/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── dockerfile/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── dos/
│ │ │ ├── comments.expect.txt
│ │ │ └── comments.txt
│ │ ├── dsconfig/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── dts/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── dust/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── ebnf/
│ │ │ ├── quote-symbols.expect.txt
│ │ │ ├── quote-symbols.txt
│ │ │ ├── terminators.expect.txt
│ │ │ ├── terminators.txt
│ │ │ ├── underscore-production.expect.txt
│ │ │ └── underscore-production.txt
│ │ ├── elixir/
│ │ │ ├── char-literal.expect.txt
│ │ │ ├── char-literal.txt
│ │ │ ├── conditionals.expect.txt
│ │ │ ├── conditionals.txt
│ │ │ ├── function-not-regex.expect.txt
│ │ │ ├── function-not-regex.txt
│ │ │ ├── function-title.expect.txt
│ │ │ ├── function-title.txt
│ │ │ ├── module-references.expect.txt
│ │ │ ├── module-references.txt
│ │ │ ├── modules.expect.txt
│ │ │ ├── modules.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── sigils.expect.txt
│ │ │ ├── sigils.txt
│ │ │ ├── strings.expect.txt
│ │ │ ├── strings.txt
│ │ │ ├── uppercase-string-sigil.expect.txt
│ │ │ └── uppercase-string-sigil.txt
│ │ ├── elm/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── erb/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── erlang/
│ │ │ ├── char_literal.expect.txt
│ │ │ ├── char_literal.txt
│ │ │ ├── doc_attribute.expect.txt
│ │ │ ├── doc_attribute.txt
│ │ │ ├── maybe.expect.txt
│ │ │ ├── maybe.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── sigil.expect.txt
│ │ │ ├── sigil.txt
│ │ │ ├── triple_quote_string.expect.txt
│ │ │ └── triple_quote_string.txt
│ │ ├── erlang-repl/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── excel/
│ │ │ ├── comments.expect.txt
│ │ │ └── comments.txt
│ │ ├── fix/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── flix/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── fortran/
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── dot_keywords.expect.txt
│ │ │ ├── dot_keywords.txt
│ │ │ ├── numbers.expect.txt
│ │ │ └── numbers.txt
│ │ ├── fsharp/
│ │ │ ├── attributes.expect.txt
│ │ │ ├── attributes.txt
│ │ │ ├── bang-keywords.expect.txt
│ │ │ ├── bang-keywords.txt
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── computation-expressions.expect.txt
│ │ │ ├── computation-expressions.txt
│ │ │ ├── fsi-and-preprocessor.expect.txt
│ │ │ ├── fsi-and-preprocessor.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── operators.expect.txt
│ │ │ ├── operators.txt
│ │ │ ├── strings.expect.txt
│ │ │ ├── strings.txt
│ │ │ ├── types.expect.txt
│ │ │ └── types.txt
│ │ ├── gams/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── gauss/
│ │ │ ├── function_defs.expect.txt
│ │ │ ├── function_defs.txt
│ │ │ ├── function_refs.expect.txt
│ │ │ ├── function_refs.txt
│ │ │ ├── keywords.expect.txt
│ │ │ └── keywords.txt
│ │ ├── gcode/
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── extended.expect.txt
│ │ │ └── extended.txt
│ │ ├── gherkin/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── glsl/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── gml/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── go/
│ │ │ ├── functions.expect.txt
│ │ │ ├── functions.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── strings.expect.txt
│ │ │ └── strings.txt
│ │ ├── golo/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── gradle/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── graphql/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── groovy/
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── oneoffs.expect.txt
│ │ │ └── oneoffs.txt
│ │ ├── haml/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── handlebars/
│ │ │ ├── block-expression-variants-as-path-segment.expect.txt
│ │ │ ├── block-expression-variants-as-path-segment.txt
│ │ │ ├── block-expression-variants-in-helper-name.expect.txt
│ │ │ ├── block-expression-variants-in-helper-name.txt
│ │ │ ├── block-expression-variants-in-param.expect.txt
│ │ │ ├── block-expression-variants-in-param.txt
│ │ │ ├── block-parameters-as.expect.txt
│ │ │ ├── block-parameters-as.txt
│ │ │ ├── block-with-param.expect.txt
│ │ │ ├── block-with-param.txt
│ │ │ ├── block.expect.txt
│ │ │ ├── block.txt
│ │ │ ├── built-ins.expect.txt
│ │ │ ├── built-ins.txt
│ │ │ ├── combinations-with-text.expect.txt
│ │ │ ├── combinations-with-text.txt
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── else-variants.expect.txt
│ │ │ ├── else-variants.txt
│ │ │ ├── escaped-mustaches.expect.txt
│ │ │ ├── escaped-mustaches.txt
│ │ │ ├── expression-variants.expect.txt
│ │ │ ├── expression-variants.txt
│ │ │ ├── hashes.expect.txt
│ │ │ ├── hashes.txt
│ │ │ ├── if-else.expect.txt
│ │ │ ├── if-else.txt
│ │ │ ├── literals-in-different-places.expect.txt
│ │ │ ├── literals-in-different-places.txt
│ │ │ ├── literals.expect.txt
│ │ │ ├── literals.txt
│ │ │ ├── partial-call.expect.txt
│ │ │ ├── partial-call.txt
│ │ │ ├── path-expressions.expect.txt
│ │ │ ├── path-expressions.txt
│ │ │ ├── raw-block.expect.txt
│ │ │ ├── raw-block.txt
│ │ │ ├── simple-expression.expect.txt
│ │ │ ├── simple-expression.txt
│ │ │ ├── sub-expressions.expect.txt
│ │ │ ├── sub-expressions.txt
│ │ │ ├── triple-mustache.expect.txt
│ │ │ └── triple-mustache.txt
│ │ ├── haskell/
│ │ │ ├── char.expect.txt
│ │ │ ├── char.txt
│ │ │ ├── infix.expect.txt
│ │ │ ├── infix.txt
│ │ │ ├── inline-comments.expect.txt
│ │ │ ├── inline-comments.txt
│ │ │ ├── nested-comments.expect.txt
│ │ │ ├── nested-comments.txt
│ │ │ ├── numbers.expect.txt
│ │ │ └── numbers.txt
│ │ ├── haxe/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── hsp/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── http/
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── http3.expect.txt
│ │ │ ├── http3.txt
│ │ │ ├── just_headers.expect.txt
│ │ │ ├── just_headers.txt
│ │ │ ├── response.expect.txt
│ │ │ └── response.txt
│ │ ├── hy/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── index.js
│ │ ├── inform7/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── ini/
│ │ │ ├── array.expect.txt
│ │ │ ├── array.txt
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── keys.expect.txt
│ │ │ ├── keys.txt
│ │ │ ├── tables.expect.txt
│ │ │ ├── tables.txt
│ │ │ ├── types.expect.txt
│ │ │ ├── types.txt
│ │ │ ├── variable.expect.txt
│ │ │ └── variable.txt
│ │ ├── irpf90/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── isbl/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── java/
│ │ │ ├── annotations.expect.txt
│ │ │ ├── annotations.txt
│ │ │ ├── bugs.expect.txt
│ │ │ ├── bugs.txt
│ │ │ ├── functions.expect.txt
│ │ │ ├── functions.txt
│ │ │ ├── gh1031.expect.txt
│ │ │ ├── gh1031.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── switch.expect.txt
│ │ │ ├── switch.txt
│ │ │ ├── textblock.expect.txt
│ │ │ ├── textblock.txt
│ │ │ ├── titles.expect.txt
│ │ │ └── titles.txt
│ │ ├── javascript/
│ │ │ ├── arrow-function.expect.txt
│ │ │ ├── arrow-function.txt
│ │ │ ├── block-comments.expect.txt
│ │ │ ├── block-comments.txt
│ │ │ ├── built-in.expect.txt
│ │ │ ├── built-in.txt
│ │ │ ├── class.expect.txt
│ │ │ ├── class.txt
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── conventions.expect.txt
│ │ │ ├── conventions.txt
│ │ │ ├── default-parameters.expect.txt
│ │ │ ├── default-parameters.txt
│ │ │ ├── inline-languages.expect.txt
│ │ │ ├── inline-languages.txt
│ │ │ ├── jsdoc.expect.txt
│ │ │ ├── jsdoc.txt
│ │ │ ├── jsx-fragment.expect.txt
│ │ │ ├── jsx-fragment.txt
│ │ │ ├── jsx.expect.txt
│ │ │ ├── jsx.txt
│ │ │ ├── keyword-as-part-of-method-name.expect.txt
│ │ │ ├── keyword-as-part-of-method-name.txt
│ │ │ ├── keyword_as_identifier.expect.txt
│ │ │ ├── keyword_as_identifier.txt
│ │ │ ├── keywords.expect.txt
│ │ │ ├── keywords.txt
│ │ │ ├── method-call.expect.txt
│ │ │ ├── method-call.txt
│ │ │ ├── modules.expect.txt
│ │ │ ├── modules.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── object-attr.expect.txt
│ │ │ ├── object-attr.txt
│ │ │ ├── regex.expect.txt
│ │ │ ├── regex.txt
│ │ │ ├── seperated-parameters.expect.txt
│ │ │ ├── seperated-parameters.txt
│ │ │ ├── shebang.expect.txt
│ │ │ ├── shebang.txt
│ │ │ ├── template-strings.expect.txt
│ │ │ └── template-strings.txt
│ │ ├── jboss-cli/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── json/
│ │ │ ├── comments.expect.txt
│ │ │ └── comments.txt
│ │ ├── json5/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── julia/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── julia-repl/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── kotlin/
│ │ │ ├── class.expect.txt
│ │ │ ├── class.txt
│ │ │ ├── function.expect.txt
│ │ │ ├── function.txt
│ │ │ ├── nested_comment.expect.txt
│ │ │ ├── nested_comment.txt
│ │ │ ├── string.expect.txt
│ │ │ └── string.txt
│ │ ├── lasso/
│ │ │ ├── delimiters.expect.txt
│ │ │ └── delimiters.txt
│ │ ├── latex/
│ │ │ ├── chars.expect.txt
│ │ │ ├── chars.txt
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── control_sequences.expect.txt
│ │ │ ├── control_sequences.txt
│ │ │ ├── parameters.expect.txt
│ │ │ ├── parameters.txt
│ │ │ ├── verbatim.expect.txt
│ │ │ └── verbatim.txt
│ │ ├── ldif/
│ │ │ ├── ldapmodify.expect.txt
│ │ │ ├── ldapmodify.txt
│ │ │ ├── schema.expect.txt
│ │ │ └── schema.txt
│ │ ├── leaf/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── less/
│ │ │ ├── css_consistency.expect.txt
│ │ │ ├── css_consistency.txt
│ │ │ ├── selectors.expect.txt
│ │ │ └── selectors.txt
│ │ ├── lisp/
│ │ │ ├── mec.expect.txt
│ │ │ └── mec.txt
│ │ ├── livecodeserver/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── livescript/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── llvm/
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── simple.expect.txt
│ │ │ ├── simple.txt
│ │ │ ├── string.expect.txt
│ │ │ └── string.txt
│ │ ├── lsl/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── lua/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── makefile/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── markdown/
│ │ │ ├── bold_italics.expect.txt
│ │ │ ├── bold_italics.txt
│ │ │ ├── code.expect.txt
│ │ │ ├── code.txt
│ │ │ ├── entity.expect.txt
│ │ │ ├── entity.txt
│ │ │ ├── links.expect.txt
│ │ │ ├── links.txt
│ │ │ ├── list.expect.txt
│ │ │ ├── list.txt
│ │ │ ├── sections.expect.txt
│ │ │ └── sections.txt
│ │ ├── mathematica/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── matlab/
│ │ │ ├── block_comment.expect.txt
│ │ │ ├── block_comment.txt
│ │ │ ├── transpose.expect.txt
│ │ │ └── transpose.txt
│ │ ├── maxima/
│ │ │ ├── example.expect.txt
│ │ │ ├── example.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── symbols.expect.txt
│ │ │ └── symbols.txt
│ │ ├── mel/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── mercury/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── mipsasm/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── mizar/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── mojolicious/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── monkey/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── moonscript/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── n1ql/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── nestedtext/
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── lists_of.expect.txt
│ │ │ └── lists_of.txt
│ │ ├── nginx/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── nim/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── nix/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── node-repl/
│ │ │ ├── sample.expect.txt
│ │ │ └── sample.txt
│ │ ├── nsis/
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── variables.expect.txt
│ │ │ └── variables.txt
│ │ ├── objectivec/
│ │ │ ├── preprocessor.expect.txt
│ │ │ ├── preprocessor.txt
│ │ │ ├── string-literals.expect.txt
│ │ │ └── string-literals.txt
│ │ ├── ocaml/
│ │ │ ├── literals.expect.txt
│ │ │ ├── literals.txt
│ │ │ ├── types.expect.txt
│ │ │ └── types.txt
│ │ ├── openscad/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── oxygene/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── parser3/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── perl/
│ │ │ ├── class.expect.txt
│ │ │ ├── class.txt
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── number.expect.txt
│ │ │ ├── number.txt
│ │ │ ├── regex.expect.txt
│ │ │ └── regex.txt
│ │ ├── pf/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── pgsql/
│ │ │ ├── clauses.expect.txt
│ │ │ ├── clauses.txt
│ │ │ ├── clauses2.expect.txt
│ │ │ ├── clauses2.txt
│ │ │ ├── constraints.expect.txt
│ │ │ ├── constraints.txt
│ │ │ ├── dollar_strings.expect.txt
│ │ │ ├── dollar_strings.txt
│ │ │ ├── options.expect.txt
│ │ │ ├── options.txt
│ │ │ ├── plpgsql.expect.txt
│ │ │ ├── plpgsql.txt
│ │ │ ├── sql-commands.expect.txt
│ │ │ ├── sql-commands.txt
│ │ │ ├── window-functions.expect.txt
│ │ │ ├── window-functions.txt
│ │ │ ├── xml.expect.txt
│ │ │ └── xml.txt
│ │ ├── php/
│ │ │ ├── attributes.expect.txt
│ │ │ ├── attributes.txt
│ │ │ ├── case.expect.txt
│ │ │ ├── case.txt
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── functions.expect.txt
│ │ │ ├── functions.txt
│ │ │ ├── namespace.expect.txt
│ │ │ ├── namespace.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── php80.expect.txt
│ │ │ ├── php80.txt
│ │ │ ├── strings.expect.txt
│ │ │ ├── strings.txt
│ │ │ ├── titles.expect.txt
│ │ │ └── titles.txt
│ │ ├── php-template/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── plaintext/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── pony/
│ │ │ ├── control-flow.expect.txt
│ │ │ ├── control-flow.txt
│ │ │ ├── creator.expect.txt
│ │ │ ├── creator.txt
│ │ │ ├── iterface-trait.expect.txt
│ │ │ ├── iterface-trait.txt
│ │ │ ├── lambda.expect.txt
│ │ │ ├── lambda.txt
│ │ │ ├── match.expect.txt
│ │ │ ├── match.txt
│ │ │ ├── method.expect.txt
│ │ │ ├── method.txt
│ │ │ ├── number-literals.expect.txt
│ │ │ ├── number-literals.txt
│ │ │ ├── objects.expect.txt
│ │ │ ├── objects.txt
│ │ │ ├── prime.expect.txt
│ │ │ ├── prime.txt
│ │ │ ├── triple-quote.expect.txt
│ │ │ └── triple-quote.txt
│ │ ├── powershell/
│ │ │ ├── apos-herestring.expect.txt
│ │ │ ├── apos-herestring.txt
│ │ │ ├── classes.expect.txt
│ │ │ ├── classes.txt
│ │ │ ├── flags.expect.txt
│ │ │ ├── flags.txt
│ │ │ ├── misc.expect.txt
│ │ │ ├── misc.txt
│ │ │ ├── quote-herestring.expect.txt
│ │ │ └── quote-herestring.txt
│ │ ├── processing/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── profile/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── prolog/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── properties/
│ │ │ ├── syntax.expect.txt
│ │ │ └── syntax.txt
│ │ ├── protobuf/
│ │ │ ├── message-message.expect.txt
│ │ │ ├── message-message.txt
│ │ │ ├── rpc.expect.txt
│ │ │ └── rpc.txt
│ │ ├── puppet/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── purebasic/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── python/
│ │ │ ├── class_self.expect.txt
│ │ │ ├── class_self.txt
│ │ │ ├── decorators.expect.txt
│ │ │ ├── decorators.txt
│ │ │ ├── diacritic_identifiers.expect.txt
│ │ │ ├── diacritic_identifiers.txt
│ │ │ ├── escaped-quotes.expect.txt
│ │ │ ├── escaped-quotes.txt
│ │ │ ├── f-strings.expect.txt
│ │ │ ├── f-strings.txt
│ │ │ ├── false_positives.expect.txt
│ │ │ ├── false_positives.txt
│ │ │ ├── function-header-comments.expect.txt
│ │ │ ├── function-header-comments.txt
│ │ │ ├── function-header.expect.txt
│ │ │ ├── function-header.txt
│ │ │ ├── identifiers.expect.txt
│ │ │ ├── identifiers.txt
│ │ │ ├── keywords.expect.txt
│ │ │ ├── keywords.txt
│ │ │ ├── matrix-multiplication.expect.txt
│ │ │ ├── matrix-multiplication.txt
│ │ │ ├── numbers.expect.txt
│ │ │ └── numbers.txt
│ │ ├── python-repl/
│ │ │ ├── sample.expect.txt
│ │ │ └── sample.txt
│ │ ├── q/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── qml/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── r/
│ │ │ ├── names.expect.txt
│ │ │ ├── names.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── ops.expect.r
│ │ │ ├── ops.r
│ │ │ ├── roxygen.expect.txt
│ │ │ ├── roxygen.txt
│ │ │ ├── strings.expect.txt
│ │ │ └── strings.txt
│ │ ├── reasonml/
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── functions.expect.txt
│ │ │ ├── functions.txt
│ │ │ ├── literals.expect.txt
│ │ │ ├── literals.txt
│ │ │ ├── modules.expect.txt
│ │ │ ├── modules.txt
│ │ │ ├── pattern-matching.expect.txt
│ │ │ ├── pattern-matching.txt
│ │ │ ├── types.expect.txt
│ │ │ └── types.txt
│ │ ├── rib/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── roboconf/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── routeros/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── rsl/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── ruby/
│ │ │ ├── blocks.expect.txt
│ │ │ ├── blocks.txt
│ │ │ ├── gemfile.expect.txt
│ │ │ ├── gemfile.txt
│ │ │ ├── heredoc.expect.txt
│ │ │ ├── heredoc.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── prompt.expect.txt
│ │ │ ├── prompt.txt
│ │ │ ├── regexes.expect.txt
│ │ │ ├── regexes.txt
│ │ │ ├── strings.expect.txt
│ │ │ └── strings.txt
│ │ ├── ruleslanguage/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── rust/
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── invoked-keywords.expect.txt
│ │ │ ├── invoked-keywords.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── sample1.expect.txt
│ │ │ ├── sample1.txt
│ │ │ ├── strings.expect.txt
│ │ │ ├── strings.txt
│ │ │ ├── traits.expect.txt
│ │ │ ├── traits.txt
│ │ │ ├── types.expect.txt
│ │ │ ├── types.txt
│ │ │ ├── variables.expect.txt
│ │ │ └── variables.txt
│ │ ├── sas/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── scala/
│ │ │ ├── case-classes.expect.txt
│ │ │ ├── case-classes.txt
│ │ │ ├── end.expect.txt
│ │ │ ├── end.txt
│ │ │ ├── enum.expect.txt
│ │ │ ├── enum.txt
│ │ │ ├── export.expect.txt
│ │ │ ├── export.txt
│ │ │ ├── extension.expect.txt
│ │ │ ├── extension.txt
│ │ │ ├── for-do.expect.txt
│ │ │ ├── for-do.txt
│ │ │ ├── given.expect.txt
│ │ │ ├── given.txt
│ │ │ ├── if-then-else.expect.txt
│ │ │ ├── if-then-else.txt
│ │ │ ├── inline.expect.txt
│ │ │ ├── inline.txt
│ │ │ ├── quoted-code.expect.txt
│ │ │ ├── quoted-code.txt
│ │ │ ├── strings.expect.txt
│ │ │ ├── strings.txt
│ │ │ ├── symbol.expect.txt
│ │ │ ├── symbol.txt
│ │ │ ├── transparent.expect.txt
│ │ │ ├── transparent.txt
│ │ │ ├── using-directives.expect.txt
│ │ │ ├── using-directives.txt
│ │ │ ├── using.expect.txt
│ │ │ ├── using.txt
│ │ │ ├── while-do.expect.txt
│ │ │ └── while-do.txt
│ │ ├── scheme/
│ │ │ ├── lambda.expect.txt
│ │ │ ├── lambda.txt
│ │ │ ├── quoted.expect.txt
│ │ │ └── quoted.txt
│ │ ├── scilab/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── scss/
│ │ │ ├── css_consistency.expect.txt
│ │ │ ├── css_consistency.txt
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── shell/
│ │ │ ├── command-continuation.expect.txt
│ │ │ ├── command-continuation.txt
│ │ │ ├── plain-prompt.expect.txt
│ │ │ ├── plain-prompt.txt
│ │ │ ├── prompt-with-slash.expect.txt
│ │ │ ├── prompt-with-slash.txt
│ │ │ ├── prompt-with-tilde.expect.txt
│ │ │ ├── prompt-with-tilde.txt
│ │ │ ├── simple.expect.txt
│ │ │ ├── simple.txt
│ │ │ ├── single.expect.txt
│ │ │ └── single.txt
│ │ ├── smali/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── smalltalk/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── sml/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── sqf/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── sql/
│ │ │ ├── combos.expect.txt
│ │ │ ├── combos.txt
│ │ │ ├── functions.expect.txt
│ │ │ ├── functions.txt
│ │ │ ├── join.expect.txt
│ │ │ ├── join.txt
│ │ │ ├── keywords.expect.txt
│ │ │ ├── keywords.txt
│ │ │ ├── numeric-types.expect.txt
│ │ │ ├── numeric-types.txt
│ │ │ ├── set-operator.expect.txt
│ │ │ ├── set-operator.txt
│ │ │ ├── string-types.expect.txt
│ │ │ ├── string-types.txt
│ │ │ ├── types.expect.txt
│ │ │ ├── types.txt
│ │ │ ├── values-statement.expect.txt
│ │ │ └── values-statement.txt
│ │ ├── stan/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── stata/
│ │ │ ├── built_ins.expect.txt
│ │ │ └── built_ins.txt
│ │ ├── step21/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── stylus/
│ │ │ ├── css_consistency.expect.txt
│ │ │ ├── css_consistency.txt
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── subunit/
│ │ │ ├── subunit-errorline.expect.txt
│ │ │ ├── subunit-errorline.txt
│ │ │ ├── subunit-failureline.expect.txt
│ │ │ ├── subunit-failureline.txt
│ │ │ ├── subunit-progressline.expect.txt
│ │ │ ├── subunit-progressline.txt
│ │ │ ├── subunit-skipline.expect.txt
│ │ │ ├── subunit-skipline.txt
│ │ │ ├── subunit-successline.expect.txt
│ │ │ ├── subunit-successline.txt
│ │ │ ├── subunit-tagline.expect.txt
│ │ │ ├── subunit-tagline.txt
│ │ │ ├── subunit-testline.expect.txt
│ │ │ ├── subunit-testline.txt
│ │ │ ├── subunit-timeline.expect.txt
│ │ │ ├── subunit-timeline.txt
│ │ │ ├── subunit-uxsuccessline.expect.txt
│ │ │ ├── subunit-uxsuccessline.txt
│ │ │ ├── subunit-xfailline.expect.txt
│ │ │ └── subunit-xfailline.txt
│ │ ├── swift/
│ │ │ ├── attributes.expect.txt
│ │ │ ├── attributes.txt
│ │ │ ├── availability.expect.txt
│ │ │ ├── availability.txt
│ │ │ ├── class-func-var.expect.txt
│ │ │ ├── class-func-var.txt
│ │ │ ├── distributed-actor-runtime.expect.txt
│ │ │ ├── distributed-actor-runtime.txt
│ │ │ ├── functions.expect.txt
│ │ │ ├── functions.txt
│ │ │ ├── identifiers.expect.txt
│ │ │ ├── identifiers.txt
│ │ │ ├── keywords.expect.txt
│ │ │ ├── keywords.txt
│ │ │ ├── macro.expect.txt
│ │ │ ├── macro.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── operator-declarations.expect.txt
│ │ │ ├── operator-declarations.txt
│ │ │ ├── operators.expect.txt
│ │ │ ├── operators.txt
│ │ │ ├── ownership.expect.txt
│ │ │ ├── ownership.txt
│ │ │ ├── parameterpack.expect.txt
│ │ │ ├── parameterpack.txt
│ │ │ ├── precedencegroup.expect.txt
│ │ │ ├── precedencegroup.txt
│ │ │ ├── regex.expect.txt
│ │ │ ├── regex.txt
│ │ │ ├── strings.expect.txt
│ │ │ ├── strings.txt
│ │ │ ├── swiftui.expect.txt
│ │ │ ├── swiftui.txt
│ │ │ ├── tuples.expect.txt
│ │ │ ├── tuples.txt
│ │ │ ├── type-definition.expect.txt
│ │ │ ├── type-definition.txt
│ │ │ ├── types.expect.txt
│ │ │ └── types.txt
│ │ ├── taggerscript/
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── functions.expect.txt
│ │ │ ├── functions.txt
│ │ │ ├── noop.expect.txt
│ │ │ └── noop.txt
│ │ ├── tap/
│ │ │ ├── basic.expect.txt
│ │ │ ├── basic.txt
│ │ │ ├── without-numbers.expect.txt
│ │ │ ├── without-numbers.txt
│ │ │ ├── yaml-block.expect.txt
│ │ │ └── yaml-block.txt
│ │ ├── tcl/
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── variables.expect.txt
│ │ │ └── variables.txt
│ │ ├── thrift/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── tp/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── twig/
│ │ │ ├── filter_with_underscore.expect.txt
│ │ │ ├── filter_with_underscore.txt
│ │ │ ├── template_tags.expect.txt
│ │ │ └── template_tags.txt
│ │ ├── typescript/
│ │ │ ├── class.expect.txt
│ │ │ ├── class.txt
│ │ │ ├── declares.expect.txt
│ │ │ ├── declares.txt
│ │ │ ├── decorator-factories.expect.txt
│ │ │ ├── decorator-factories.txt
│ │ │ ├── functions.expect.txt
│ │ │ ├── functions.txt
│ │ │ ├── generics.expect.txt
│ │ │ ├── generics.txt
│ │ │ ├── identifiers_that_include_keywords.expect.txt
│ │ │ ├── identifiers_that_include_keywords.txt
│ │ │ ├── inline-languages.expect.txt
│ │ │ ├── inline-languages.txt
│ │ │ ├── jsx.expect.txt
│ │ │ ├── jsx.txt
│ │ │ ├── module-id.expect.txt
│ │ │ ├── module-id.txt
│ │ │ ├── namespace_as_identifier.expect.txt
│ │ │ ├── namespace_as_identifier.txt
│ │ │ ├── nested-templates.expect.txt
│ │ │ ├── nested-templates.txt
│ │ │ ├── numbers-and-dashes.expect.txt
│ │ │ ├── numbers-and-dashes.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── satisfies-and-as.expect.txt
│ │ │ └── satisfies-and-as.txt
│ │ ├── vala/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── vbnet/
│ │ │ ├── comments.expect.txt
│ │ │ ├── comments.txt
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── directives.expect.txt
│ │ │ ├── directives.txt
│ │ │ ├── literals.expect.txt
│ │ │ ├── literals.txt
│ │ │ ├── numbers.expect.txt
│ │ │ └── numbers.txt
│ │ ├── vbscript/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── vbscript-html/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── verilog/
│ │ │ ├── directives.expect.txt
│ │ │ ├── directives.txt
│ │ │ ├── misc.expect.txt
│ │ │ ├── misc.txt
│ │ │ ├── numbers.expect.txt
│ │ │ └── numbers.txt
│ │ ├── vhdl/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── vim/
│ │ │ ├── default.expect.txt
│ │ │ ├── default.txt
│ │ │ ├── strings-comments.expect.txt
│ │ │ └── strings-comments.txt
│ │ ├── wasm/
│ │ │ ├── sample.expect.txt
│ │ │ └── sample.txt
│ │ ├── wren/
│ │ │ ├── attributes.expect.txt
│ │ │ ├── attributes.txt
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── x86asm/
│ │ │ ├── labels-directives.expect.txt
│ │ │ └── labels-directives.txt
│ │ ├── xl/
│ │ │ ├── default.expect.txt
│ │ │ └── default.txt
│ │ ├── xml/
│ │ │ ├── document-type-variations.expect.txt
│ │ │ ├── document-type-variations.txt
│ │ │ ├── namespace.expect.txt
│ │ │ ├── namespace.txt
│ │ │ ├── non-ascii-attribute-names.expect.txt
│ │ │ ├── non-ascii-attribute-names.txt
│ │ │ ├── non-ascii-element-names.expect.txt
│ │ │ ├── non-ascii-element-names.txt
│ │ │ ├── processing.expect.txt
│ │ │ ├── processing.txt
│ │ │ ├── space-attributes.expect.txt
│ │ │ ├── space-attributes.txt
│ │ │ ├── sublanguage_no_relevancy.expect.txt
│ │ │ ├── sublanguage_no_relevancy.txt
│ │ │ ├── unquoted-attributes.expect.txt
│ │ │ └── unquoted-attributes.txt
│ │ ├── xquery/
│ │ │ ├── computed_inbuilt.expect.txt
│ │ │ ├── computed_inbuilt.txt
│ │ │ ├── direct_method.expect.txt
│ │ │ ├── direct_method.txt
│ │ │ ├── function_body.expect.txt
│ │ │ ├── function_body.txt
│ │ │ ├── prolog_declarations.expect.txt
│ │ │ └── prolog_declarations.txt
│ │ ├── yaml/
│ │ │ ├── block.expect.txt
│ │ │ ├── block.txt
│ │ │ ├── inline.expect.txt
│ │ │ ├── inline.txt
│ │ │ ├── keys.expect.txt
│ │ │ ├── keys.txt
│ │ │ ├── numbers.expect.txt
│ │ │ ├── numbers.txt
│ │ │ ├── special_chars.expect.txt
│ │ │ ├── special_chars.txt
│ │ │ ├── string.expect.txt
│ │ │ ├── string.txt
│ │ │ ├── tag.expect.txt
│ │ │ └── tag.txt
│ │ └── zephir/
│ │ ├── default.expect.txt
│ │ └── default.txt
│ ├── mocha.opts
│ ├── parser/
│ │ ├── beginEndScope.js
│ │ ├── compiler-extensions.js
│ │ ├── index.js
│ │ ├── look-ahead-end-matchers.js
│ │ ├── max_keyword_hits.js
│ │ ├── resume-scan.js
│ │ ├── reuse-endsWithParent.js
│ │ └── should-not-destroyData.js
│ ├── regex/
│ │ ├── index.js
│ │ └── lib/
│ │ ├── analysis.js
│ │ └── util.js
│ ├── special/
│ │ ├── buildClassName.js
│ │ ├── endsWithParentVariants.js
│ │ ├── explicitLanguage.js
│ │ ├── index.js
│ │ ├── languageAlias.js
│ │ ├── noHighlight.js
│ │ └── subLanguages.js
│ └── utility.js
├── tools/
│ ├── build.js
│ ├── buildSizeReport.js
│ ├── build_browser.js
│ ├── build_cdn.js
│ ├── build_config.js
│ ├── build_node.js
│ ├── checkAutoDetect.js
│ ├── checkTheme.js
│ ├── css
│ ├── developer.html
│ ├── lib/
│ │ ├── bundling.js
│ │ ├── dependencies.js
│ │ ├── external_language.js
│ │ ├── language.js
│ │ └── makestuff.js
│ ├── perf.js
│ ├── sample_files/
│ │ └── python.txt
│ └── templates/
│ └── DIGESTS.md
├── tsconfig.json
└── types/
└── index.d.ts
SYMBOL INDEX (290 symbols across 43 files)
FILE: src/highlight.js
constant NO_MATCH (line 43) | const NO_MATCH = Symbol("nomatch");
constant MAX_KEYWORD_HITS (line 44) | const MAX_KEYWORD_HITS = 7;
function shouldNotHighlight (line 88) | function shouldNotHighlight(languageName) {
function blockLanguage (line 95) | function blockLanguage(block) {
function highlight (line 137) | function highlight(codeOrLanguageName, optionsOrCode, ignoreIllegals) {
function _highlight (line 187) | function _highlight(languageName, codeToHighlight, ignoreIllegals, conti...
function justTextHighlightResult (line 659) | function justTextHighlightResult(code) {
function highlightAuto (line 685) | function highlightAuto(code, languageSubset) {
function updateClassName (line 731) | function updateClassName(element, currentLang, resultLang) {
function highlightElement (line 743) | function highlightElement(element) {
function configure (line 807) | function configure(userOptions) {
function initHighlightingOnLoad (line 818) | function initHighlightingOnLoad() {
function highlightAll (line 828) | function highlightAll() {
function registerLanguage (line 854) | function registerLanguage(languageName, languageDefinition) {
function unregisterLanguage (line 883) | function unregisterLanguage(languageName) {
function listLanguages (line 895) | function listLanguages() {
function getLanguage (line 903) | function getLanguage(name) {
function registerAliases (line 913) | function registerAliases(aliasList, { languageName }) {
function autoDetection (line 924) | function autoDetection(name) {
function upgradePluginAPI (line 934) | function upgradePluginAPI(plugin) {
function addPlugin (line 955) | function addPlugin(plugin) {
function removePlugin (line 963) | function removePlugin(plugin) {
function fire (line 975) | function fire(event, args) {
function deprecateHighlightBlock (line 988) | function deprecateHighlightBlock(el) {
FILE: src/languages/cos.js
function cos (line 9) | function cos(hljs) {
FILE: src/languages/crystal.js
function recursiveParen (line 52) | function recursiveParen(begin, end) {
FILE: src/languages/gcode.js
function LETTER_BOUNDARY_CALLBACK (line 69) | function LETTER_BOUNDARY_CALLBACK(matchdata, response) {
FILE: src/languages/groovy.js
function variants (line 9) | function variants(variants, obj = {}) {
FILE: src/languages/java.js
function recurRegex (line 21) | function recurRegex(re, substitution, depth) {
FILE: src/languages/javascript.js
function noneOf (line 380) | function noneOf(list) {
FILE: src/languages/lib/css-shared.js
constant HTML_TAGS (line 50) | const HTML_TAGS = [
constant SVG_TAGS (line 130) | const SVG_TAGS = [
constant TAGS (line 174) | const TAGS = [
constant MEDIA_FEATURES (line 182) | const MEDIA_FEATURES = [
constant PSEUDO_CLASSES (line 220) | const PSEUDO_CLASSES = [
constant PSEUDO_ELEMENTS (line 283) | const PSEUDO_ELEMENTS = [
constant ATTRIBUTES (line 300) | const ATTRIBUTES = [
constant PSEUDO_SELECTORS (line 819) | const PSEUDO_SELECTORS = PSEUDO_CLASSES.concat(PSEUDO_ELEMENTS).sort().r...
FILE: src/languages/lib/ecmascript.js
constant IDENT_RE (line 1) | const IDENT_RE = '[A-Za-z$_][0-9A-Za-z$_]*';
constant EXTENDED_NUMBER_RE (line 2) | const EXTENDED_NUMBER_RE = '([-+]?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d...
constant EXTENDED_NUMBER_MODE (line 4) | const EXTENDED_NUMBER_MODE = {
constant KEYWORDS (line 10) | const KEYWORDS = [
constant LITERALS (line 55) | const LITERALS = [
constant TYPES (line 65) | const TYPES = [
constant ERROR_TYPES (line 117) | const ERROR_TYPES = [
constant BUILT_IN_GLOBALS (line 128) | const BUILT_IN_GLOBALS = [
constant BUILT_IN_VARIABLES (line 150) | const BUILT_IN_VARIABLES = [
constant BUILT_INS (line 163) | const BUILT_INS = [].concat(
FILE: src/languages/lib/mathematica.js
constant SYSTEM_SYMBOLS (line 1) | const SYSTEM_SYMBOLS = [
FILE: src/languages/sql.js
function kws_to_regex (line 629) | function kws_to_regex(list) {
function reduceRelevancy (line 646) | function reduceRelevancy(list, {
FILE: src/lib/compile_keywords.js
constant COMMON_KEYWORDS (line 2) | const COMMON_KEYWORDS = [
constant DEFAULT_KEYWORD_SCOPE (line 16) | const DEFAULT_KEYWORD_SCOPE = "keyword";
function compileKeywords (line 24) | function compileKeywords(rawKeywords, caseInsensitive, scopeName = DEFAU...
function scoreForKeyword (line 74) | function scoreForKeyword(keyword, providedScore) {
function commonKeyword (line 88) | function commonKeyword(keyword) {
FILE: src/lib/compiler_extensions.js
function skipIfHasPrecedingDot (line 32) | function skipIfHasPrecedingDot(match, response) {
function scopeClassName (line 43) | function scopeClassName(mode, _parent) {
function beginKeywords (line 55) | function beginKeywords(mode, parent) {
function compileIllegal (line 79) | function compileIllegal(mode, _parent) {
function compileMatch (line 89) | function compileMatch(mode, _parent) {
function compileRelevance (line 101) | function compileRelevance(mode, _parent) {
FILE: src/lib/ext/multi_class.js
function remapScopeNames (line 39) | function remapScopeNames(mode, regexes, { key }) {
function beginMultiClass (line 62) | function beginMultiClass(mode) {
function endMultiClass (line 82) | function endMultiClass(mode) {
function scopeSugar (line 110) | function scopeSugar(mode) {
function MultiClass (line 120) | function MultiClass(mode) {
FILE: src/lib/html_injection_error.js
class HTMLInjectionError (line 1) | class HTMLInjectionError extends Error {
method constructor (line 2) | constructor(reason, html) {
FILE: src/lib/html_renderer.js
constant SPAN_CLOSE (line 15) | const SPAN_CLOSE = '</span>';
class HTMLRenderer (line 50) | class HTMLRenderer {
method constructor (line 57) | constructor(parseTree, options) {
method addText (line 67) | addText(text) {
method openNode (line 75) | openNode(node) {
method closeNode (line 87) | closeNode(node) {
method value (line 96) | value() {
method span (line 106) | span(className) {
FILE: src/lib/mode_compiler.js
function compileLanguage (line 26) | function compileLanguage(language) {
function dependencyOnParent (line 388) | function dependencyOnParent(mode) {
function expandOrCloneMode (line 404) | function expandOrCloneMode(mode) {
FILE: src/lib/modes.js
constant MATCH_NOTHING_RE (line 8) | const MATCH_NOTHING_RE = /\b\B/;
constant IDENT_RE (line 9) | const IDENT_RE = '[a-zA-Z]\\w*';
constant UNDERSCORE_IDENT_RE (line 10) | const UNDERSCORE_IDENT_RE = '[a-zA-Z_]\\w*';
constant NUMBER_RE (line 11) | const NUMBER_RE = '\\b\\d+(\\.\\d+)?';
constant C_NUMBER_RE (line 12) | const C_NUMBER_RE = '(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d...
constant BINARY_NUMBER_RE (line 13) | const BINARY_NUMBER_RE = '\\b(0b[01]+)';
constant RE_STARTERS_RE (line 14) | const RE_STARTERS_RE = '!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/...
constant BACKSLASH_ESCAPE (line 41) | const BACKSLASH_ESCAPE = {
constant APOS_STRING_MODE (line 44) | const APOS_STRING_MODE = {
constant QUOTE_STRING_MODE (line 51) | const QUOTE_STRING_MODE = {
constant PHRASAL_WORDS_MODE (line 58) | const PHRASAL_WORDS_MODE = {
constant C_LINE_COMMENT_MODE (line 134) | const C_LINE_COMMENT_MODE = COMMENT('//', '$');
constant C_BLOCK_COMMENT_MODE (line 135) | const C_BLOCK_COMMENT_MODE = COMMENT('/\\*', '\\*/');
constant HASH_COMMENT_MODE (line 136) | const HASH_COMMENT_MODE = COMMENT('#', '$');
constant NUMBER_MODE (line 137) | const NUMBER_MODE = {
constant C_NUMBER_MODE (line 142) | const C_NUMBER_MODE = {
constant BINARY_NUMBER_MODE (line 147) | const BINARY_NUMBER_MODE = {
constant REGEXP_MODE (line 152) | const REGEXP_MODE = {
constant TITLE_MODE (line 166) | const TITLE_MODE = {
constant UNDERSCORE_TITLE_MODE (line 171) | const UNDERSCORE_TITLE_MODE = {
constant METHOD_GUARD (line 176) | const METHOD_GUARD = {
FILE: src/lib/regex.js
function escape (line 5) | function escape(value) {
function source (line 13) | function source(re) {
function lookahead (line 24) | function lookahead(re) {
function anyNumberOfTimes (line 32) | function anyNumberOfTimes(re) {
function optional (line 40) | function optional(re) {
function concat (line 48) | function concat(...args) {
function stripOptionsFromArgs (line 57) | function stripOptionsFromArgs(args) {
function either (line 77) | function either(...args) {
function countMatchGroups (line 90) | function countMatchGroups(re) {
function startsWith (line 99) | function startsWith(re, lexeme) {
constant BACKREF_RE (line 111) | const BACKREF_RE = /\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;
function _rewriteBackreferences (line 124) | function _rewriteBackreferences(regexps, { joinWith }) {
FILE: src/lib/response.js
class Response (line 5) | class Response {
method constructor (line 9) | constructor(mode) {
method ignoreMatch (line 17) | ignoreMatch() {
FILE: src/lib/token_tree.js
class TokenTree (line 16) | class TokenTree {
method constructor (line 17) | constructor() {
method top (line 23) | get top() {
method root (line 27) | get root() { return this.rootNode; }
method add (line 30) | add(node) {
method openNode (line 35) | openNode(scope) {
method closeNode (line 42) | closeNode() {
method closeAllNodes (line 50) | closeAllNodes() {
method toJSON (line 54) | toJSON() {
method walk (line 62) | walk(builder) {
method _walk (line 73) | static _walk(builder, node) {
method _collapse (line 87) | static _collapse(node) {
class TokenTreeEmitter (line 121) | class TokenTreeEmitter extends TokenTree {
method constructor (line 125) | constructor(options) {
method addText (line 133) | addText(text) {
method startScope (line 140) | startScope(scope) {
method endScope (line 144) | endScope() {
method __addSublanguage (line 152) | __addSublanguage(emitter, name) {
method toHTML (line 160) | toHTML() {
method finalize (line 165) | finalize() {
FILE: src/lib/utils.js
function escapeHTML (line 5) | function escapeHTML(value) {
function inherit (line 22) | function inherit(original, ...objects) {
FILE: test/browser/highlight_block_callbacks.js
class ContentAdder (line 7) | class ContentAdder {
method constructor (line 8) | constructor(params) {
method 'before:highlightElement' (line 12) | 'before:highlightElement'({ el, language}) {
class OldPlugin (line 17) | class OldPlugin {
method 'before:highlightBlock' (line 18) | 'before:highlightBlock'({ block, language }) {}
method 'after:highlightBlock' (line 19) | 'after:highlightBlock'({ block, result, text }) {}
FILE: test/builds/browser_build_as_commonjs.js
constant API (line 3) | const API = [
FILE: test/builds/cdn_build_as_esm.mjs
constant API (line 3) | const API = [
FILE: test/builds/node_build_as_esm.mjs
constant API (line 3) | const API = [
FILE: test/detect/index.js
function testAutoDetection (line 13) | function testAutoDetection(language, { detectPath }) {
FILE: test/markup/index.js
function testLanguage (line 13) | function testLanguage(language, {testDir}) {
FILE: test/regex/index.js
function retrieveRules (line 25) | function retrieveRules(language, { name }) {
function forEachPattern (line 32) | function forEachPattern(list, fn) {
function testLanguage (line 49) | function testLanguage(languageName) {
FILE: test/regex/lib/analysis.js
function isAlwaysZeroWidth (line 7) | function isAlwaysZeroWidth(element) {
function isFirstMatch (line 32) | function isFirstMatch(element) {
function underAStar (line 65) | function underAStar(node) {
function firstOf (line 80) | function firstOf(iter) {
FILE: test/regex/lib/util.js
function matchAny (line 18) | function matchAny(re) {
function regexFor (line 22) | function regexFor(mode, { context, depth }) {
FILE: tools/build.js
constant TARGETS (line 68) | const TARGETS = ["cdn", "browser", "node"];
constant TARGET (line 81) | const TARGET = commander.opts().target.toLowerCase();
function doTarget (line 86) | async function doTarget(target, buildDir) {
function doBuild (line 93) | async function doBuild() {
FILE: tools/buildSizeReport.js
function formatBytes (line 14) | function formatBytes(bytes, decimals = 2) {
function computedFile (line 31) | function computedFile(dir, filePath) {
function minifiedFiles (line 40) | async function minifiedFiles(dir) {
function itemChanges (line 55) | function itemChanges(baseList, newList) {
function reportHeader (line 79) | function reportHeader() {
function reportAddedFilesSection (line 86) | function reportAddedFilesSection(_base, pr, addedFiles) {
function reportRemovedFilesSection (line 103) | function reportRemovedFilesSection(base, _pr, removedFiles) {
function reportChangedFilesSection (line 120) | function reportChangedFilesSection(base, pr, changedFiles) {
function createReport (line 161) | async function createReport() {
FILE: tools/build_browser.js
function buildHeader (line 24) | function buildHeader(args = getDefaultHeader()) {
function sortByKey (line 32) | function sortByKey(array, key) {
function detailedGrammarSizes (line 40) | function detailedGrammarSizes(languages) {
function buildBrowser (line 57) | async function buildBrowser(options) {
function installDemo (line 91) | async function installDemo(languages, { minify }) {
function renderIndex (line 102) | async function renderIndex(languages, minify) {
function installDocs (line 157) | async function installDocs() {
function installDemoStyles (line 165) | function installDemoStyles() {
method resolveId (line 185) | resolveId(source) {
method load (line 191) | load(id) {
function buildCore (line 202) | async function buildCore(name, languages, options) {
FILE: tools/build_cdn.js
function installPackageJSON (line 15) | async function installPackageJSON(options) {
function buildCDN (line 31) | async function buildCDN(options) {
function buildSRIDigests (line 99) | async function buildSRIDigests(shas) {
function installLanguages (line 114) | async function installLanguages(languages, options) {
function installStyles (line 135) | function installStyles() {
function buildDistributable (line 153) | async function buildDistributable(language, options) {
function buildCDNLanguage (line 165) | async function buildCDNLanguage(language, options) {
FILE: tools/build_node.js
function buildESMStub (line 12) | async function buildESMStub(name) {
function buildCJSIndex (line 21) | async function buildCJSIndex(name, languages) {
function buildNodeLanguage (line 37) | async function buildNodeLanguage(language, options) {
constant EXCLUDE (line 68) | const EXCLUDE = ["join"];
function buildESMUtils (line 70) | async function buildESMUtils() {
function buildNodeHighlightJS (line 87) | async function buildNodeHighlightJS(options) {
function dual (line 97) | function dual(file) {
function buildPackageJSON (line 117) | function buildPackageJSON(options) {
function writePackageJSON (line 124) | function writePackageJSON(packageJson) {
function buildLanguages (line 128) | async function buildLanguages(languages, options) {
constant CORE_FILES (line 139) | const CORE_FILES = [
function buildNode (line 150) | async function buildNode(options) {
FILE: tools/checkAutoDetect.js
function testAutoDetection (line 19) | function testAutoDetection(language, index, languages) {
FILE: tools/checkTheme.js
constant CODE (line 10) | const CODE = {
constant OTHER (line 37) | const OTHER = {
constant HIGH_FIDELITY (line 45) | const HIGH_FIDELITY = {
constant CONFIG (line 58) | const CONFIG = {
constant MARKUP (line 72) | const MARKUP = {
constant CSS (line 87) | const CSS = {
constant TEMPLATES (line 103) | const TEMPLATES = {
constant DIFF (line 116) | const DIFF = {
function matching_rules (line 127) | function matching_rules(selector, rules) {
function has_rule (line 138) | function has_rule(selector, rules) {
function skips_rule (line 144) | function skips_rule(selector, rules) {
function scopeToSelector (line 160) | function scopeToSelector(name) {
function check_group (line 164) | function check_group(group, rules) {
class CSSRule (line 192) | class CSSRule {
method constructor (line 193) | constructor(rule, body) {
method background (line 216) | get background() {
method foreground (line 220) | get foreground() {
method hasColor (line 223) | get hasColor() {
method toString (line 227) | toString() {
method contrastRatio (line 231) | contrastRatio() {
function contrast_report (line 238) | function contrast_report(rules) {
function validate (line 266) | function validate(data) {
FILE: tools/lib/bundling.js
function rollupCode (line 4) | async function rollupCode(inputOptions, outputOptions) {
function generate (line 9) | async function generate(inputOptions, outputOptions) {
function rollupWrite (line 15) | async function rollupWrite(inputOptions, outputOptions) {
function sha384 (line 21) | function sha384(contents) {
FILE: tools/lib/external_language.js
constant MODULE_DEFINER (line 6) | const MODULE_DEFINER = /module\.exports\.definer\s*=/;
class LanguagePackage (line 8) | class LanguagePackage {
method constructor (line 9) | constructor(packageDir) {
method trySrcLanguages (line 14) | async trySrcLanguages() {
method markupTestPaths (line 26) | get markupTestPaths() {
method detectTestPaths (line 34) | get detectTestPaths() {
method tryPackageJSON (line 43) | async tryPackageJSON() {
method bundle (line 68) | get bundle() { return this._bundle; }
method detect (line 70) | async detect() {
method valid (line 82) | async valid() {
function getThirdPartyPackages (line 92) | async function getThirdPartyPackages() {
FILE: tools/lib/language.js
constant REQUIRES_REGEX (line 8) | const REQUIRES_REGEX = /\/\*.*?Requires: (.*?)\r?\n/s;
constant CATEGORY_REGEX (line 9) | const CATEGORY_REGEX = /\/\*.*?Category: (.*?)\r?\n/s;
constant LANGUAGE_REGEX (line 10) | const LANGUAGE_REGEX = /\/\*.*?Language: (.*?)\r?\n/s;
class Language (line 14) | class Language {
method constructor (line 15) | constructor(name, path) {
method compile (line 31) | async compile(options) {
method sample (line 36) | get sample() {
method samplePath (line 44) | get samplePath() {
method loadMetadata (line 54) | loadMetadata() {
method fromFile (line 71) | static fromFile(filename) {
function compileLanguage (line 80) | async function compileLanguage(language, options) {
function getLanguages (line 106) | async function getLanguages() {
FILE: tools/lib/makestuff.js
function clean (line 7) | async function clean(directory) {
function install (line 13) | function install(file, dest = file) {
constant DEFAULT_CSS (line 17) | const DEFAULT_CSS = `
function installCleanCSS (line 29) | function installCleanCSS(file, dest, opts = {}) {
function mkdir (line 40) | function mkdir(dirname) {
function renderTemplate (line 44) | function renderTemplate(src, dest, data) {
FILE: types/index.d.ts
type MatchType (line 9) | type MatchType = "begin" | "end" | "illegal"
type EnhancedMatch (line 10) | type EnhancedMatch = RegExpMatchArray & {rule: CompiledMode, type: Match...
type AnnotatedError (line 11) | type AnnotatedError = Error & {mode?: Mode | Language, languageName?: st...
type KeywordData (line 13) | type KeywordData = [string, number];
type KeywordDict (line 14) | type KeywordDict = Record<string, KeywordData>
type HLJSApi (line 20) | type HLJSApi = PublicApi & ModesAPI
type VuePlugin (line 22) | interface VuePlugin {
type RegexEitherOptions (line 27) | type RegexEitherOptions = {
type PublicApi (line 31) | interface PublicApi {
type ModesAPI (line 65) | interface ModesAPI {
type LanguageFn (line 93) | type LanguageFn = (hljs: HLJSApi) => Language
type CompilerExt (line 94) | type CompilerExt = (mode: Mode, parent: Mode | Language | null) => void
type HighlightResult (line 96) | interface HighlightResult {
type AutoHighlightResult (line 110) | interface AutoHighlightResult extends HighlightResult {}
type illegalData (line 112) | interface illegalData {
type BeforeHighlightContext (line 120) | type BeforeHighlightContext = {
type PluginEvent (line 125) | type PluginEvent = keyof HLJSPlugin;
type HLJSPlugin (line 126) | type HLJSPlugin = {
type EmitterConstructor (line 136) | interface EmitterConstructor {
type HighlightOptions (line 140) | interface HighlightOptions {
type HLJSOptions (line 145) | interface HLJSOptions {
type CallbackResponse (line 156) | interface CallbackResponse {
type ModeCallback (line 162) | type ModeCallback = (match: RegExpMatchArray, response: CallbackResponse...
type Language (line 163) | type Language = LanguageDetail & Partial<Mode>
type Mode (line 164) | interface Mode extends ModeCallbacks, ModeDetails {}
type LanguageDetail (line 166) | interface LanguageDetail {
type Emitter (line 184) | interface Emitter {
type HighlightedHTMLElement (line 193) | type HighlightedHTMLElement = HTMLElement & {result?: object, secondBest...
type ModeCallbacks (line 197) | interface ModeCallbacks {
type CompiledLanguage (line 202) | interface CompiledLanguage extends LanguageDetail, CompiledMode {
type CompiledScope (line 208) | type CompiledScope = Record<number, string> & {_emit?: Record<number, bo...
type CompiledMode (line 210) | type CompiledMode = Omit<Mode, 'contains'> &
type ModeDetails (line 231) | interface ModeDetails {
Condensed preview — 1875 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (4,732K chars).
[
{
"path": ".dockerignore",
"chars": 121,
"preview": ".DS_Store\nbuild\ndocs/_build\n__pycache__\n*.swp\nnode_modules\n.project\n\n# editors\n.idea/\n.vscode/\n.Rproj.user\n\n# misc\n/work"
},
{
"path": ".editorconfig",
"chars": 116,
"preview": "[*]\nend_of_line = lf\ninsert_final_newline = true\n\n[*.{js,css}]\ncharset = utf-8\nindent_style = space\nindent_size = 2\n"
},
{
"path": ".eslintrc.js",
"chars": 3033,
"preview": "module.exports = {\n env: {\n browser: true,\n es6: true,\n node: true\n },\n extends: [\n \"eslint:recommended\","
},
{
"path": ".eslintrc.lang.js",
"chars": 298,
"preview": "module.exports = {\n env: {\n browser: true,\n es6: true,\n node: true\n },\n parserOptions: {\n ecmaVersion: 20"
},
{
"path": ".git-blame-ignore-revs",
"chars": 72,
"preview": "# eslint --fix src/languages\nd64f68e8aabc67820eec2459bff9a7a0fcc06b95\n\n\n"
},
{
"path": ".gitattributes",
"chars": 189,
"preview": "# The build script and some tests use `\\n` as markers, so we need to make sure\n# that all javascript files are checked o"
},
{
"path": ".github/ISSUE_TEMPLATE/1_incorrect-syntax-highlighting.md",
"chars": 1670,
"preview": "---\nname: Report code that we highlight wrong\nabout: You have a specific snippet of code that is not highlighted correct"
},
{
"path": ".github/ISSUE_TEMPLATE/bug_report.md",
"chars": 941,
"preview": "---\nname: Report some other bug\nabout: You are seeing other incorrect, unexpected or unexplained behavior.\ntitle: \"\"\nlab"
},
{
"path": ".github/ISSUE_TEMPLATE/config.yml",
"chars": 540,
"preview": "blank_issues_enabled: false\ncontact_links:\n - name: Join our friendly Discord community\n url: https://discord.gg/M24"
},
{
"path": ".github/ISSUE_TEMPLATE/feature_request.md",
"chars": 840,
"preview": "---\nname: Request a new feature (other than a new language)\nabout: You'd like to suggest a potentially helpful new featu"
},
{
"path": ".github/ISSUE_TEMPLATE/z_request_language_repo.md",
"chars": 1624,
"preview": "---\nname: Request a new 3rd party grammar repository\nabout: You'd like to host your repo inside the highlightjs org\ntitl"
},
{
"path": ".github/dependabot.yml",
"chars": 118,
"preview": "version: 2\nupdates:\n - package-ecosystem: \"github-actions\"\n directory: \"/\"\n schedule:\n interval: \"weekly\"\n"
},
{
"path": ".github/pull_request_template.md",
"chars": 355,
"preview": "<!--- Provide a general summary of your changes in the Title above -->\n\n<!-- Please link to a related issue below. -->\n<"
},
{
"path": ".github/workflows/lint.yml",
"chars": 586,
"preview": "# This workflow will do a clean install of node dependencies, build the source code and run tests across different versi"
},
{
"path": ".github/workflows/release.yml",
"chars": 4885,
"preview": "name: Release\n\non:\n push:\n tags:\n - \"*alpha*\"\n - \"*pre*\"\n - \"*beta*\"\n - \"1[0-9]+.[0-9]+.[0-9]+\"\n"
},
{
"path": ".github/workflows/size_report_comment.yml",
"chars": 1844,
"preview": "name: Comment Build Size Report\n\non:\n workflow_run:\n workflows: [\"Create Build Size Report\"]\n types:\n - comp"
},
{
"path": ".github/workflows/size_report_create.yml",
"chars": 1026,
"preview": "name: Create Build Size Report\n\non:\n pull_request:\n\njobs:\n run:\n runs-on: ubuntu-latest\n\n steps:\n - name: C"
},
{
"path": ".gitignore",
"chars": 190,
"preview": ".DS_Store\nbuild\ndocs/_build\n__pycache__\n*.swp\nnode_modules\n.project\nyarn.lock\nextra/\n\n# play stuff\nquick*\ntest*.*\nextra*"
},
{
"path": ".mocharc.json",
"chars": 28,
"preview": "{\n \"require\": \"should\"\n}\n"
},
{
"path": ".readthedocs.yaml",
"chars": 499,
"preview": "# .readthedocs.yaml\n# Read the Docs configuration file\n# See https://docs.readthedocs.io/en/stable/config-file/v2.html f"
},
{
"path": ".tokeignore",
"chars": 49,
"preview": "test/*\nsrc/styles/*\n*.md\n*.json\ntools\ndocs\ntypes\n"
},
{
"path": "CHANGES.md",
"chars": 147268,
"preview": "## Version 11.11.2\n\nThemes:\n\n- added \"vs Dark \" theme [Twineee1][]\n\nNew Grammars:\n\n- added 3rd party Aiken grammar to SU"
},
{
"path": "CONTRIBUTING.md",
"chars": 7596,
"preview": "# Contributing\n\n[](https://discord.gg/M24"
},
{
"path": "CONTRIBUTORS.md",
"chars": 789,
"preview": "# Contributors\n\n\n### Core Team\n\n- Josh Goebel <hello@joshgoebel.com> (maintainer)\n- Vladimir Jimenez <me@allejo.io>\n\n###"
},
{
"path": "Dockerfile",
"chars": 518,
"preview": "# Dockerfile for highlight.js\n#\n# Build image:\n# docker build -t highlight-js .\n#\n# Run container:\n# docker run --rm"
},
{
"path": "LICENSE",
"chars": 1514,
"preview": "BSD 3-Clause License\n\nCopyright (c) 2006, Ivan Sagalaev.\nAll rights reserved.\n\nRedistribution and use in source and bina"
},
{
"path": "MAINTAINERS_GUIDE.md",
"chars": 2134,
"preview": "Maintainer's Guide\n==================\n\n\nCommit Policy\n-------------\n\n* Pull requests from outside contributors require a"
},
{
"path": "README.CDN.md",
"chars": 1715,
"preview": "# Highlight.js CDN Assets\n\n[](https://packagephobia.no"
},
{
"path": "README.md",
"chars": 19634,
"preview": "# Highlight.js\n\n[](https://www.npmjs.com/package/hi"
},
{
"path": "SECURITY.md",
"chars": 1221,
"preview": "# Security Policy\n\nDue to both time and resource constrains the Highlight.js core team fully supports only the current m"
},
{
"path": "SUPPORTED_LANGUAGES.md",
"chars": 24220,
"preview": "# Supported Languages\n\nThe table below shows the full list of languages (and corresponding classes/aliases) supported by"
},
{
"path": "VERSION_10_BREAKING_CHANGES.md",
"chars": 1768,
"preview": "## Version 10 Breaking Changes\n\nIncompatibilities:\n\n- chore(parser): compressed version 9.x language definitions no long"
},
{
"path": "VERSION_10_UPGRADE.md",
"chars": 3322,
"preview": "# Upgrading to Version 10.0\n\nWelcome to version 10.0. This a major release and therefore will contain breaking changes."
},
{
"path": "VERSION_11_UPGRADE.md",
"chars": 8938,
"preview": "# Upgrading to Highlight.js v11.0\n\n- [Overview of Breaking Changes](#overview-of-breaking-changes)\n - [Built-in set of "
},
{
"path": "demo/demo.js",
"chars": 1473,
"preview": "hljs.debugMode();\nhljs.highlightAll();\n\ndocument.querySelectorAll(\".categories li a\").forEach((category) => {\n category"
},
{
"path": "demo/index.html",
"chars": 1710,
"preview": "<!DOCTYPE html>\n<html lang=\"en\">\n<!-- This file is intended to be built using the instructions here: http://highlightjs."
},
{
"path": "demo/readme.md",
"chars": 224,
"preview": "To view this demo in browser, please follow the [build instructions](http://highlightjs.readthedocs.io/en/latest/buildin"
},
{
"path": "demo/style.css",
"chars": 1900,
"preview": "@import url(https://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic);\n\n/* Base styles */\nbody {\n color: #f0f0"
},
{
"path": "docs/Makefile",
"chars": 5584,
"preview": "# Makefile for Sphinx documentation\n#\n\n# You can set these variables from the command line.\nSPHINXOPTS =\nSPHINXBUILD "
},
{
"path": "docs/_static/.gitkeep",
"chars": 0,
"preview": ""
},
{
"path": "docs/_templates/.gitkeep",
"chars": 0,
"preview": ""
},
{
"path": "docs/api.rst",
"chars": 6953,
"preview": "Core API\n========\n\nHighlight.js exports a few functions as methods of the ``hljs`` object.\n\n.. _newerapi:\n\nhighlight\n---"
},
{
"path": "docs/building-testing.rst",
"chars": 5698,
"preview": "Building and Testing\n====================\n\nTo use Highlight.js it is first necessary to build it for the environment\nwhe"
},
{
"path": "docs/conf.py",
"chars": 7897,
"preview": "# -*- coding: utf-8 -*-\n#\n# highlight.js documentation build configuration file, created by\n# sphinx-quickstart on Wed S"
},
{
"path": "docs/css-classes-reference.rst",
"chars": 15452,
"preview": "Scope Reference\n===============\n\n\nStylable Scopes\n----------------\n\nThe general purpose scopes are intended to be used f"
},
{
"path": "docs/index.rst",
"chars": 1307,
"preview": ".. highlight.js documentation master file, created by\n sphinx-quickstart on Wed Sep 12 23:48:27 2012.\n You can adapt"
},
{
"path": "docs/language-contribution.rst",
"chars": 4757,
"preview": "Language contributor checklist\n==============================\n\n1. Know that you are creating a 3rd party grammar\n-------"
},
{
"path": "docs/language-guide.rst",
"chars": 9400,
"preview": ".. highlight:: javascript\n\nLanguage Definition Guide\n=========================\n\nHighlighting overview\n------------------"
},
{
"path": "docs/language-requests.rst",
"chars": 1527,
"preview": "On requesting new languages\n===========================\n\nThis is a general answer to requests for adding new languages t"
},
{
"path": "docs/line-numbers.rst",
"chars": 2118,
"preview": "Line numbers\n============\n\nHighlight.js' notable lack of line numbers support is not an oversight but a\nfeature. Followi"
},
{
"path": "docs/mode-reference.rst",
"chars": 19799,
"preview": ".. highlight:: javascript\n\nMode Reference\n==============\n\n**Data Types**\n\nTypes of attributes values in this reference:\n"
},
{
"path": "docs/plugin-api.rst",
"chars": 3610,
"preview": ".. highlight:: javascript\n\nPlugin API\n==========\n\nHighlight.js supports plugins. You add plugins via the ``addPlugin`` "
},
{
"path": "docs/plugin-recipes.rst",
"chars": 630,
"preview": ".. highlight:: javascript\n\nPlugin Recipes\n==============\n\nBelow is a collection of useful plugin \"recipes\" that you migh"
},
{
"path": "docs/requirements.txt",
"chars": 48,
"preview": "myst-parser == 0.15.0\nsphinx-rtd-theme == 0.5.2\n"
},
{
"path": "docs/theme-guide.rst",
"chars": 2812,
"preview": "Theme Guide\n===========\n\n\nKey principle\n-------------\n\n**Highlight.js themes are language agnostic.** Instead of trying "
},
{
"path": "package.json",
"chars": 2994,
"preview": "{\n \"name\": \"highlight.js\",\n \"description\": \"Syntax highlighting with language autodetection.\",\n \"keywords\": [\n \"hi"
},
{
"path": "src/core.d.ts",
"chars": 55,
"preview": "import hljs from \"highlight.js\";\nexport default hljs;\n\n"
},
{
"path": "src/highlight.js",
"chars": 33684,
"preview": "/*\nSyntax highlighting with language autodetection.\nhttps://highlightjs.org/\n*/\n\n// @ts-ignore\nimport deepFreeze from 'd"
},
{
"path": "src/languages/1c.js",
"chars": 37122,
"preview": "/*\nLanguage: 1C:Enterprise\nAuthor: Stanislav Belov <stbelov@gmail.com>\nDescription: built-in language 1C:Enterprise (v7,"
},
{
"path": "src/languages/abnf.js",
"chars": 1461,
"preview": "/*\nLanguage: Augmented Backus-Naur Form\nAuthor: Alex McKibben <alex@nullscope.net>\nWebsite: https://tools.ietf.org/html/"
},
{
"path": "src/languages/accesslog.js",
"chars": 1952,
"preview": "/*\n Language: Apache Access Log\n Author: Oleg Efimov <efimovov@gmail.com>\n Description: Apache/Nginx Access Logs\n Websit"
},
{
"path": "src/languages/actionscript.js",
"chars": 2840,
"preview": "/*\nLanguage: ActionScript\nAuthor: Alexander Myadzel <myadzel@gmail.com>\nCategory: scripting\nAudit: 2020\n*/\n\n/** @type La"
},
{
"path": "src/languages/ada.js",
"chars": 6708,
"preview": "/*\nLanguage: Ada\nAuthor: Lars Schulna <kartoffelbrei.mit.muskatnuss@gmail.org>\nDescription: Ada is a general-purpose pro"
},
{
"path": "src/languages/angelscript.js",
"chars": 3504,
"preview": "/*\nLanguage: AngelScript\nAuthor: Melissa Geels <melissa@nimble.tools>\nCategory: scripting\nWebsite: https://www.angelcode"
},
{
"path": "src/languages/apache.js",
"chars": 2532,
"preview": "/*\nLanguage: Apache config\nAuthor: Ruslan Keba <rukeba@gmail.com>\nContributors: Ivan Sagalaev <maniac@softwaremaniacs.or"
},
{
"path": "src/languages/applescript.js",
"chars": 4031,
"preview": "/*\nLanguage: AppleScript\nAuthors: Nathan Grigg <nathan@nathanamy.org>, Dr. Drang <drdrang@gmail.com>\nCategory: scripting"
},
{
"path": "src/languages/arcade.js",
"chars": 8600,
"preview": "/*\n Language: ArcGIS Arcade\n Category: scripting\n Website: https://developers.arcgis.com/arcade/\n Description: ArcGIS Ar"
},
{
"path": "src/languages/arduino.js",
"chars": 7736,
"preview": "/*\nLanguage: Arduino\nAuthor: Stefania Mellai <s.mellai@arduino.cc>\nDescription: The Arduino® Language is a superset of C"
},
{
"path": "src/languages/armasm.js",
"chars": 5184,
"preview": "/*\nLanguage: ARM Assembly\nAuthor: Dan Panzarella <alsoelp@gmail.com>\nDescription: ARM Assembly including Thumb and Thumb"
},
{
"path": "src/languages/asciidoc.js",
"chars": 6381,
"preview": "/*\nLanguage: AsciiDoc\nRequires: xml.js\nAuthor: Dan Allen <dan.j.allen@gmail.com>\nWebsite: http://asciidoc.org\nDescriptio"
},
{
"path": "src/languages/aspectj.js",
"chars": 5230,
"preview": "/*\nLanguage: AspectJ\nAuthor: Hakan Ozler <ozler.hakan@gmail.com>\nWebsite: https://www.eclipse.org/aspectj/\nDescription: "
},
{
"path": "src/languages/autohotkey.js",
"chars": 2169,
"preview": "/*\nLanguage: AutoHotkey\nAuthor: Seongwon Lee <dlimpid@gmail.com>\nDescription: AutoHotkey language definition\nCategory: s"
},
{
"path": "src/languages/autoit.js",
"chars": 9621,
"preview": "/*\nLanguage: AutoIt\nAuthor: Manh Tuan <junookyo@gmail.com>\nDescription: AutoIt language definition\nCategory: scripting\n*"
},
{
"path": "src/languages/avrasm.js",
"chars": 2939,
"preview": "/*\nLanguage: AVR Assembly\nAuthor: Vladimir Ermakov <vooon341@gmail.com>\nCategory: assembler\nWebsite: https://www.microch"
},
{
"path": "src/languages/awk.js",
"chars": 1350,
"preview": "/*\nLanguage: Awk\nAuthor: Matthew Daly <matthewbdaly@gmail.com>\nWebsite: https://www.gnu.org/software/gawk/manual/gawk.ht"
},
{
"path": "src/languages/axapta.js",
"chars": 3063,
"preview": "/*\nLanguage: Microsoft X++\nDescription: X++ is a language used in Microsoft Dynamics 365, Dynamics AX, and Axapta.\nAutho"
},
{
"path": "src/languages/bash.js",
"chars": 6504,
"preview": "/*\nLanguage: Bash\nAuthor: vah <vahtenberg@gmail.com>\nContributrors: Benjamin Pannell <contact@sierrasoftworks.com>\nWebsi"
},
{
"path": "src/languages/basic.js",
"chars": 3628,
"preview": "/*\nLanguage: BASIC\nAuthor: Raphaël Assénat <raph@raphnet.net>\nDescription: Based on the BASIC reference from the Tandy 1"
},
{
"path": "src/languages/bnf.js",
"chars": 712,
"preview": "/*\nLanguage: Backus–Naur Form\nWebsite: https://en.wikipedia.org/wiki/Backus–Naur_form\nCategory: syntax\nAuthor: Oleg Efim"
},
{
"path": "src/languages/brainfuck.js",
"chars": 1103,
"preview": "/*\nLanguage: Brainfuck\nAuthor: Evgeny Stepanischev <imbolk@gmail.com>\nWebsite: https://esolangs.org/wiki/Brainfuck\n*/\n\n/"
},
{
"path": "src/languages/c.js",
"chars": 8279,
"preview": "/*\nLanguage: C\nCategory: common, system\nWebsite: https://en.wikipedia.org/wiki/C_(programming_language)\n*/\n\n/** @type La"
},
{
"path": "src/languages/cal.js",
"chars": 2679,
"preview": "/*\nLanguage: C/AL\nAuthor: Kenneth Fuglsang Christensen <kfuglsang@gmail.com>\nDescription: Provides highlighting of Micro"
},
{
"path": "src/languages/capnproto.js",
"chars": 1588,
"preview": "/*\nLanguage: Cap’n Proto\nAuthor: Oleg Efimov <efimovov@gmail.com>\nDescription: Cap’n Proto message definition format\nWeb"
},
{
"path": "src/languages/ceylon.js",
"chars": 2428,
"preview": "/*\nLanguage: Ceylon\nAuthor: Lucas Werkmeister <mail@lucaswerkmeister.de>\nWebsite: https://ceylon-lang.org\nCategory: syst"
},
{
"path": "src/languages/clean.js",
"chars": 1087,
"preview": "/*\nLanguage: Clean\nAuthor: Camil Staps <info@camilstaps.nl>\nCategory: functional\nWebsite: http://clean.cs.ru.nl\n*/\n\n/** "
},
{
"path": "src/languages/clojure-repl.js",
"chars": 472,
"preview": "/*\nLanguage: Clojure REPL\nDescription: Clojure REPL sessions\nAuthor: Ivan Sagalaev <maniac@softwaremaniacs.org>\nRequires"
},
{
"path": "src/languages/clojure.js",
"chars": 6299,
"preview": "/*\nLanguage: Clojure\nDescription: Clojure syntax (based on lisp.js)\nAuthor: mfornos\nWebsite: https://clojure.org\nCategor"
},
{
"path": "src/languages/cmake.js",
"chars": 3300,
"preview": "/*\nLanguage: CMake\nDescription: CMake is an open-source cross-platform system for build automation.\nAuthor: Igor Kalnits"
},
{
"path": "src/languages/coffeescript.js",
"chars": 4838,
"preview": "/*\nLanguage: CoffeeScript\nAuthor: Dmytrii Nagirniak <dnagir@gmail.com>\nContributors: Oleg Efimov <efimovov@gmail.com>, C"
},
{
"path": "src/languages/coq.js",
"chars": 6700,
"preview": "/*\nLanguage: Coq\nAuthor: Stephan Boyer <stephan@stephanboyer.com>\nCategory: functional\nWebsite: https://coq.inria.fr\n*/\n"
},
{
"path": "src/languages/cos.js",
"chars": 5300,
"preview": "/*\nLanguage: Caché Object Script\nAuthor: Nikita Savchenko <zitros.lab@gmail.com>\nCategory: enterprise, scripting\nWebsite"
},
{
"path": "src/languages/cpp.js",
"chars": 12622,
"preview": "/*\nLanguage: C++\nCategory: common, system\nWebsite: https://isocpp.org\n*/\n\n/** @type LanguageFn */\nexport default functio"
},
{
"path": "src/languages/crmsh.js",
"chars": 2496,
"preview": "/*\nLanguage: crmsh\nAuthor: Kristoffer Gronlund <kgronlund@suse.com>\nWebsite: http://crmsh.github.io\nDescription: Syntax "
},
{
"path": "src/languages/crystal.js",
"chars": 7167,
"preview": "/*\nLanguage: Crystal\nAuthor: TSUYUSATO Kitsune <make.just.on@gmail.com>\nWebsite: https://crystal-lang.org\nCategory: syst"
},
{
"path": "src/languages/csharp.js",
"chars": 8544,
"preview": "/*\nLanguage: C#\nAuthor: Jason Diamond <jason@diamond.name>\nContributor: Nicolas LLOBERA <nllobera@gmail.com>, Pieter Van"
},
{
"path": "src/languages/csp.js",
"chars": 1198,
"preview": "/*\nLanguage: CSP\nDescription: Content Security Policy definition highlighting\nAuthor: Taras <oxdef@oxdef.info>\nWebsite: "
},
{
"path": "src/languages/css.js",
"chars": 3860,
"preview": "/*\nLanguage: CSS\nCategory: common, css, web\nWebsite: https://developer.mozilla.org/en-US/docs/Web/CSS\n*/\n\n// @ts-ignore\n"
},
{
"path": "src/languages/d.js",
"chars": 6823,
"preview": "/*\nLanguage: D\nAuthor: Aleksandar Ruzicic <aleksandar@ruzicic.info>\nDescription: D is a language with C-like syntax and "
},
{
"path": "src/languages/dart.js",
"chars": 4692,
"preview": "/*\nLanguage: Dart\nRequires: markdown.js\nAuthor: Maxim Dikun <dikmax@gmail.com>\nDescription: Dart a modern, object-orient"
},
{
"path": "src/languages/delphi.js",
"chars": 4363,
"preview": "/*\nLanguage: Delphi\nWebsite: https://www.embarcadero.com/products/delphi\nCategory: system\n*/\n\n/** @type LanguageFn */\nex"
},
{
"path": "src/languages/diff.js",
"chars": 1389,
"preview": "/*\nLanguage: Diff\nDescription: Unified and context diff\nAuthor: Vasily Polovnyov <vast@whiteants.net>\nWebsite: https://w"
},
{
"path": "src/languages/django.js",
"chars": 2790,
"preview": "/*\nLanguage: Django\nDescription: Django is a high-level Python Web framework that encourages rapid development and clean"
},
{
"path": "src/languages/dns.js",
"chars": 2389,
"preview": "/*\nLanguage: DNS Zone\nAuthor: Tim Schumacher <tim@datenknoten.me>\nCategory: config\nWebsite: https://en.wikipedia.org/wik"
},
{
"path": "src/languages/dockerfile.js",
"chars": 877,
"preview": "/*\nLanguage: Dockerfile\nRequires: bash.js\nAuthor: Alexis Hénaut <alexis@henaut.net>\nDescription: language definition for"
},
{
"path": "src/languages/dos.js",
"chars": 2554,
"preview": "/*\nLanguage: Batch file (DOS)\nAuthor: Alexander Makarov <sam@rmcreative.ru>\nContributors: Anton Kochkov <anton.kochkov@g"
},
{
"path": "src/languages/dsconfig.js",
"chars": 1307,
"preview": "/*\n Language: dsconfig\n Description: dsconfig batch configuration language for LDAP directory servers\n Contributors: Jac"
},
{
"path": "src/languages/dts.js",
"chars": 3053,
"preview": "/*\nLanguage: Device Tree\nDescription: *.dts files used in the Linux kernel\nAuthor: Martin Braun <martin.braun@ettus.com>"
},
{
"path": "src/languages/dust.js",
"chars": 1005,
"preview": "/*\nLanguage: Dust\nRequires: xml.js\nAuthor: Michael Allen <michael.allen@benefitfocus.com>\nDescription: Matcher for dust."
},
{
"path": "src/languages/ebnf.js",
"chars": 990,
"preview": "/*\nLanguage: Extended Backus-Naur Form\nAuthor: Alex McKibben <alex@nullscope.net>\nWebsite: https://en.wikipedia.org/wiki"
},
{
"path": "src/languages/elixir.js",
"chars": 5889,
"preview": "/*\nLanguage: Elixir\nAuthor: Josh Adams <josh@isotope11.com>\nDescription: language definition for Elixir source code file"
},
{
"path": "src/languages/elm.js",
"chars": 2507,
"preview": "/*\nLanguage: Elm\nAuthor: Janis Voigtlaender <janis.voigtlaender@gmail.com>\nWebsite: https://elm-lang.org\nCategory: funct"
},
{
"path": "src/languages/erb.js",
"chars": 649,
"preview": "/*\nLanguage: ERB (Embedded Ruby)\nRequires: xml.js, ruby.js\nAuthor: Lucas Mazza <lucastmazza@gmail.com>\nContributors: Kas"
},
{
"path": "src/languages/erlang-repl.js",
"chars": 1326,
"preview": "/*\nLanguage: Erlang REPL\nAuthor: Sergey Ignatov <sergey@ignatov.spb.su>\nWebsite: https://www.erlang.org\nCategory: functi"
},
{
"path": "src/languages/erlang.js",
"chars": 5194,
"preview": "/*\nLanguage: Erlang\nDescription: Erlang is a general-purpose functional language, with strict evaluation, single assignm"
},
{
"path": "src/languages/excel.js",
"chars": 9437,
"preview": "/*\nLanguage: Excel formulae\nAuthor: Victor Zhou <OiCMudkips@users.noreply.github.com>\nDescription: Excel formulae\nWebsit"
},
{
"path": "src/languages/fix.js",
"chars": 775,
"preview": "/*\nLanguage: FIX\nAuthor: Brent Bradbury <brent@brentium.com>\n*/\n\n/** @type LanguageFn */\nexport default function(hljs) {"
},
{
"path": "src/languages/flix.js",
"chars": 1295,
"preview": "/*\n Language: Flix\n Category: functional\n Author: Magnus Madsen <mmadsen@uwaterloo.ca>\n Website: https://flix.dev/\n */\n\n"
},
{
"path": "src/languages/fortran.js",
"chars": 9310,
"preview": "/*\nLanguage: Fortran\nAuthor: Anthony Scemama <scemama@irsamc.ups-tlse.fr>\nWebsite: https://en.wikipedia.org/wiki/Fortran"
},
{
"path": "src/languages/fsharp.js",
"chars": 13673,
"preview": "/*\nLanguage: F#\nAuthor: Jonas Follesø <jonas@follesoe.no>\nContributors: Troy Kershaw <hello@troykershaw.com>, Henrik Fel"
},
{
"path": "src/languages/gams.js",
"chars": 5214,
"preview": "\n/*\n Language: GAMS\n Author: Stefan Bechert <stefan.bechert@gmx.net>\n Contributors: Oleg Efimov <efimovov@gmail.com>, Mi"
},
{
"path": "src/languages/gauss.js",
"chars": 17222,
"preview": "/*\nLanguage: GAUSS\nAuthor: Matt Evans <matt@aptech.com>\nDescription: GAUSS Mathematical and Statistical language\nWebsite"
},
{
"path": "src/languages/gcode.js",
"chars": 4322,
"preview": "/*\n Language: G-code (ISO 6983)\n Contributors: Adam Joseph Cook <adam.joseph.cook@gmail.com>\n Description: G-code syntax"
},
{
"path": "src/languages/gherkin.js",
"chars": 1167,
"preview": "/*\n Language: Gherkin\n Author: Sam Pikesley (@pikesley) <sam.pikesley@theodi.org>\n Description: Gherkin is the format fo"
},
{
"path": "src/languages/glsl.js",
"chars": 9907,
"preview": "/*\nLanguage: GLSL\nDescription: OpenGL Shading Language\nAuthor: Sergey Tikhomirov <sergey@tikhomirov.io>\nWebsite: https:/"
},
{
"path": "src/languages/gml.js",
"chars": 77790,
"preview": "/*\nLanguage: GML\nDescription: Game Maker Language for GameMaker (rev. 2023.1)\nWebsite: https://manual.yoyogames.com/\nCat"
},
{
"path": "src/languages/go.js",
"chars": 3180,
"preview": "/*\nLanguage: Go\nAuthor: Stephan Kountso aka StepLg <steplg@gmail.com>\nContributors: Evgeny Stepanischev <imbolk@gmail.co"
},
{
"path": "src/languages/golo.js",
"chars": 1206,
"preview": "/*\nLanguage: Golo\nAuthor: Philippe Charriere <ph.charriere@gmail.com>\nDescription: a lightweight dynamic language for th"
},
{
"path": "src/languages/gradle.js",
"chars": 2988,
"preview": "/*\nLanguage: Gradle\nDescription: Gradle is an open-source build automation tool focused on flexibility and performance.\n"
},
{
"path": "src/languages/graphql.js",
"chars": 1461,
"preview": "/*\n Language: GraphQL\n Author: John Foster (GH jf990), and others\n Description: GraphQL is a query language for APIs\n Ca"
},
{
"path": "src/languages/groovy.js",
"chars": 3541,
"preview": "/*\n Language: Groovy\n Author: Guillaume Laforge <glaforge@gmail.com>\n Description: Groovy programming language implement"
},
{
"path": "src/languages/haml.js",
"chars": 2682,
"preview": "/*\nLanguage: HAML\nRequires: ruby.js\nAuthor: Dan Allen <dan.j.allen@gmail.com>\nWebsite: http://haml.info\nCategory: templa"
},
{
"path": "src/languages/handlebars.js",
"chars": 6432,
"preview": "/*\nLanguage: Handlebars\nRequires: xml.js\nAuthor: Robin Ward <robin.ward@gmail.com>\nDescription: Matcher for Handlebars a"
},
{
"path": "src/languages/haskell.js",
"chars": 5642,
"preview": "/*\nLanguage: Haskell\nAuthor: Jeremy Hull <sourdrums@gmail.com>\nContributors: Zena Treep <zena.treep@gmail.com>\nWebsite: "
},
{
"path": "src/languages/haxe.js",
"chars": 4466,
"preview": "/*\nLanguage: Haxe\nDescription: Haxe is an open source toolkit based on a modern, high level, strictly typed programming "
},
{
"path": "src/languages/hsp.js",
"chars": 3940,
"preview": "/*\nLanguage: HSP\nAuthor: prince <MC.prince.0203@gmail.com>\nWebsite: https://en.wikipedia.org/wiki/Hot_Soup_Processor\nCat"
},
{
"path": "src/languages/http.js",
"chars": 2068,
"preview": "/*\nLanguage: HTTP\nDescription: HTTP request and response headers with automatic body highlighting\nAuthor: Ivan Sagalaev "
},
{
"path": "src/languages/hy.js",
"chars": 4421,
"preview": "/*\nLanguage: Hy\nDescription: Hy is a wonderful dialect of Lisp that’s embedded in Python.\nAuthor: Sergey Sobko <s.sobko@"
},
{
"path": "src/languages/inform7.js",
"chars": 1633,
"preview": "/*\nLanguage: Inform 7\nAuthor: Bruno Dias <bruno.r.dias@gmail.com>\nDescription: Language definition for Inform 7, a DSL f"
},
{
"path": "src/languages/ini.js",
"chars": 2335,
"preview": "/*\nLanguage: TOML, also INI\nDescription: TOML aims to be a minimal configuration file format that's easy to read due to "
},
{
"path": "src/languages/irpf90.js",
"chars": 6109,
"preview": "/*\nLanguage: IRPF90\nAuthor: Anthony Scemama <scemama@irsamc.ups-tlse.fr>\nDescription: IRPF90 is an open-source Fortran c"
},
{
"path": "src/languages/isbl.js",
"chars": 104962,
"preview": "/*\nLanguage: ISBL\nAuthor: Dmitriy Tarasov <dimatar@gmail.com>\nDescription: built-in language DIRECTUM\nCategory: enterpri"
},
{
"path": "src/languages/java.js",
"chars": 5147,
"preview": "/*\nLanguage: Java\nAuthor: Vsevolod Solovyov <vsevolod.solovyov@gmail.com>\nCategory: common, enterprise\nWebsite: https://"
},
{
"path": "src/languages/javascript.js",
"chars": 15524,
"preview": "/*\nLanguage: JavaScript\nDescription: JavaScript (JS) is a lightweight, interpreted, or just-in-time compiled programming"
},
{
"path": "src/languages/jboss-cli.js",
"chars": 1512,
"preview": "/*\n Language: JBoss CLI\n Author: Raphaël Parrëe <rparree@edc4it.com>\n Description: language definition jboss cli\n Websit"
},
{
"path": "src/languages/json.js",
"chars": 1421,
"preview": "/*\nLanguage: JSON\nDescription: JSON (JavaScript Object Notation) is a lightweight data-interchange format.\nWebsites: htt"
},
{
"path": "src/languages/julia-repl.js",
"chars": 1767,
"preview": "/*\nLanguage: Julia REPL\nDescription: Julia REPL sessions\nAuthor: Morten Piibeleht <morten.piibeleht@gmail.com>\nWebsite: "
},
{
"path": "src/languages/julia.js",
"chars": 9114,
"preview": "/*\nLanguage: Julia\nDescription: Julia is a high-level, high-performance, dynamic programming language.\nAuthor: Kenta Sat"
},
{
"path": "src/languages/kotlin.js",
"chars": 6366,
"preview": "/*\n Language: Kotlin\n Description: Kotlin is an OSS statically typed programming language that targets the JVM, Android,"
},
{
"path": "src/languages/lasso.js",
"chars": 5148,
"preview": "/*\nLanguage: Lasso\nAuthor: Eric Knibbe <eric@lassosoft.com>\nDescription: Lasso is a language and server platform for dat"
},
{
"path": "src/languages/latex.js",
"chars": 7797,
"preview": "/*\nLanguage: LaTeX\nAuthor: Benedikt Wilde <bwilde@posteo.de>\nWebsite: https://www.latex-project.org\nCategory: markup\n*/\n"
},
{
"path": "src/languages/ldif.js",
"chars": 553,
"preview": "/*\nLanguage: LDIF\nContributors: Jacob Childress <jacobc@gmail.com>\nCategory: enterprise, config\nWebsite: https://en.wiki"
},
{
"path": "src/languages/leaf.js",
"chars": 1791,
"preview": "/*\nLanguage: Leaf\nDescription: A Swift-based templating language created for the Vapor project.\nWebsite: https://docs.va"
},
{
"path": "src/languages/less.js",
"chars": 6383,
"preview": "/*\nLanguage: Less\nDescription: It's CSS, with just a little more.\nAuthor: Max Mikhailov <seven.phases.max@gmail.com>\nW"
},
{
"path": "src/languages/lib/css-shared.js",
"chars": 15453,
"preview": "export const MODES = (hljs) => {\n return {\n IMPORTANT: {\n scope: 'meta',\n begin: '!important'\n },\n B"
},
{
"path": "src/languages/lib/ecmascript.js",
"chars": 2671,
"preview": "export const IDENT_RE = '[A-Za-z$_][0-9A-Za-z$_]*';\nexport const EXTENDED_NUMBER_RE = '([-+]?)(\\\\b0[xX][a-fA-F0-9]+|(\\\\b"
},
{
"path": "src/languages/lib/java.js",
"chars": 1123,
"preview": "\n// https://docs.oracle.com/javase/specs/jls/se15/html/jls-3.html#jls-3.10\nvar decimalDigits = '[0-9](_*[0-9])*';\nvar fr"
},
{
"path": "src/languages/lib/kws_swift.js",
"chars": 7486,
"preview": "import {\n concat,\n either\n} from '../../lib/regex.js';\n\nexport const keywordWrapper = keyword => concat(\n /\\b/,\n key"
},
{
"path": "src/languages/lib/mathematica.js",
"chars": 144789,
"preview": "export const SYSTEM_SYMBOLS = [\n \"AASTriangle\",\n \"AbelianGroup\",\n \"Abort\",\n \"AbortKernels\",\n \"AbortProtect\",\n \"Abo"
},
{
"path": "src/languages/lisp.js",
"chars": 2592,
"preview": "/*\nLanguage: Lisp\nDescription: Generic lisp syntax\nAuthor: Vasily Polovnyov <vast@whiteants.net>\nCategory: lisp\n*/\n\nexpo"
},
{
"path": "src/languages/livecodeserver.js",
"chars": 10261,
"preview": "/*\nLanguage: LiveCode\nAuthor: Ralf Bitter <rabit@revigniter.com>\nDescription: Language definition for LiveCode server ac"
},
{
"path": "src/languages/livescript.js",
"chars": 5185,
"preview": "/*\nLanguage: LiveScript\nAuthor: Taneli Vatanen <taneli.vatanen@gmail.com>\nContributors: Jen Evers-Corvina <jen@sevvie.ne"
},
{
"path": "src/languages/llvm.js",
"chars": 4555,
"preview": "/*\nLanguage: LLVM IR\nAuthor: Michael Rodler <contact@f0rki.at>\nDescription: language used as intermediate representation"
},
{
"path": "src/languages/lsl.js",
"chars": 12720,
"preview": "/*\nLanguage: LSL (Linden Scripting Language)\nDescription: The Linden Scripting Language is used in Second Life by Linden"
},
{
"path": "src/languages/lua.js",
"chars": 3086,
"preview": "/*\nLanguage: Lua\nDescription: Lua is a powerful, efficient, lightweight, embeddable scripting language.\nAuthor: Andrew F"
},
{
"path": "src/languages/makefile.js",
"chars": 2175,
"preview": "/*\nLanguage: Makefile\nAuthor: Ivan Sagalaev <maniac@softwaremaniacs.org>\nContributors: Joël Porquet <joel@porquet.org>\nW"
},
{
"path": "src/languages/markdown.js",
"chars": 5226,
"preview": "/*\nLanguage: Markdown\nRequires: xml.js\nAuthor: John Crepezzi <john.crepezzi@gmail.com>\nWebsite: https://daringfireball.n"
},
{
"path": "src/languages/mathematica.js",
"chars": 3870,
"preview": "/*\nLanguage: Wolfram Language\nDescription: The Wolfram Language is the programming language used in Wolfram Mathematica,"
},
{
"path": "src/languages/matlab.js",
"chars": 3632,
"preview": "/*\nLanguage: Matlab\nAuthor: Denis Bardadym <bardadymchik@gmail.com>\nContributors: Eugene Nizhibitsky <nizhibitsky@ya.ru>"
},
{
"path": "src/languages/maxima.js",
"chars": 32815,
"preview": "/*\nLanguage: Maxima\nAuthor: Robert Dodier <robert.dodier@gmail.com>\nWebsite: http://maxima.sourceforge.net\nCategory: sci"
},
{
"path": "src/languages/mel.js",
"chars": 19098,
"preview": "/*\nLanguage: MEL\nDescription: Maya Embedded Language\nAuthor: Shuen-Huei Guan <drake.guan@gmail.com>\nWebsite: http://www."
},
{
"path": "src/languages/mercury.js",
"chars": 3342,
"preview": "/*\nLanguage: Mercury\nAuthor: mucaho <mkucko@gmail.com>\nDescription: Mercury is a logic/functional programming language w"
},
{
"path": "src/languages/mipsasm.js",
"chars": 4315,
"preview": "/*\nLanguage: MIPS Assembly\nAuthor: Nebuleon Fumika <nebuleon.fumika@gmail.com>\nDescription: MIPS Assembly (up to MIPS32R"
},
{
"path": "src/languages/mizar.js",
"chars": 1059,
"preview": "/*\nLanguage: Mizar\nDescription: The Mizar Language is a formal language derived from the mathematical vernacular.\nAuthor"
},
{
"path": "src/languages/mojolicious.js",
"chars": 705,
"preview": "/*\nLanguage: Mojolicious\nRequires: xml.js, perl.js\nAuthor: Dotan Dimet <dotan@corky.net>\nDescription: Mojolicious .ep (E"
},
{
"path": "src/languages/monkey.js",
"chars": 2984,
"preview": "/*\nLanguage: Monkey\nDescription: Monkey2 is an easy to use, cross platform, games oriented programming language from Bli"
},
{
"path": "src/languages/moonscript.js",
"chars": 3579,
"preview": "/*\nLanguage: MoonScript\nAuthor: Billy Quith <chinbillybilbo@gmail.com>\nDescription: MoonScript is a programming language"
},
{
"path": "src/languages/n1ql.js",
"chars": 6171,
"preview": "/*\n Language: N1QL\n Author: Andres Täht <andres.taht@gmail.com>\n Contributors: Rene Saarsoo <nene@triin.net>\n Descriptio"
},
{
"path": "src/languages/nestedtext.js",
"chars": 1436,
"preview": "/*\nLanguage: NestedText\nDescription: NestedText is a file format for holding data that is to be entered, edited, or view"
},
{
"path": "src/languages/nginx.js",
"chars": 3122,
"preview": "/*\nLanguage: Nginx config\nAuthor: Peter Leonov <gojpeg@yandex.ru>\nContributors: Ivan Sagalaev <maniac@softwaremaniacs.or"
},
{
"path": "src/languages/nim.js",
"chars": 2959,
"preview": "/*\nLanguage: Nim\nDescription: Nim is a statically typed compiled systems programming language.\nWebsite: https://nim-lang"
},
{
"path": "src/languages/nix.js",
"chars": 6925,
"preview": "/*\nLanguage: Nix\nAuthor: Domen Kožar <domen@dev.si>\nDescription: Nix functional language\nWebsite: http://nixos.org/nix\nC"
},
{
"path": "src/languages/node-repl.js",
"chars": 652,
"preview": "/*\nLanguage: Node REPL\nRequires: javascript.js\nAuthor: Marat Nagayev <nagaevmt@yandex.ru>\nCategory: scripting\n*/\n\n/** @t"
},
{
"path": "src/languages/nsis.js",
"chars": 10043,
"preview": "/*\nLanguage: NSIS\nDescription: Nullsoft Scriptable Install System\nAuthor: Jan T. Sott <jan.sott@gmail.com>\nWebsite: http"
},
{
"path": "src/languages/objectivec.js",
"chars": 4896,
"preview": "/*\nLanguage: Objective-C\nAuthor: Valerii Hiora <valerii.hiora@gmail.com>\nContributors: Angel G. Olloqui <angelgarcia.mai"
},
{
"path": "src/languages/ocaml.js",
"chars": 2506,
"preview": "/*\nLanguage: OCaml\nAuthor: Mehdi Dogguy <mehdi@dogguy.org>\nContributors: Nicolas Braud-Santoni <nicolas.braud-santoni@en"
},
{
"path": "src/languages/openscad.js",
"chars": 2061,
"preview": "/*\nLanguage: OpenSCAD\nAuthor: Dan Panzarella <alsoelp@gmail.com>\nDescription: OpenSCAD is a language for the 3D CAD mode"
},
{
"path": "src/languages/oxygene.js",
"chars": 2901,
"preview": "/*\nLanguage: Oxygene\nAuthor: Carlo Kok <ck@remobjects.com>\nDescription: Oxygene is built on the foundation of Object Pas"
},
{
"path": "src/languages/parser3.js",
"chars": 1044,
"preview": "/*\nLanguage: Parser3\nRequires: xml.js\nAuthor: Oleg Volchkov <oleg@volchkov.net>\nWebsite: https://www.parser.ru/en/\nCateg"
},
{
"path": "src/languages/perl.js",
"chars": 9769,
"preview": "/*\nLanguage: Perl\nAuthor: Peter Leonov <gojpeg@yandex.ru>\nWebsite: https://www.perl.org\nCategory: common\n*/\n\n/** @type L"
},
{
"path": "src/languages/pf.js",
"chars": 2111,
"preview": "/*\nLanguage: Packet Filter config\nDescription: pf.conf — packet filter configuration file (OpenBSD)\nAuthor: Peter Piwowa"
},
{
"path": "src/languages/pgsql.js",
"chars": 28804,
"preview": "/*\nLanguage: PostgreSQL and PL/pgSQL\nAuthor: Egor Rogov (e.rogov@postgrespro.ru)\nWebsite: https://www.postgresql.org/doc"
},
{
"path": "src/languages/php-template.js",
"chars": 1147,
"preview": "/*\nLanguage: PHP Template\nRequires: xml.js, php.js\nAuthor: Josh Goebel <hello@joshgoebel.com>\nWebsite: https://www.php.n"
},
{
"path": "src/languages/php.js",
"chars": 14606,
"preview": "/*\nLanguage: PHP\nAuthor: Victor Karamzin <Victor.Karamzin@enterra-inc.com>\nContributors: Evgeny Stepanischev <imbolk@gma"
},
{
"path": "src/languages/plaintext.js",
"chars": 289,
"preview": "/*\nLanguage: Plain text\nAuthor: Egor Rogov (e.rogov@postgrespro.ru)\nDescription: Plain text without any highlighting.\nCa"
},
{
"path": "src/languages/pony.js",
"chars": 2109,
"preview": "/*\nLanguage: Pony\nAuthor: Joe Eli McIlvain <joe.eli.mac@gmail.com>\nDescription: Pony is an open-source, object-oriented,"
},
{
"path": "src/languages/powershell.js",
"chars": 8644,
"preview": "/*\nLanguage: PowerShell\nDescription: PowerShell is a task-based command-line shell and scripting language built on .NET."
},
{
"path": "src/languages/processing.js",
"chars": 7068,
"preview": "/*\nLanguage: Processing\nDescription: Processing is a flexible software sketchbook and a language for learning how to cod"
},
{
"path": "src/languages/profile.js",
"chars": 869,
"preview": "/*\nLanguage: Python profiler\nDescription: Python profiler results\nAuthor: Brian Beck <exogen@gmail.com>\n*/\n\nexport defau"
},
{
"path": "src/languages/prolog.js",
"chars": 1603,
"preview": "/*\nLanguage: Prolog\nDescription: Prolog is a general purpose logic programming language associated with artificial intel"
},
{
"path": "src/languages/properties.js",
"chars": 1590,
"preview": "/*\nLanguage: .properties\nContributors: Valentin Aitken <valentin@nalisbg.com>, Egor Rogov <e.rogov@postgrespro.ru>\nWebsi"
}
]
// ... and 1675 more files (download for full content)
About this extraction
This page contains the full source code of the highlightjs/highlight.js GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 1875 files (4.2 MB), approximately 1.2M tokens, and a symbol index with 290 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.