summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | When using the HTML formatter with `linespans=foo`, `linenos=inline`, and ↵Maximilian Hils2022-01-312-4/+12
| | | | | | | | | | | | | | | | | | | | `anchorlinenos=True`, (#2026) the generated anchor links should be `#foo-42` and not `#-42`.
* | | | php: update builtin functions lists (#2056)Georg Brandl2022-01-311-1831/+404
| | | |
* | | | Highlight Clojure ratios as Numbers (#2042)Tom Fryers2022-01-311-0/+1
| | | | | | | | | | | | | | | | | | | | * Highlight Clojure ratios as Numbers * Fix Number parsing order
* | | | mysql: update builtinsGeorg Brandl2022-01-291-1/+55
| | | |
* | | | lua: fix builtin regenerate script and updateGeorg Brandl2022-01-291-14/+8
| | | |
* | | | sourcemod: fix builtin regenerate scriptGeorg Brandl2022-01-291-14/+6
| | | |
* | | | postgres: regenerate builtinsGeorg Brandl2022-01-291-5/+12
| | | |
* | | | Support comments in JSON (#2049)Kurt McKee2022-01-283-26/+171
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Support comments in JSON This deviates from the JSON specification but doesn't affect valid JSON. * Update the JSON parser and tests to reach 100% code and branch coverage * Note work on JSON lexer * Fix a roundtrip error identified by a random test input in CI * Note that comments are supported, and that no validation is performed
* | | | Add the file extension *.resource to the list of Robot Framework files. (#2047)Hélio Guilherme2022-01-272-2/+2
| | | |
* | | | Update `Inform6Lexer` to Inform 6.36 (#2050)David Corbett2022-01-253-10/+102
| | | |
| | * | added support for mpe, dtproblog, + test casesFabrizio Riguzzi2022-02-0311-21/+1524
| | | |
| | * | added one more reserved wordFabrizio Riguzzi2022-01-251-1/+1
| | | |
| | * | inclusion of Fabrizio Riguzzi to the list of authorsFabrizio Riguzzi2022-01-251-0/+1
| | | |
| | * | fixed copyright infoFabrizio Riguzzi2022-01-251-1/+1
| | | |
| | * | Merge branch 'master' of github.com:friguzzi/pygmentsFabrizio Riguzzi2022-01-25327-353/+784
| | |\ \
| | | * \ Merge branch 'pygments:master' into masterFabrizio Riguzzi2022-01-25327-344/+775
| | | |\ \ | |_|_|/ / |/| | | |
* | | | | Add support for .cljc clojure file extension (#2043)Danny Freeman2022-01-254-2/+423
| | | | |
* | | | | Add a "plugins" argument to get_all_lexersGeorg Brandl2022-01-253-14/+24
| | | | | | | | | | | | | | | | | | | | and use it in the "duplicate filenames" checker.
* | | | | Happy new year.Georg Brandl2022-01-25322-326/+326
| | | | |
* | | | | Add the word But to the list of tokens (#2046)Hélio Guilherme2022-01-241-2/+2
| | | | |
| | | * | Merge branch 'pygments:master' into masterFabrizio Riguzzi2022-01-231-9/+9
| | | |\ \ | |_|_|/ / |/| | | |
* | | | | Adjust colours to meet WCAG AAA contrast guidelines (#2038)Hugo van Kemenade2022-01-231-9/+9
| | | | |
| | * | | fixed test problem with cplint and regexlint problemFabrizio Riguzzi2022-01-252-4/+5
| | |/ /
| | * | commentsFabrizio Riguzzi2022-01-231-4/+7
| | | |
| | * | ~= operatorFabrizio Riguzzi2022-01-231-1/+1
| | | |
| | * | DC clausesFabrizio Riguzzi2022-01-231-0/+6
| | | |
| | * | in a:p a no more higlighted as a moduleFabrizio Riguzzi2022-01-222-0/+2
| | | |
| | * | lexer for the cplint language https://cplint.euFabrizio Riguzzi2022-01-222-0/+143
| |/ / |/| |
* | | Fix typos (#2030)Kian-Meng Ang2022-01-1835-52/+52
| | |
* | | Doc: remove mention of Python 2 (#2039)Jean Abou-Samra2022-01-181-2/+2
| | |
* | | Add .tpp as a c++ lexer file extension (#2031)HampusMat2022-01-112-2/+2
|/ /
* | Prepare 2.11.2 release.2.11.2Matthäus G. Chajdas2022-01-062-2/+2
| |
* | Update CHANGES.Matthäus G. Chajdas2022-01-061-0/+1
| |
* | CFamily: improve label detection (#2022)amitkummer2022-01-069-54/+160
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Remove unused variable This variable is unused since the first commit to this file in the commit history, so it's probably safe to remove it. * Lex identifier as label only if it's at line start * Stop matching identifiers that begin with a digit This is so we don't match numbers as labels with the new labels rule. * Add label tests * Fix existing tests
* | Fix #1986.Matthäus G. Chajdas2022-01-063-2/+3
| | | | | | | | | | Some formatters did not backtrack to parent token types correctly when trying to find a matching style.
* | Fix #2020.Matthäus G. Chajdas2022-01-052-1/+2
| |
* | Merge branch 'Kwpolska-patch-1'Matthäus G. Chajdas2022-01-033-3/+5
|\ \
| * | Update CHANGES.Matthäus G. Chajdas2022-01-031-0/+2
| | |
| * | Update tests.Matthäus G. Chajdas2022-01-031-2/+2
| | |
| * | Merge branch 'patch-1' of https://github.com/Kwpolska/pygments into ↵Matthäus G. Chajdas2022-01-031-1/+1
| |\ \ |/ / / | | | | | | Kwpolska-patch-1
| * | Generate valid links if lineanchors but no linenos set (#2013)Chris Warrick2021-12-311-1/+1
| | |
* | | Update CHANGES.Matthäus G. Chajdas2022-01-031-0/+8
| | |
* | | Java: fix lexing of 'record' soft keyword (#2018)amitkummer2022-01-032-3/+57
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Java: fix lexing of 'record' soft keyword Refactor the Java lexer to treat `record` as a soft keyword. Previously, the lexer assumed record is a reserved word, even though it is a soft keyword which can be used as a variable name. This refactor lexes record as a keyword only if it appears at the beggining of the line, with some potential other keywords like public and private preceding it. * Remove repetition in capture group * Update test output
* | Prepare for next release.Matthäus G. Chajdas2021-12-311-0/+4
| |
* | Prepare 2.11.1 release.2.11.1Matthäus G. Chajdas2021-12-312-2/+2
| |
* | Improve fix for #2010.Matthäus G. Chajdas2021-12-313-5/+11
| |
* | Add more whitespace variants to JSON test content.Matthäus G. Chajdas2021-12-312-1/+47
| |
* | Update CHANGES.Matthäus G. Chajdas2021-12-311-1/+1
| |
* | Update CHANGES, add large JSON sample file.Matthäus G. Chajdas2021-12-313-1/+10449
| |
* | Fix #2010.Matthäus G. Chajdas2021-12-303-1/+10
| |