summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Remove the lxml dependency.Matthäus G. Chajdas2022-12-073-13/+31
| | | | | | | | Replace lxml with html.parser for the structural-diff.
* | New attempt to add Python 3.11 to CI now that it's released (#2287)Jean Abou-Samra2022-12-071-1/+7
|/
* Improve utility script.Matthäus G. Chajdas2022-12-051-0/+1
| | | | Skip the `---tokens---` line when parsing a snippet.
* Update demo.cssMatthäus G. Chajdas2022-12-051-0/+1
| | | Port https://github.com/pygments/pygments.github.io/pull/4/files
* Improve whitespace handling in PraatLexer.Matthäus G. Chajdas2022-12-0416-923/+923
|
* Improve whitespace handling in TealLexer.Matthäus G. Chajdas2022-12-045-21/+22
|
* Improve utility scripts.Matthäus G. Chajdas2022-12-042-16/+40
| | | | Scan snippet files in addition to token output streams.
* Improve whitespace handling in XmlLexer.Matthäus G. Chajdas2022-12-0413-5366/+7355
|
* Improve whitespace handling in PythonTracebackLexer.Matthäus G. Chajdas2022-12-0413-155/+155
|
* Improve whitespace handling in Make/BashLexer.Matthäus G. Chajdas2022-12-047-554/+557
|
* Improve whitespace handling in CMake/RegexLexer.Matthäus G. Chajdas2022-12-0488-7683/+7683
|
* Improve whitespace handling in the PascalLexer.Matthäus G. Chajdas2022-12-043-9098/+9098
|
* Improve whitespace handling in the BashLexer.Matthäus G. Chajdas2022-12-0430-8465/+8465
|
* Make utility script file PEP8 compliant.Matthäus G. Chajdas2022-12-041-1/+3
|
* Improve whitespace handling in Markdown.Matthäus G. Chajdas2022-12-049-28/+28
|
* Fix whitespace handling in Ruby.Matthäus G. Chajdas2022-12-0421-7765/+7765
|
* Add another check script for whitespace.Matthäus G. Chajdas2022-12-043-47/+108
| | | | | | Add a script which checks for whitespace tokens, similar to the script checking for repeated tokens. Also move some functionality shared between them into a utility file, and make check_repeated_token PEP8 compliant.
* Add pyproject.toml.Matthäus G. Chajdas2022-12-042-4/+6
| | | | | | Add a pyproject.toml file as recommended for modern Python projects. See https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/ for details.
* remove `:` from the Punctuation regex in the SolidityLexerMichael Rodler2022-12-031-1/+1
|
* fix solidity lexer not picking up many of the language operatorsMichael Rodler2022-12-033-48/+537
|
* NixLexer: fix "1 token per char"Jean Abou Samra2022-12-033-115/+12
|
* nix: allow single quotes inside single-quoted strings (#2289)Naïm Favier2022-12-033-1/+8
|
* Update CHANGESJean Abou Samra2022-11-291-0/+1
|
* Add support for Wren language (#2271)PureFox482022-11-295-0/+1157
| | | Co-authored-by: Jean Abou Samra <jean@abou-samra.fr>
* Update CHANGESJean Abou Samra2022-11-291-0/+4
|
* Add a lexer for Schemas for Minecraft Add-ons and 4 examples, merging lexers ↵方法放寒假2022-11-2910-11/+4117
| | | | (#2276)
* LilyPond: slightly improve lexing (#2283)Werner Lemberg2022-11-273-16/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Handle `--` and `__` as `Token.Punctuation` only if preceded by whitespace: ``` <whitespace> -- ==> hyphen (in lyrics mode) <whitespace> __ ==> extender line (in lyrics mode) -- ==> tenuto, neutral attachment (in music mode) __ ==> portato, down attachment (in music mode) ``` * Handle `-` followed by a number as `Token.Number` only if preceded by whitespace. This is purely heuristic, derived from the coding style shown in the LilyPond manuals. ``` <whitespace> -3 ==> integer (e.g., as a function argument) -3 ==> fingering instruction ``` * Add forgotten `\maxima` note duration. * Some legibility improvements by using verbose mode for regular expressions. * Some comment additions and fixes. * Update tests.
* Update CHANGESJean Abou Samra2022-11-261-0/+1
|
* add abap keywords (#2281)Christian Aasan2022-11-261-5/+5
|
* Update CHANGESJean Abou Samra2022-11-261-0/+1
|
* Added support for F# script files, aka .fsx files (#2282)Alan Ball2022-11-262-2/+2
|
* Update CHANGES.Matthäus G. Chajdas2022-11-191-0/+1
|
* Merge pull request #2280 from AshrafAliS/nasm_file_format_supportMatthäus G. Chajdas2022-11-192-2/+2
|\ | | | | Add the NASM file format supports
| * Add the NASM file format supportsAshraf Ali S2022-11-192-2/+2
|/ | | | | | | | | | tianocore EDK2 have the NASM file format alternative to ASM based On which compiler user is using. https://github.com/tianocore/edk2 NASM are same as ASM file format Signed-off-by: Ashraf Ali S <ashraf.ali.s@intel.com>
* Update Alloy for Alloy 6 (PR #1963) manual cherry-pickHillel2022-11-194-55/+64
|
* Accept colon(s) in YAML key namesGreg Dubicki2022-11-144-1/+34
| | | | | as it's ok according to the YAML specs and is widely used in the real world, f.e. in Puppet's Hiera (https://puppet.com/docs/puppet/7/hiera_quick.html#values_common_data)
* Merge pull request #2270 from Ayowel/fix/ircformatterMatthäus G. Chajdas2022-11-132-31/+14
|\ | | | | Remove unneeded _format_unencoded_with_lineno function from IRCFormatter
| * Remove unneeded _format_unencoded_with_lineno function from IRCFormatter and ↵Ayowel2022-11-062-31/+14
| | | | | | | | fix line endings insertion
* | Merge pull request #2275 from pygments/update-github-actions-to-python-v4Matthäus G. Chajdas2022-11-131-9/+9
|\ \ | |/ |/| Update GitHub actions.
| * Update actions.Matthäus G. Chajdas2022-11-131-9/+9
|/
* Add opaque pointer type to LLVM IR lexerVladimir Vuksanovic2022-10-311-1/+1
| | | | Reference: https://llvm.org/docs/OpaquePointers.html
* Update CHANGESJean Abou Samra2022-10-291-0/+1
|
* Csound: update for Csound 6.18.0 (#2268)Nate Whetsell2022-10-291-1/+6
|
* shell session: allow continuation without marker for PowerShellGeorg Brandl2022-10-282-4/+136
| | | | Fixes #2262
* all: move often-used "line_re" to pygments.lexerGeorg Brandl2022-10-2716-49/+15
|
* all: style fixesGeorg Brandl2022-10-27107-931/+707
|
* sphinxext: style fixupsGeorg Brandl2022-10-261-5/+6
|
* Arturo: add to changelog, style fixupsGeorg Brandl2022-10-262-72/+59
|
* Add support for Arturo language (#2259)RickBarretto2022-10-264-0/+3286
|
* languages page: fix leftover HTML syntaxGeorg Brandl2022-10-251-1/+1
|