diff options
author | ilezhankin <ilezhankin@yandex-team.ru> | 2022-02-10 16:45:55 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:55 +0300 |
commit | 1d125034f06575234f83f24f08677955133f140e (patch) | |
tree | ec05fbbd61dc118d5de37f206ab978cff58774bd /contrib/python/Pygments/py2/pygments/styles/igor.py | |
parent | 3a7a498715ef1b66f5054455421b845e45e3a653 (diff) | |
download | ydb-1d125034f06575234f83f24f08677955133f140e.tar.gz |
Restoring authorship annotation for <ilezhankin@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/python/Pygments/py2/pygments/styles/igor.py')
-rw-r--r-- | contrib/python/Pygments/py2/pygments/styles/igor.py | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/contrib/python/Pygments/py2/pygments/styles/igor.py b/contrib/python/Pygments/py2/pygments/styles/igor.py index 70ee38bceb..de283a11b6 100644 --- a/contrib/python/Pygments/py2/pygments/styles/igor.py +++ b/contrib/python/Pygments/py2/pygments/styles/igor.py @@ -1,29 +1,29 @@ -# -*- coding: utf-8 -*- -""" - pygments.styles.igor - ~~~~~~~~~~~~~~~~~~~~ - - Igor Pro default style. - +# -*- coding: utf-8 -*- +""" + pygments.styles.igor + ~~~~~~~~~~~~~~~~~~~~ + + Igor Pro default style. + :copyright: Copyright 2006-2019 by the Pygments team, see AUTHORS. - :license: BSD, see LICENSE for details. -""" - -from pygments.style import Style -from pygments.token import Keyword, Name, Comment, String - - -class IgorStyle(Style): - """ - Pygments version of the official colors for Igor Pro procedures. - """ - default_style = "" - - styles = { - Comment: 'italic #FF0000', - Keyword: '#0000FF', - Name.Function: '#C34E00', - Name.Decorator: '#CC00A3', - Name.Class: '#007575', - String: '#009C00' - } + :license: BSD, see LICENSE for details. +""" + +from pygments.style import Style +from pygments.token import Keyword, Name, Comment, String + + +class IgorStyle(Style): + """ + Pygments version of the official colors for Igor Pro procedures. + """ + default_style = "" + + styles = { + Comment: 'italic #FF0000', + Keyword: '#0000FF', + Name.Function: '#C34E00', + Name.Decorator: '#CC00A3', + Name.Class: '#007575', + String: '#009C00' + } |