diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2018-07-27 14:34:56 -0400 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2018-07-27 14:43:09 -0400 |
commit | 0081cb8519ebda441b129462e8eb6c0f6c7d30a4 (patch) | |
tree | c445ae13ad49aeff3634ffc42b17958e57d966ca /tests/test_extensions.py | |
parent | 25482261a494ad12c108435580ed13927bdc417c (diff) | |
download | markdown-0081cb8519ebda441b129462e8eb6c0f6c7d30a4.tar.gz markdown-0081cb8519ebda441b129462e8eb6c0f6c7d30a4.tar.bz2 markdown-0081cb8519ebda441b129462e8eb6c0f6c7d30a4.zip |
Consistent copyright headers.
Fixes #435.
Diffstat (limited to 'tests/test_extensions.py')
-rw-r--r-- | tests/test_extensions.py | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/tests/test_extensions.py b/tests/test_extensions.py index 7e2dad1..532ed6f 100644 --- a/tests/test_extensions.py +++ b/tests/test_extensions.py @@ -1,10 +1,29 @@ +# -*- coding: utf-8 -*- """ +Python Markdown + +A Python implementation of John Gruber's Markdown. + +Documentation: https://python-markdown.github.io/ +GitHub: https://github.com/Python-Markdown/markdown/ +PyPI: https://pypi.org/project/Markdown/ + +Started by Manfred Stienstra (http://www.dwerg.net/). +Maintained for a few years by Yuri Takhteyev (http://www.freewisdom.org). +Currently maintained by Waylan Limberg (https://github.com/waylan), +Dmitry Shachnev (https://github.com/mitya57) and Isaac Muse (https://github.com/facelessuser). + +Copyright 2007-2018 The Python Markdown Project (v. 1.7 and later) +Copyright 2004, 2005, 2006 Yuri Takhteyev (v. 0.2-1.6b) +Copyright 2004 Manfred Stienstra (the original version) + +License: BSD (see LICENSE.md for details). + Python-Markdown Extension Regression Tests ========================================== A collection of regression tests to confirm that the included extensions continue to work as advertised. This used to be accomplished by doctests. - """ from __future__ import unicode_literals |