diff options
author | Georg Brandl <georg@python.org> | 2012-03-10 14:39:32 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-03-10 14:39:32 +0100 |
commit | 4d4baf6c84b1c582ea10fd2eb1c734226734bfa4 (patch) | |
tree | fb1bb794dd7edbe44029645b87205dbee73ca732 | |
parent | 7ff9fccafad1131cb706745fe7fbbfffefb3baef (diff) | |
download | pygments-4d4baf6c84b1c582ea10fd2eb1c734226734bfa4.tar.gz |
Add changelog entry and author for Tea lexer.
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | CHANGES | 1 | ||||
-rw-r--r-- | pygments/lexers/templates.py | 1 |
3 files changed, 3 insertions, 0 deletions
@@ -48,6 +48,7 @@ Other contributors, listed alphabetically, are: * Ben Hollis -- Mason lexer * Tim Howard -- BlitzMax lexer * Ivan Inozemtsev -- Fantom lexer +* Brian R. Jackson -- Tea lexer * Dennis Kaarsemaker -- sources.list lexer * Igor Kalnitsky -- vhdl lexer * Adam Koprowski -- Opa lexer @@ -42,6 +42,7 @@ Version 1.5 * VHDL (PR#45) * Scilab (#740) * Elixir (PR#57) + * Tea (PR#56) - Fix Python 3 terminal highlighting with pygmentize (#691). diff --git a/pygments/lexers/templates.py b/pygments/lexers/templates.py index 4b7c4281..84850728 100644 --- a/pygments/lexers/templates.py +++ b/pygments/lexers/templates.py @@ -1583,6 +1583,7 @@ class SspLexer(DelegatingLexer): rv += 0.1 return rv + class TeaTemplateRootLexer(RegexLexer): """ Base for the `TeaTemplateLexer`. Yields `Token.Other` for area outside of |