diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-09 14:39:19 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-09 14:39:19 +0300 |
commit | c04b663c7bb4b750deeb8f48f620497ec13da8fa (patch) | |
tree | 151ebc8bfdd2ad918caf5e6e2d8013e14272ddf8 /contrib/python/Pygments/py3/pygments/lexers/textfmts.py | |
parent | 0d55ca22c507d18c2f35718687e0b06d9915397b (diff) | |
download | ydb-c04b663c7bb4b750deeb8f48f620497ec13da8fa.tar.gz |
intermediate changes
ref:2d4f292087954c9344efdabb7b2a67f466263c65
Diffstat (limited to 'contrib/python/Pygments/py3/pygments/lexers/textfmts.py')
-rw-r--r-- | contrib/python/Pygments/py3/pygments/lexers/textfmts.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/contrib/python/Pygments/py3/pygments/lexers/textfmts.py b/contrib/python/Pygments/py3/pygments/lexers/textfmts.py index 62d300a5b5..e67410ac91 100644 --- a/contrib/python/Pygments/py3/pygments/lexers/textfmts.py +++ b/contrib/python/Pygments/py3/pygments/lexers/textfmts.py @@ -4,7 +4,7 @@ Lexers for various text formats. - :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS. + :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ @@ -200,12 +200,13 @@ class HttpLexer(RegexLexer): class TodotxtLexer(RegexLexer): """ - Lexer for `Todo.txt <http://todotxt.com/>`_ todo list format. + Lexer for Todo.txt todo list format. .. versionadded:: 2.0 """ name = 'Todotxt' + url = 'http://todotxt.com/' aliases = ['todotxt'] # *.todotxt is not a standard extension for Todo.txt files; including it # makes testing easier, and also makes autodetecting file type easier. @@ -300,7 +301,7 @@ class TodotxtLexer(RegexLexer): class NotmuchLexer(RegexLexer): """ - For `Notmuch <https://notmuchmail.org/>`_ email text format. + For Notmuch email text format. .. versionadded:: 2.5 @@ -312,6 +313,7 @@ class NotmuchLexer(RegexLexer): """ name = 'Notmuch' + url = 'https://notmuchmail.org/' aliases = ['notmuch'] def _highlight_code(self, match): |