summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Merged in kurtmckee/pygments-main/support-tera-term (pull request #749)Anteru2019-04-305-0/+201
| |\ \ \ | | | | | | | | | | | | | | | Support Tera Term macro language
| | * | | Support the Tera Term macro languageKurt McKee2018-01-285-0/+201
| | |/ / | | | | | | | | | | | | | | | | | | | | The patch modifies the Turtle parser in rdf.py, which uses the same file extension. A unit test file is included.
| * | | Merged in andrescarrasco/pygments-main/boa (pull request #756)Anteru2019-04-30152-3471/+8409
| |\ \ \ | | | | | | | | | | | | | | | Add a lexer for the Boa Domain-Specific Langauge.
| | * | | Update CHANGES, language list.Matth?us G. Chajdas2019-04-303-4/+10
| | | | |
| | * | | Simplify a few basic regex.Matth?us G. Chajdas2019-04-301-5/+5
| | | | |
| | * | | Merged in Praetonus/pygments-main/pony (pull request #627)Anteru2019-04-30310-4303/+9751
| | |\ \ \ | | | | | | | | | | | | | | | | | | Add lexer for the Pony language
| | | * \ \ Merged in gerph/pygments-main (pull request #806)Anteru2019-04-3023-68/+2095
| | | |\ \ \ | | | | | | | | | | | | | | | | | | | | | Create a Lexer class for BBC Basic files.
| | | | * | | Improve TOML lexer.Matth?us G. Chajdas2019-04-301-8/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The last found a few shortcomings in the TOML around float parsing. These get fixed in this commit; additionally, I simplified a bunch of regex.
| | | | * | | Merge ssh://hg@bitbucket.org/Freso/pygments-main manually.Matth?us G. Chajdas2019-04-302-12/+177
| | | | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The PR on Bitbucket did not update correctly; pulling this in manually to get the much better TOML example file.
| | | | | * | | Add example TOML fileFrederik ?Freso? S. Olesen2019-04-011-0/+181
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Based on https://github.com/toml-lang/toml/blob/master/README.md
| | | | | * | | Add `versionadded` to new lexer classesFrederik ?Freso? S. Olesen2019-04-013-0/+11
| | | | | | | |
| | | | | * | | Add lexers for DASM16, Augeas, TOML, and SlashFrederik ?Freso? S. Olesen2019-03-316-2/+376
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Lexers copied unmodified from https://github.com/liluo/pygments-github-lexers which is available under a 2-clause BSD license (same as pygments), copyright 2012 to GitHub, Inc. Fixes #1391 and #1150.
| | | | * | | | Various fixes and cleanups to the last batch of new languages.Matth?us G. Chajdas2019-04-286-12/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add to CHANGES, languages, add versionadded, recreate mappings, fix DASM16 alias.
| | | | * | | | Add TOML example file and improve the lexer a bit.Matth?us G. Chajdas2019-04-282-1/+23
| | | | | | | |
| | | | * | | | Merged in Freso/pygments-main (pull request #807)Anteru2019-04-2817-66/+1512
| | | | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Add lexers for DASM16, Augeas, TOML, and Slash
| | | | * | | | | Add lexers for DASM16, Augeas, TOML, and SlashFrederik ?Freso? S. Olesen2019-03-316-2/+376
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Lexers copied unmodified from https://github.com/liluo/pygments-github-lexers which is available under a 2-clause BSD license (same as pygments), copyright 2012 to GitHub, Inc. Fixes #1391 and #1150.
| | | * | | | | | Create a Lexer class for BBC Basic files.Charles Ferguson2019-03-143-2/+254
| | | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Lexer class for BBC Basic handles both the numbered lines, and unnumbered lines, of the detokenised (text) format of BBC BASIC. The tokeniser copes, in a naive manner, with the orignal versions, and BASIC V. It does not handle other extensions at this time, nor does it handle inline assembler. This should be sufficient for most cases where code needs to be presented in a colourful manner.
| | * | | | | | Add lexer for the Pony languageBenoit Vey2016-07-253-0/+111
| | | | | | | |
| * | | | | | | Add a lexer for the Boa Domain-Specific Langauge.Andr?s Carrasco2018-04-173-0/+99
| | |_|_|_|/ / | |/| | | | |
* | | | | | | Add support for @import keyword in Objective-CLuca Torella2019-04-242-2/+13
| |_|_|/ / / |/| | | | |
* | | | | | Fix invalid escape sequence in stata builtins, update CHANGES.Matth?us G. Chajdas2019-04-022-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | else\sif is invalid, and not needed given else and if are already valid keywords.
* | | | | | Merged in mcaceresb/pygments-main/sas-stata (pull request #800)Anteru2019-04-0229-35/+1879
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug fixes for Stata lexer; adds stata styles Approved-by: Anteru <bitbucket@ca.sh13.net> Approved-by: mcaceresb NA <mauricio.caceres.bravo@gmail.com>
| * | | | | | Fix documentation build using Sphinx 2.0 (fixes #1501.)Matth?us G. Chajdas2019-04-022-6/+7
| | | | | | |
| * | | | | | Merged in nimmajbb/pygments-main/update-kotlin-lexer (pull request #808)Anteru2019-04-022-3/+161
| |\ \ \ \ \ \ | | |_|_|_|/ / | |/| | | | | | | | | | | | some bug fixes to the kotlin lexer
| | * | | | | some fixes to the kotlin lexer to work with the corda kolin codebasenimmajbb2019-04-012-3/+161
| |/ / / / /
| * | | | | Fix nested set warning in Unicon lexers.Matth?us G. Chajdas2019-04-011-2/+2
| | | | | |
| * | | | | Update CHANGES.Matth?us G. Chajdas2019-04-011-0/+2
| | | | | |
| * | | | | Fix versionadded for Unicon lexers.Matth?us G. Chajdas2019-04-011-2/+2
| | | | | |
| * | | | | Merged in cjwatson/pygments-main (pull request #753)Anteru2019-04-012-0/+8
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Markdown: add support for reference-style links
| | * | | | | Markdown: add support for reference-style linksColin Watson2018-02-222-0/+8
| | |/ / / /
| * | | | | Merged in bwtiffin/pygments-unicon (pull request #731)Matth?us G. Chajdas2019-04-016-1/+1168
| |\ \ \ \ \ | | |_|_|/ / | |/| | | |
| | * | | | _mapping.py edited online with Bitbucket to fix Typoscript mapping merge ↵Brian Tiffin2019-03-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | conflict when submitting the Unicon and Icon lexers
| | * | | | example.icn created online with BitbucketBrian Tiffin2017-08-311-0/+283
| | | | | |
| | * | | | example.u1 created online with BitbucketBrian Tiffin2017-08-311-0/+111
| | | | | |
| | * | | | example.u edited online with BitbucketBrian Tiffin2017-08-311-111/+547
| | | | | |
| | * | | | example.u created online with BitbucketBrian Tiffin2017-08-311-548/+111
| | | | | |
| | * | | | example.icon created online with BitbucketBrian Tiffin2017-08-311-0/+381
| | | | | |
| | * | | | unicon.py created online with BitbucketBrian Tiffin2017-08-311-0/+390
| | | | | |
| | * | | | _mapping.py edited online with BitbucketBrian Tiffin2017-08-311-0/+3
| | |/ / /
| * | | | Fix invalid escape sequence in the VBScript lexer.Matth?us G. Chajdas2019-03-061-1/+1
| | | | |
| * | | | Merged in taboege/pygments-main (pull request #803)Anteru2019-03-0613-21/+492
| |\ \ \ \ | | | | | | | | | | | | | | | | | | Add Perl 6 to the language list
| | * | | | Update CHANGES.Matth?us G. Chajdas2019-03-062-2/+6
| | | | | |
| | * | | | Merged in roskakori/pygments-vbscript (pull request #673)Anteru2019-03-06294-4216/+6907
| | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | Added lexer for VBScript
| | | * \ \ \ Merged in jkmartindale/pygments-main (pull request #775)Anteru2019-03-06131-3399/+5463
| | | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix external links in RdLexer and NewLispLexer Approved-by: James Martindale <atlassian@jkmartindale.com>
| | | | * | | | Fix #1482.Matth?us G. Chajdas2019-03-061-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a shebang_match for php.
| | | | * | | | Fix #1498.Matth?us G. Chajdas2019-03-063-12/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | .typoscript is used for TypoScript files, removing the ambiguity with TypeScript.
| | | | * | | | Fix #1494.Matth?us G. Chajdas2019-03-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes the catastrophic backtracking which previously occured for strings like "\057hom\145/e2\071501\057pub\154ic_\150tml\057a
| | | * | | | | Fix external links in RdLexer and NewLispLexerJames Martindale2018-07-162-2/+2
| | | | |/ / / | | | |/| | |
| | * | | | | Added a few missing constants and keywords for VBScript.Thomas Aglassinger2016-10-021-0/+4
| | | | | | |
| | * | | | | Added lexer for VBScript.Thomas Aglassinger2016-10-026-4/+474
| | | | | | |