aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2008-08-05 12:48:55 -0400
committerWaylan Limberg <waylan@gmail.com>2008-08-05 12:48:55 -0400
commit7f75d6380955f7c75b77914a41893fa99eed4348 (patch)
tree3f1f36a5fbb43820513c17b999022efce3e43bab /scripts
parent5cee3a1f7b74029b3b77b2c48f757b4afd49bd1f (diff)
downloadmarkdown-7f75d6380955f7c75b77914a41893fa99eed4348.tar.gz
markdown-7f75d6380955f7c75b77914a41893fa99eed4348.tar.bz2
markdown-7f75d6380955f7c75b77914a41893fa99eed4348.zip
Added commandline script and updated CHANGE_LOG and MANIFEST.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/pymarkdown.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/scripts/pymarkdown.py b/scripts/pymarkdown.py
new file mode 100755
index 0000000..478248e
--- /dev/null
+++ b/scripts/pymarkdown.py
@@ -0,0 +1,27 @@
+#!/usr/bin/env python
+"""
+Python-Markdown Command Line Script
+===================================
+
+See <http://www.freewisdom.org/projects/python-markdown/> for more
+information and instructions on how to extend the functionality of the
+script.
+
+Started by [Manfred Stienstra](http://www.dwerg.net/). Continued and
+maintained by [Yuri Takhteyev](http://www.freewisdom.org) and [Waylan
+Limberg](http://achinghead.com/).
+
+Contact:
+
+* <yuri@freewisdom.org>
+* <waylan@gmail.com>
+
+License: [GPL 2](http://www.gnu.org/copyleft/gpl.html) or BSD
+"""
+
+import markdown, sys
+
+if __name__ == '__main__':
+ """ Run Markdown from the command line. """
+
+ markdown.main() \ No newline at end of file