#!/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()