diff options
author | gbrandl <devnull@localhost> | 2006-10-28 20:28:46 +0200 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2006-10-28 20:28:46 +0200 |
commit | d336a1d4c0375b2b7cf266b6073932e3abb0968d (patch) | |
tree | b4c055b55cd39905b97bf742bde988ca68cf9b71 /pygments/lexer.py | |
parent | 1612315c4b33db53324d6b1e0176b4a8c3f129ca (diff) | |
download | pygments-d336a1d4c0375b2b7cf266b6073932e3abb0968d.tar.gz |
[svn] Add mime type selection for lexers.
Diffstat (limited to 'pygments/lexer.py')
-rw-r--r-- | pygments/lexer.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pygments/lexer.py b/pygments/lexer.py index 55a74e19..e5264888 100644 --- a/pygments/lexer.py +++ b/pygments/lexer.py @@ -68,6 +68,9 @@ class Lexer(object): #: fn alias filenames alias_filenames = [] + #: mime types + mimetypes = [] + __metaclass__ = LexerMeta def __init__(self, **options): |