diff options
author | thatch <devnull@localhost> | 2008-08-05 12:50:38 -0700 |
---|---|---|
committer | thatch <devnull@localhost> | 2008-08-05 12:50:38 -0700 |
commit | fc04caa3a2b6b495a301f59fed9379602063326c (patch) | |
tree | c41a11ad5389d4368092280bff36f10d1c4354d6 /pygments/lexers/_mapping.py | |
parent | 4fe95497e7dd7f7d6178db88fca2233cf98c7b13 (diff) | |
download | pygments-fc04caa3a2b6b495a301f59fed9379602063326c.tar.gz |
POV-Ray lexer provided by pi31 on the irc channel. Clsoes #348.
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 feb85860..4892571c 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -107,6 +107,7 @@ LEXERS = { 'OcamlLexer': ('pygments.lexers.functional', 'OCaml', ('ocaml',), ('*.ml', '*.mli', '*.mll', '*.mly'), ('text/x-ocaml',)), 'PerlLexer': ('pygments.lexers.agile', 'Perl', ('perl', 'pl'), ('*.pl', '*.pm'), ('text/x-perl', 'application/x-perl')), 'PhpLexer': ('pygments.lexers.web', 'PHP', ('php', 'php3', 'php4', 'php5'), ('*.php', '*.php[345]'), ('text/x-php',)), + 'PovrayLexer': ('pygments.lexers.other', 'POVRay', ('pov',), ('*.pov', '*.inc'), ('text/x-povray',)), 'Python3Lexer': ('pygments.lexers.agile', 'Python 3', ('python3', 'py3'), (), ('text/x-python3', 'application/x-python3')), 'PythonConsoleLexer': ('pygments.lexers.agile', 'Python console session', ('pycon',), (), ('text/x-python-doctest',)), 'PythonLexer': ('pygments.lexers.agile', 'Python', ('python', 'py'), ('*.py', '*.pyw', '*.sc', 'SConstruct', 'SConscript'), ('text/x-python', 'application/x-python')), |