diff options
author | Matth?us G. Chajdas <dev@anteru.net> | 2019-06-22 20:59:54 +0200 |
---|---|---|
committer | Matth?us G. Chajdas <dev@anteru.net> | 2019-06-22 20:59:54 +0200 |
commit | 25334699519652f7797b76f10f47d7ee2d05d25d (patch) | |
tree | 65ef7c70df24e53f614e09c06e0fb4f4476c7536 /pygments/lexers/typoscript.py | |
parent | 46199650a6e6c67ef90129c0b66c351d59719289 (diff) | |
download | pygments-git-25334699519652f7797b76f10f47d7ee2d05d25d.tar.gz |
Remove invalid priority on TypoScriptLexer.
It's no longer 0 to resolve an ambiguity with the TypeScript lexer -- different
file endings are used.
Diffstat (limited to 'pygments/lexers/typoscript.py')
-rw-r--r-- | pygments/lexers/typoscript.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/pygments/lexers/typoscript.py b/pygments/lexers/typoscript.py index 3d08cefc..745292bd 100644 --- a/pygments/lexers/typoscript.py +++ b/pygments/lexers/typoscript.py @@ -113,9 +113,6 @@ class TypoScriptLexer(RegexLexer): flags = re.DOTALL | re.MULTILINE - # Slightly higher than TypeScript (which is 0). - priority = 0.0 - tokens = { 'root': [ include('comment'), |