diff options
| author | Georg Brandl <georg@python.org> | 2016-02-02 15:29:05 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2016-02-02 15:29:05 +0100 |
| commit | ba1f8b3d22366d0b6484ca01d95c294f0213fdcd (patch) | |
| tree | d95b8c90eb4d5649625bb263f1a50197fa342b90 /pygments/lexers/_mapping.py | |
| parent | 0b1ef022c80ccdad99e7e15b9f989ae100dc865e (diff) | |
| download | pygments-ba1f8b3d22366d0b6484ca01d95c294f0213fdcd.tar.gz | |
Add lexer for TypoScript (#closes 1173)
Source: https://github.com/Tuurlijk/Pygments-TypoScript-Lexer
Diffstat (limited to 'pygments/lexers/_mapping.py')
| -rw-r--r-- | pygments/lexers/_mapping.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pygments/lexers/_mapping.py b/pygments/lexers/_mapping.py index 9cb73cd1..4f98393a 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -392,6 +392,9 @@ LEXERS = { 'TwigHtmlLexer': ('pygments.lexers.templates', 'HTML+Twig', ('html+twig',), ('*.twig',), ('text/html+twig',)), 'TwigLexer': ('pygments.lexers.templates', 'Twig', ('twig',), (), ('application/x-twig',)), 'TypeScriptLexer': ('pygments.lexers.javascript', 'TypeScript', ('ts', 'typescript'), ('*.ts',), ('text/x-typescript',)), + 'TypoScriptCssDataLexer': ('pygments.lexers.typoscript', 'TypoScriptCssData', ('typoscriptcssdata',), (), ()), + 'TypoScriptHtmlDataLexer': ('pygments.lexers.typoscript', 'TypoScriptHtmlData', ('typoscripthtmldata',), (), ()), + 'TypoScriptLexer': ('pygments.lexers.typoscript', 'TypoScript', ('typoscript',), ('*.ts', '*.txt'), ('text/x-typoscript',)), 'UrbiscriptLexer': ('pygments.lexers.urbi', 'UrbiScript', ('urbiscript',), ('*.u',), ('application/x-urbiscript',)), 'VCTreeStatusLexer': ('pygments.lexers.console', 'VCTreeStatus', ('vctreestatus',), (), ()), 'VGLLexer': ('pygments.lexers.dsls', 'VGL', ('vgl',), ('*.rpf',), ()), |
