summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* css: fix lexing numbers inside function calls2382-fixGeorg Brandl2023-03-191-0/+51
| | | | Fixes #2382
* Improve Gnuplot lexer.Matthäus G. Chajdas2023-03-111-901/+28
| | | | | * Merge comment tokens. * Improve whitespace matching accuracy.
* Improve number regex and add lexer guess for carbon syntax (#2370)Amr Hesham2023-03-071-0/+16
|
* Add more keywords to Carbon lexer (#2369)Amr Hesham2023-03-031-2/+2
|
* Add support for impl and constraint declaration in Carbon lexer (#2368)Amr Hesham2023-03-022-1/+52
|
* Fix order of minus and arrow operators in Carbon lexer (#2367)Amr Hesham2023-03-022-10/+5
|
* Add support for more declarations and access modifiers in Carbon lexer (#2366)Amr Hesham2023-03-022-0/+278
|
* Fix Carbon example typo in function declaration (#2365)Amr Hesham2023-03-022-2/+2
|
* Add support for Carbon Programming Language (#2362)Amr Hesham2023-03-012-0/+238
|
* Improve lexing PHP attributes (#2360)Richard van Velzen2023-03-013-23/+38
|
* Fix lexing PHP anonymous classes with no parameters (#2359)Richard van Velzen2023-03-011-0/+28
|
* Improve lexing PHP's variable variable syntax (#2358)Richard van Velzen2023-03-011-0/+45
|
* Fix GLSL and HLSL preprocessor directive startbitsawer2023-02-266-0/+42
|
* Improve bash math expansion lexing (#2353)Richard van Velzen2023-02-242-1/+673
|
* Don't require script headers in Rebol and Red codes. (#2349)Oldes Huhuman2023-02-244-27/+7
| | | | | | | | | | * Don't require script headers in Rebol and Red codes. Resolves: https://github.com/pygments/pygments/issues/2348 * Not modifying the copyright * Updated tests for Rebol and Red * Rebol: removed the unneeded code instead of commenting.
* Implement CMake bracket comment syntax (#2354)Richard van Velzen2023-02-242-0/+25
|
* More tests moved to snippets/ (#2351)Jean Abou-Samra2023-02-2331-635/+1429
|
* Fix GLSL and HLSL preprocessor line continuation (#2350)bitsawer2023-02-236-2/+43
|
* Support PHP attributes (#2347)Richard van Velzen2023-02-212-0/+22
|
* groff: Sort color definitions for reproducibility (#2343)Jean Abou-Samra2023-02-151-5/+45
|
* Add X++ support (#2339)Andrew Schmidt2023-02-142-0/+657
| | | Co-authored-by: Jean Abou Samra <jean@abou-samra.fr>
* Add new lexer for DAX (#2335)Greg de Lima2023-02-132-0/+56
| | | Co-authored-by: Jean Abou-Samra <jean@abou-samra.fr>
* Python console: make traceback handling more robustGeorg Brandl2023-02-031-0/+97
| | | | | Fixes #2329 Fixes #2226
* Fix some pyflakes lints in tests/ and scripts/ (#2333)Jean Abou-Samra2023-02-016-6/+3
|
* Fix lots of missing encoding="utf-8" parametersJean Abou Samra2023-01-313-5/+6
| | | | | Some of these are probably unnecessary (ASCII-only content), but it's easier not to think about it.
* Extend the AMDGPU lexer. (#2327)Thomas Symalla2023-01-312-1/+40
| | | | | Add support for scratch_ instructions, the attr*.* argument as well as the off modifier. Without support for attr*.*, multiple v_interp instructions are previously rendered incorrectly.
* Upgrading APDL lexer (#2314)German2023-01-303-66/+44
| | | Co-authored-by: Jean Abou Samra <jean@abou-samra.fr>
* Add support for normal diff syntax (#2321)CosmicHorror2023-01-292-0/+82
|
* Native: fix contrast ratio to meet WCAG AA guidelinesHugo van Kemenade2023-01-291-1/+1
|
* Improve the Smithy metadata matcher.Matthäus G. Chajdas2022-12-312-0/+64
| | | | | | Previously, metadata foo bar baz = 23 was accepted, but according to the definition https://smithy.io/2.0/spec/idl.html#grammar-token-smithy-MetadataSection it should be "metadata"<whitespace>Identifier/String<optional whitespace>.
* Improve whitespace handling in MesonLexer/PerlLexer.Matthäus G. Chajdas2022-12-116-1798/+1807
|
* Improve whitespace handling in XQueryLexer.Matthäus G. Chajdas2022-12-113-181/+181
|
* Improve whitespace handling in VarnishLexer.Matthäus G. Chajdas2022-12-111-407/+407
|
* Improve whitespace handling in SLexer.Matthäus G. Chajdas2022-12-1110-374/+374
|
* Stop the HTML formatter from emitting empty whitespace spans.Matthäus G. Chajdas2022-12-11128-384/+384
|
* Improve whitespace handling in Python.Matthäus G. Chajdas2022-12-11224-761/+761
| | | | | | | | | This triggers a new case in the HtmlFormatter, which emits an empty span at the end of the line for a new line, as those are removed by the split-by-parts code. This requires separate post-processing. Doesn't fix all whitespace issues with Python either, but we're done to 360 failing examples with that, from previously >400.
* Fix golden test output.Matthäus G. Chajdas2022-12-111-2/+2
|
* Improve whitespace handling in PraatLexer.Matthäus G. Chajdas2022-12-113-120/+151
|
* Add support for PortugolLexer (#2300)Lorhan Sohaky2022-12-102-0/+1379
|
* Remove the lxml dependency.Matthäus G. Chajdas2022-12-071-11/+31
| | | | Replace lxml with html.parser for the structural-diff.
* Improve whitespace handling in PraatLexer.Matthäus G. Chajdas2022-12-0415-898/+898
|
* Improve whitespace handling in TealLexer.Matthäus G. Chajdas2022-12-044-17/+17
|
* Improve whitespace handling in XmlLexer.Matthäus G. Chajdas2022-12-0412-5362/+7350
|
* Improve whitespace handling in PythonTracebackLexer.Matthäus G. Chajdas2022-12-0412-147/+147
|
* Improve whitespace handling in Make/BashLexer.Matthäus G. Chajdas2022-12-045-549/+549
|
* Improve whitespace handling in CMake/RegexLexer.Matthäus G. Chajdas2022-12-0486-7678/+7678
|
* Improve whitespace handling in the PascalLexer.Matthäus G. Chajdas2022-12-042-9095/+9095
|
* Improve whitespace handling in the BashLexer.Matthäus G. Chajdas2022-12-0429-8461/+8461
|
* Improve whitespace handling in Markdown.Matthäus G. Chajdas2022-12-048-24/+24
|
* Fix whitespace handling in Ruby.Matthäus G. Chajdas2022-12-0420-7748/+7748
|