diff options
Diffstat (limited to 'pygments/lexers/inferno.py')
-rw-r--r-- | pygments/lexers/inferno.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/pygments/lexers/inferno.py b/pygments/lexers/inferno.py index d99cd269..16a7014b 100644 --- a/pygments/lexers/inferno.py +++ b/pygments/lexers/inferno.py @@ -1,4 +1,3 @@ - # -*- coding: utf-8 -*- """ pygments.lexers.inferno @@ -21,10 +20,10 @@ from pygments.util import get_bool_opt __all__ = ['LimboLexer'] + class LimboLexer(RegexLexer): """ - Lexer for Limbo programming language - see (http://www.vitanuova.com/inferno/limbo.html) + Lexer for `Limbo programming language <http://www.vitanuova.com/inferno/limbo.html>`_ TODO: - maybe implement better var declaration highlighting @@ -97,4 +96,4 @@ class LimboLexer(RegexLexer): # - shell scripts # - maybe keyfiles and fonts # they all seem to be quite similar to their equivalents -# from unix world, so there should not be a lot of problems
\ No newline at end of file +# from unix world, so there should not be a lot of problems |