Commit Graph
31 Commits
Author SHA1 Message Date
Alec Thomas 2cbcf7b18b chore: upgrade golangci-lint 2026-05-12 16:48:00 +10:00
JakobDev 83b5491e4d Import Luau lexer (#1209)
This imports `pygments.lexers.scripting.LuauLexer` from Pygments.

Some notes:
- The generated XML file is not 100% valid as as some elements have 2
`state` attributes, but it does work
- I needed to tweak the import script to correctly convert the RegEx
- I needed to add `OperatorReserved` as a `TokenType`
- `.luaurc` is added as a filename to the JSON Lexer, as [it's used by
Luau](https://rfcs.luau.org/config-luaurc.html)

Implements #1062
2026-03-11 00:40:25 -07:00
Daniel Fichtinger 42c2aa1c7e Add helper script to generate supported langs markdown table (#1170)
**TL;DR: added a python script that generates a "supported languages"
markdown table, making it easier to keep the table in the readme up to
date**

---

This PR adds a Python script `_tools/format_supported_langs.py` which
accepts the output of `chroma --list` over stdin and outputs a Markdown
table which can be added to the Supported Languages section of the
README. Here's how I called the script:

```sh
env -C cmd/chroma go run . | uv run _tools/format_supported_langs.py
```

I chose not to try automating edits to the README, and leave it up to
the invoker to replace the table in the readme with this script's
output. I also updated the table in the README because it's missing a
few languages.

Hopefully this can help with the maintenance burden.
2025-12-09 02:28:39 +11:00
Florian Freitag a5dc08622e Add argparse to pygemnts2chroma_xml.py script (#1140)
I also adapted the README to use `uv` since this removes an install step
(uv resolves and installs dependencies on `uv run`).

We could also debate if we should switch from `KotlinLexer` as an
example to some other lexer as there seems to be a bug upstream in
pygments where `KotlinLexer.get_tokendefs()` returns a string that is
not valid unicode. You can read more about the bug in [this
issue](https://github.com/pygments/pygments/issues/2964).

With argparse the error messages are a lot nicer and the script can
better explain itself.

```bash
uv run pygments2chroma_xml.py --help                         
usage: pygments2chroma_xml.py [-h] lexer_class

Converts pygments RegexLexer classes to chroma xml grammar definitions.

positional arguments:
  lexer_class  The class name of the pygments lexer, like: 'pygments.lexers.jvm.KotlinLexer'.

options:
  -h, --help   show this help message and exit
  ```
2025-09-12 13:34:57 +10:00
Alec Thomas 484750a96f chore: add uv 2025-06-21 10:22:17 +10:00
oliverpool e06b52822a pygments2chroma: escape regex.words (#982)
Discovered while building on top of
https://github.com/alecthomas/chroma/issues/877#issuecomment-1858982870
(by @miliog)

The pygments "regex.words" should be escaped, since they may contain
special regex chars (like `^` or `+`).
2024-07-10 19:38:21 +10:00
Jonathan 038fab58f6 Add shebang (#864) 2023-11-01 07:18:04 +11:00
Alec Thomas 40542a6255 refactor: migrate a bunch more Go-based lexers to XML
Also rename some existing XML lexers to their canonical XML name.
2023-09-09 12:29:23 +10:00
Alec Thomas 45e3bfb671 Convert bashsessions lexer to XML 2022-12-12 07:41:42 +11:00
Forest0923 739028eb93 Add pygments2chroma_xml.py
This script automatically generates a lexer in xml format from Pygments.
2022-10-06 11:13:43 +11:00
Sean Berry 44d1d23ddb fix: revert line change from pygments converter
Link to the breaking change: https://github.com/alecthomas/chroma/commit/59896e35\#diff-636cb338885284f1ed8524116f49b2bffcae81cfce89f55719019c993007d209R194
2022-04-22 10:05:11 +10:00
Alec Thomas 59896e357d Flag groups for "chroma", making it a bit clearer for users. 2022-01-27 22:54:59 +11:00
Alec Thomas cc2dd5b8ad Version 2 of Chroma
This cleans up the API in general, removing a bunch of deprecated stuff,
cleaning up circular imports, etc.

But the biggest change is switching to an optional XML format for the
regex lexer.

Having lexers defined only in Go is not ideal for a couple of reasons.
Firstly, it impedes a significant portion of contributors who use Chroma
in Hugo, but don't know Go. Secondly, it bloats the binary size of any
project that imports Chroma.

Why XML? YAML is an abomination and JSON is not human editable. XML
also compresses very well (eg. Go template lexer XML compresses from
3239 bytes to 718).

Why a new syntax format? All major existing formats rely on the
Oniguruma regex engine, which is extremely complex and for which there
is no Go port.

Why not earlier? Prior to the existence of fs.FS this was not a viable
option.

Benchmarks:

    $ hyperfine --warmup 3 \
        './chroma.master --version' \
        './chroma.xml-pre-opt --version' \
        './chroma.xml --version'
    Benchmark 1: ./chroma.master --version
      Time (mean ± σ):       5.3 ms ±   0.5 ms    [User: 3.6 ms, System: 1.4 ms]
      Range (min … max):     4.2 ms …   6.6 ms    233 runs

    Benchmark 2: ./chroma.xml-pre-opt --version
      Time (mean ± σ):      50.6 ms ±   0.5 ms    [User: 52.4 ms, System: 3.6 ms]
      Range (min … max):    49.2 ms …  51.5 ms    51 runs

    Benchmark 3: ./chroma.xml --version
      Time (mean ± σ):       6.9 ms ±   1.1 ms    [User: 5.1 ms, System: 1.5 ms]
      Range (min … max):     5.7 ms …  19.9 ms    196 runs

    Summary
      './chroma.master --version' ran
        1.30 ± 0.23 times faster than './chroma.xml --version'
        9.56 ± 0.83 times faster than './chroma.xml-pre-opt --version'

A slight increase in init time, but I think this is okay given the
increase in flexibility.

And binary size difference:

    $ du -h lexers.test*
    $ du -sh chroma*                                                                                                                                                                                                                                                                                                                                                                                                                                                             951371ms
    8.8M	chroma.master
    7.8M	chroma.xml
    7.8M	chroma.xml-pre-opt

Benchmarks:

    $ hyperfine --warmup 3 \
        './chroma.master --version' \
        './chroma.xml-pre-opt --version' \
        './chroma.xml --version'
    Benchmark 1: ./chroma.master --version
      Time (mean ± σ):       5.3 ms ±   0.5 ms    [User: 3.6 ms, System: 1.4 ms]
      Range (min … max):     4.2 ms …   6.6 ms    233 runs

    Benchmark 2: ./chroma.xml-pre-opt --version
      Time (mean ± σ):      50.6 ms ±   0.5 ms    [User: 52.4 ms, System: 3.6 ms]
      Range (min … max):    49.2 ms …  51.5 ms    51 runs

    Benchmark 3: ./chroma.xml --version
      Time (mean ± σ):       6.9 ms ±   1.1 ms    [User: 5.1 ms, System: 1.5 ms]
      Range (min … max):     5.7 ms …  19.9 ms    196 runs

    Summary
      './chroma.master --version' ran
        1.30 ± 0.23 times faster than './chroma.xml --version'
        9.56 ± 0.83 times faster than './chroma.xml-pre-opt --version'

Incompatible changes:

- (*RegexLexer).SetAnalyser: changed from func(func(text string) float32) *RegexLexer to func(func(text string) float32) Lexer
- (*TokenType).UnmarshalJSON: removed
- Lexer.AnalyseText: added
- Lexer.SetAnalyser: added
- Lexer.SetRegistry: added
- MustNewLazyLexer: removed
- MustNewLexer: changed from func(*Config, Rules) *RegexLexer to func(*Config, func() Rules) *RegexLexer
- Mutators: changed from func(...Mutator) MutatorFunc to func(...Mutator) Mutator
- NewLazyLexer: removed
- NewLexer: changed from func(*Config, Rules) (*RegexLexer, error) to func(*Config, func() Rules) (*RegexLexer, error)
- Pop: changed from func(int) MutatorFunc to func(int) Mutator
- Push: changed from func(...string) MutatorFunc to func(...string) Mutator
- TokenType.MarshalJSON: removed
- Using: changed from func(Lexer) Emitter to func(string) Emitter
- UsingByGroup: changed from func(func(string) Lexer, int, int, ...Emitter) Emitter to func(int, int, ...Emitter) Emitter
2022-01-27 15:22:00 +11:00
Ville Skyttä d964e7c774 pygments2chroma updates (#509) 2021-05-19 08:15:25 +10:00
Alec Thomas a09abba7fc Update golangci-lint so we can force use of LazyLexer. 2021-04-29 12:10:06 +10:00
Edgar Lee e5d9650a20 Add hlb lexer (#332) 2020-02-26 21:03:38 +11:00
Alec Thomas 3175fa52d7 Support go modules + VB.Net lexer.
Fixes #201.
2018-12-03 20:38:33 -10:00
Alec Thomas 3020e2ea8c Fix bug with nested newlines.
Fixes #124.

Also reinstitute lexer tests that disappeared during package split.
2018-03-03 10:16:21 +11:00
Alec Thomas 573c1d157d Ensure a newline exists at the end of files.
Fixes #42.
2017-09-29 21:59:52 +10:00
Alec Thomas bdc1124369 Switch to Pygments-style CSS class names.
Add GitHub theme + CSS to style importer.
2017-09-25 21:46:25 +10:00
Alec Thomas 551f7cee9a Return errors for invalid styles, rather than panicking. 2017-09-21 12:52:08 +10:00
Alec Thomas e2d6abaa64 Document and add iterator panic recovery. 2017-09-20 23:06:23 +10:00
Alec Thomas a72960340e Add test to pre-compile all regexes. 2017-09-19 14:15:33 +10:00
Alec Thomas a10fd0a23d Switch to github.com/dlclark/regexp2.
This makes translating Pygments lexers much much simpler (and possible).
2017-09-18 11:16:44 +10:00
Alec Thomas d12529ae61 HTML formatter + import all Pygments styles. 2017-07-20 00:01:29 -07:00
Alec Thomas 7a7b85b4b3 Add protobuf and thrift. 2017-06-07 19:47:59 +10:00
Alec Thomas dba8ec47d2 Fixes: css, html, php. 2017-06-07 19:47:59 +10:00
Alec Thomas 8ec7ab9986 Support #pop:<n>. 2017-06-07 19:47:59 +10:00
Alec Thomas 1f47bd705c Use pointers to tokens + support regex flags in importer. 2017-06-07 19:47:59 +10:00
Alec Thomas c64e5829b5 Add JavaScript. 2017-06-07 19:47:59 +10:00
Alec Thomas 6e576b1597 Add pygments2chroma.py script. 2017-06-07 19:47:59 +10:00