summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Bump to 2.0rc1.2.0rc1Georg Brandl2014-10-163-5/+5
|
* Closes #1042: dont recognize *.md as MiniD anymore (which is now Croc).Georg Brandl2014-10-163-2/+2
| | | | | .md should be lexed as Markdown once we have a lexer for it. Rename examplefile accordingly.
* More fixes thanks to regexlint.Georg Brandl2014-10-1615-51/+39
|
* Fix "matches empty string" complaints from regexlint.Georg Brandl2014-10-1619-81/+107
|
* Fix typo.Georg Brandl2014-10-161-1/+1
|
* Curly brace escaping, round 2.Tim Hatch2014-10-159-27/+28
| | | | | | | These were all pointed out by regexlint but required manual effort to track down (indicator.py was confused by most of them being produced by expressions). Also comment out some iffy comment patterns.
* Curly brace escaping, round 1.Tim Hatch2014-10-1521-46/+46
| | | | | These locations were all found by regexlint and done semi-manually, leaving braces within [] alone (they aren't special in the 'regex' module).
* KconfigLexer: Be explicit about single repetition.Tim Hatch2014-10-151-1/+5
|
* HttpLexer: Use \Z explicitly for end of file.Tim Hatch2014-10-151-4/+4
|
* maxunicode is 0xffff for narrow buildsGeorg Brandl2014-10-151-2/+4
|
* Skip known-failing tests on JythonTim Hatch2014-10-151-1/+9
|
* Merge with -mainTim Hatch2014-10-154-27/+24
|\
| * Use unistring.combine in dotnet lexers.Tim Hatch2014-10-151-15/+15
| |
| * Use unistring.combine for slight speedup.Tim Hatch2014-10-152-8/+8
| |
| * Minor cleanup in TestcaseFormatterTim Hatch2014-10-151-3/+1
| |
* | all lexers: fix unescaped { and } so that the "regex" module can compile our ↵Georg Brandl2014-10-1534-182/+183
| | | | | | | | regexes
* | unistring: only add non-BMP characters to categories on wide/flexible buildsGeorg Brandl2014-10-151-43/+87
|/
* Twig: some corrections, test suite passesGeorg Brandl2014-10-151-1/+2
|
* Twig: address comments by Christophe CoevoetGeorg Brandl2014-10-151-11/+23
|
* unistring: fix generated Cs category on Py2.Georg Brandl2014-10-152-10/+7
|
* Rename test file to use the correct lexer.Georg Brandl2014-10-151-0/+0
|
* changelog updateGeorg Brandl2014-10-151-0/+4
|
* Merged in dscorbett/pygments-tads3-2 (pull request #407)Georg Brandl2014-10-1521-185/+557
|\ | | | | | | Add a lexer for TADS 3
| * merge headsGeorg Brandl2014-10-154-1/+90
| |\
| | * rb is already an alias for the RubyLexer.Tim Hatch2014-10-142-2/+2
| | |
| | * Make mapfiles.Tim Hatch2014-10-141-1/+1
| | |
| | * Add ResourceBundle lexer.Tim Hatch2014-10-143-0/+89
| | | | | | | | | | | | Fixes #1038
| * | unistring: regenerate using UCD 6.3.0 (Py3.4)Georg Brandl2014-10-151-10/+10
| | |
| * | unistring: regenerate using also non-BMP charactersGeorg Brandl2014-10-151-28/+29
| | |
| * | Automatically generate xid_start and xid_continue in unistring; regenerate ↵Georg Brandl2014-10-151-23/+39
| |/ | | | | | | with UCD 6.1 (Py3.3).
| * Test fixes for Python3Tim Hatch2014-10-141-2/+2
| |
| * Skip some unistring tests on Jython.Tim Hatch2014-10-141-0/+8
| |
| * Allow unistring to use character ranges.Tim Hatch2014-10-142-28/+87
| |
| * Improve Modelica lexer (Pull Request #390)Tim Hatch2014-10-141-69/+48
| |
| * terminal formatters: PEP8 cleanupGeorg Brandl2014-10-142-27/+27
| |
| * cmdline: wrap outfile directly with colorama only if output to terminalGeorg Brandl2014-10-141-17/+25
| | | | | | | | Add special handling for Python 3.
| * Fix encoding of the test streams.Georg Brandl2014-10-141-2/+2
| |
| * Remove non-ASCII from non-Unicode string.Georg Brandl2014-10-141-1/+1
| |
| * Clarify mimetype handling in HttpLexer, add test.Tim Hatch2014-10-102-18/+58
| |
| * Add Mozilla preprocessor lexers.Tim Hatch2014-10-105-5/+151
| | | | | | | | Replaces PR #239
| * Include 'unlexer' as a common misspelling.Tim Hatch2014-10-102-13/+13
| |
| * Add aditional tests for regex optimization.Tim Hatch2014-10-101-0/+16
| |
| * Also checks mediatype suffix for lexer in HttpLexerAndrew Balmos2014-10-091-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The HttpLexer will highlight the body if the Content-Type header is set to a mediatype that pygments understands. However, some mediatypes have a custom subtype but a standard and known suffix. Therefore, pygments should highlight body by the exact media type first and then by the suffix if there was no match. For example: application/vnd.custom+json currently does not result in the body being highlighted even though pygments is capable application/json
* | Add a lexer for TADS 3David Corbett2014-10-084-3/+1859
|/
* Add JSON-LD Lexer.Tim Hatch2014-10-083-2/+51
| | | | Adapted from PR 289.
* MakefileLexer: Add GNU Automake directives.Tim Hatch2014-10-082-1/+10
| | | | Fixes #995
* Twig: add test example file, add changelog entry and regenerate mapping.Georg Brandl2014-10-084-20/+4642
|
* Merged in ↵Georg Brandl2014-10-081-1/+82
|\ | | | | | | | | | | javiereguiluz/pygments-main/javiereguiluz/first-attempt-of-creating-a-twig-lexer-1412003054413 (pull request #404) First attempt of creating a Twig lexer
| * First attempt of creating a Twig lexerJavier Eguiluz2014-09-291-1/+82
| |
* | Merged in leodemoura/pygments-main (pull request #399)Georg Brandl2014-10-08177-30528/+42109
|\ \