hgext/highlight/__init__.py
changeset 8251 7fc30044b514
parent 7216 292fb2ad2846
child 8666 88edf62870f4
equal deleted inserted replaced
8250:1b60efdb8bc5 8251:7fc30044b514
       
     1 # highlight - syntax highlighting in hgweb, based on Pygments
       
     2 #
       
     3 #  Copyright 2008, 2009 Patrick Mezard <pmezard@gmail.com> and others
       
     4 #
       
     5 # This software may be used and distributed according to the terms of the
       
     6 # GNU General Public License version 2, incorporated herein by reference.
       
     7 #
       
     8 # The original module was split in an interface and an implementation
       
     9 # file to defer pygments loading and speedup extension setup.
       
    10 
     1 """syntax highlighting in hgweb, based on Pygments
    11 """syntax highlighting in hgweb, based on Pygments
     2 
    12 
     3 It depends on the pygments syntax highlighting library:
    13 It depends on the pygments syntax highlighting library:
     4 http://pygments.org/
    14 http://pygments.org/
     5 
    15