Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Closes #1042: dont recognize *.md as MiniD anymore (which is now Croc). | Georg Brandl | 2014-10-16 | 2 | -2/+2 |
| | | | | | .md should be lexed as Markdown once we have a lexer for it. Rename examplefile accordingly. | ||||
* | More fixes thanks to regexlint. | Georg Brandl | 2014-10-16 | 15 | -51/+39 |
| | |||||
* | Fix "matches empty string" complaints from regexlint. | Georg Brandl | 2014-10-16 | 19 | -81/+107 |
| | |||||
* | Fix typo. | Georg Brandl | 2014-10-16 | 1 | -1/+1 |
| | |||||
* | Curly brace escaping, round 2. | Tim Hatch | 2014-10-15 | 9 | -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 Hatch | 2014-10-15 | 21 | -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 Hatch | 2014-10-15 | 1 | -1/+5 |
| | |||||
* | HttpLexer: Use \Z explicitly for end of file. | Tim Hatch | 2014-10-15 | 1 | -4/+4 |
| | |||||
* | Merge with -main | Tim Hatch | 2014-10-15 | 3 | -24/+23 |
|\ | |||||
| * | Use unistring.combine in dotnet lexers. | Tim Hatch | 2014-10-15 | 1 | -15/+15 |
| | | |||||
| * | Use unistring.combine for slight speedup. | Tim Hatch | 2014-10-15 | 2 | -8/+8 |
| | | |||||
* | | all lexers: fix unescaped { and } so that the "regex" module can compile our ↵ | Georg Brandl | 2014-10-15 | 33 | -181/+182 |
|/ | | | | regexes | ||||
* | Twig: some corrections, test suite passes | Georg Brandl | 2014-10-15 | 1 | -1/+2 |
| | |||||
* | Twig: address comments by Christophe Coevoet | Georg Brandl | 2014-10-15 | 1 | -11/+23 |
| | |||||
* | Merged in dscorbett/pygments-tads3-2 (pull request #407) | Georg Brandl | 2014-10-15 | 6 | -93/+288 |
|\ | | | | | | | Add a lexer for TADS 3 | ||||
| * | rb is already an alias for the RubyLexer. | Tim Hatch | 2014-10-14 | 2 | -2/+2 |
| | | |||||
| * | Add ResourceBundle lexer. | Tim Hatch | 2014-10-14 | 2 | -0/+80 |
| | | | | | | | | Fixes #1038 | ||||
| * | Improve Modelica lexer (Pull Request #390) | Tim Hatch | 2014-10-14 | 1 | -69/+48 |
| | | |||||
| * | Clarify mimetype handling in HttpLexer, add test. | Tim Hatch | 2014-10-10 | 1 | -18/+17 |
| | | |||||
| * | Add Mozilla preprocessor lexers. | Tim Hatch | 2014-10-10 | 2 | -5/+132 |
| | | | | | | | | Replaces PR #239 | ||||
| * | Include 'unlexer' as a common misspelling. | Tim Hatch | 2014-10-10 | 1 | -12/+12 |
| | | |||||
| * | Also checks mediatype suffix for lexer in HttpLexer | Andrew Balmos | 2014-10-09 | 1 | -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 3 | David Corbett | 2014-10-08 | 2 | -2/+610 |
|/ | |||||
* | Add JSON-LD Lexer. | Tim Hatch | 2014-10-08 | 2 | -2/+24 |
| | | | | Adapted from PR 289. | ||||
* | MakefileLexer: Add GNU Automake directives. | Tim Hatch | 2014-10-08 | 1 | -1/+3 |
| | | | | Fixes #995 | ||||
* | Twig: add test example file, add changelog entry and regenerate mapping. | Georg Brandl | 2014-10-08 | 2 | -20/+29 |
| | |||||
* | Merged in ↵ | Georg Brandl | 2014-10-08 | 1 | -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 lexer | Javier Eguiluz | 2014-09-29 | 1 | -1/+82 |
| | | |||||
* | | Merged in leodemoura/pygments-main (pull request #399) | Georg Brandl | 2014-10-08 | 104 | -27904/+37336 |
|\ \ | |||||
| * | | Closes #892: fix overzealous analyse_text of the SourcesListLexer. | Georg Brandl | 2014-10-08 | 3 | -9/+6 |
| | | | | | | | | | | | | Also remove any "default" return from analyse_text methods. | ||||
| * | | Closes #1015: fix lexing of Haskell char literals. | Georg Brandl | 2014-10-08 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | In the case of TH quoting, 'f'7 means char literal and then numeric 7, not quoted f'7, see http://www.haskell.org/ghc/docs/7.6.2/html/users_guide/template-haskell.html | ||||
| * | | Vala: add verbatim strings and template strings | Georg Brandl | 2014-10-07 | 1 | -1/+2 |
| | | | |||||
| * | | PHP: allow spaces before heredoc end token | Georg Brandl | 2014-10-07 | 1 | -1/+1 |
| | | | |||||
| * | | Closes #1008: allow $ in names for Oracle SQL. | Georg Brandl | 2014-10-07 | 1 | -1/+1 |
| | | | |||||
| * | | ca65: allow brackets | Georg Brandl | 2014-10-07 | 1 | -1/+1 |
| | | | |||||
| * | | Better name for ca65 assembler lexer. | Georg Brandl | 2014-10-07 | 2 | -2/+2 |
| | | | |||||
| * | | Mathematica: add comparison operators | Georg Brandl | 2014-10-07 | 1 | -7/+7 |
| | | | |||||
| * | | VBnet: allow brackets. | Georg Brandl | 2014-10-07 | 1 | -1/+1 |
| | | | |||||
| * | | Povray: add strings, all directives. | Georg Brandl | 2014-10-07 | 1 | -4/+6 |
| | | | |||||
| * | | Merge with -main | Tim Hatch | 2014-10-07 | 1 | -1/+1 |
| |\ \ | |||||
| | * | | Fix highlighting of Java enhanced for loops. | Tim Hatch | 2014-10-07 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | Fixes #965 | ||||
| * | | | Apache conf: recognize backslash line cont | Georg Brandl | 2014-10-07 | 1 | -2/+4 |
| |/ / | |||||
| * | | Merge with -main | Tim Hatch | 2014-10-07 | 3 | -6/+24 |
| |\ \ | |||||
| | * | | JavascriptLexer: Support unicode identifiers per standard. | Tim Hatch | 2014-10-07 | 1 | -1/+8 |
| | | | | | | | | | | | | | | | | Fixes #999 | ||||
| | * | | MakeLexer: Add GNU Make vpath directive. | Tim Hatch | 2014-10-07 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | Fixes #949 | ||||
| | * | | Merge with -main | Tim Hatch | 2014-10-07 | 1 | -4/+15 |
| | |\ \ | |||||
| | | * | | ScalaLexer: Improve interpolated strings, adding triplequoted strings and ↵ | Tim Hatch | 2014-10-07 | 1 | -4/+15 |
| | | | | | | | | | | | | | | | | | | | | test file. | ||||
| * | | | | EBNF: be a bit more tolerant | Georg Brandl | 2014-10-07 | 1 | -1/+2 |
| | | | | | |||||
| * | | | | TeX: accept backslash before newline | Georg Brandl | 2014-10-07 | 1 | -0/+1 |
| | | | | | |||||
| * | | | | HTML: allow spaces after "attr=". | Georg Brandl | 2014-10-07 | 1 | -1/+1 |
| |/ / / |