From 0081cb8519ebda441b129462e8eb6c0f6c7d30a4 Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Fri, 27 Jul 2018 14:34:56 -0400 Subject: Consistent copyright headers. Fixes #435. --- markdown/blockparser.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'markdown/blockparser.py') diff --git a/markdown/blockparser.py b/markdown/blockparser.py index ccf66a0..667d683 100644 --- a/markdown/blockparser.py +++ b/markdown/blockparser.py @@ -1,3 +1,25 @@ +# -*- 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). +""" + from __future__ import unicode_literals from __future__ import absolute_import from . import util -- cgit v1.2.3