diff options
author | Tim Hatch <tim@timhatch.com> | 2010-12-21 00:44:34 -0800 |
---|---|---|
committer | Tim Hatch <tim@timhatch.com> | 2010-12-21 00:44:34 -0800 |
commit | c7be3b9899b4cfd704588b3f71ffcc0c08125333 (patch) | |
tree | 56f10f6d2d6cf3a7485dff6e88cc172c4ee93172 /pygments/lexers/_mapping.py | |
parent | 050baee4a72b66b946f44bc8ef1b98b667ece706 (diff) | |
download | pygments-c7be3b9899b4cfd704588b3f71ffcc0c08125333.tar.gz |
Initial support for ssp files (#473)
Diffstat (limited to 'pygments/lexers/_mapping.py')
-rw-r--r-- | pygments/lexers/_mapping.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pygments/lexers/_mapping.py b/pygments/lexers/_mapping.py index b6c60a4e..fabfe21d 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -187,6 +187,7 @@ LEXERS = { 'SqlLexer': ('pygments.lexers.other', 'SQL', ('sql',), ('*.sql',), ('text/x-sql',)), 'SqliteConsoleLexer': ('pygments.lexers.other', 'sqlite3con', ('sqlite3',), ('*.sqlite3-console',), ('text/x-sqlite3-console',)), 'SquidConfLexer': ('pygments.lexers.text', 'SquidConf', ('squidconf', 'squid.conf', 'squid'), ('squid.conf',), ('text/x-squidconf',)), + 'SspLexer': ('pygments.lexers.templates', 'Scalate Server Page', ('ssp',), ('*.ssp',), ('application/x-ssp',)), 'TclLexer': ('pygments.lexers.agile', 'Tcl', ('tcl',), ('*.tcl',), ('text/x-tcl', 'text/x-script.tcl', 'application/x-tcl')), 'TcshLexer': ('pygments.lexers.other', 'Tcsh', ('tcsh', 'csh'), ('*.tcsh', '*.csh'), ('application/x-csh',)), 'TexLexer': ('pygments.lexers.text', 'TeX', ('tex', 'latex'), ('*.tex', '*.aux', '*.toc'), ('text/x-tex', 'text/x-latex')), |