aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/__main__.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #79. stdout now works from windows command line on Python 3.Waylan Limberg2012-02-131-1/+1
| | | | stdout is used later based on output being None. Don't try to get a jump on that.
* Fixed #61. stdin and stdout should work better in python 3.Waylan Limberg2011-12-281-1/+1
| | | | | Apparently, in Python3 stdin and stdout take str (unicode) not bytes. This provides a solution that will work in both python 2 & 3.
* Added support for python's '-m' command line option. Do 'python -m markdown ↵Waylan Limberg2011-08-031-0/+87
[options] [args]'. I suspect will drop the command line script (markdown_py) when we drop support for Python 2.4 as this is easier to support.