diff options
author | Yuri Takhteyev <yuri@freewisdom.org> | 2008-11-18 01:16:55 -0800 |
---|---|---|
committer | Yuri Takhteyev <yuri@freewisdom.org> | 2008-11-18 01:16:55 -0800 |
commit | 60ef37b47b99fc51683a51640ba98f2d5a25a427 (patch) | |
tree | 0c4fcd0cf41a770046896840f168896d1415f786 /markdown.py | |
parent | 159a274a977c496434dbc484a1b253663cde4eed (diff) | |
download | markdown-60ef37b47b99fc51683a51640ba98f2d5a25a427.tar.gz markdown-60ef37b47b99fc51683a51640ba98f2d5a25a427.tar.bz2 markdown-60ef37b47b99fc51683a51640ba98f2d5a25a427.zip |
More refactoring.
Diffstat (limited to 'markdown.py')
-rw-r--r-- | markdown.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/markdown.py b/markdown.py index 7cba3a8..36e4e8c 100644 --- a/markdown.py +++ b/markdown.py @@ -1,4 +1,33 @@ #!/usr/bin/env python +""" +Python Markdown, the Command Line Script +======================================== + +This is the command line script for Python Markdown. + +Basic use from the command line: + + python markdown.py source.txt > destination.html + +Run "python markdown.py --help" to see more options. + +See markdown/__init__.py for information on using Python Markdown as a module. + +## Authors and License + +Started by [Manfred Stienstra](http://www.dwerg.net/). Continued and +maintained by [Yuri Takhteyev](http://www.freewisdom.org), [Waylan +Limberg](http://achinghead.com/) and [Artem Yunusov](http://blog.splyer.com). + +Contact: markdown@freewisdom.org + +Copyright 2007, 2008 The Python Markdown Project (v. 1.7 and later) +Copyright 200? Django Software Foundation (OrderedDict implementation) +Copyright 2004, 2005, 2006 Yuri Takhteyev (v. 0.2-1.6b) +Copyright 2004 Manfred Stienstra (the original version) + +License: BSD (see docs/LICENSE for details). +""" from markdown import commandline |