diff options
author | Waylan Limberg <waylan@gmail.com> | 2007-11-03 21:23:38 +0000 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2007-11-03 21:23:38 +0000 |
commit | 3d707bf4480c790bb824a97f57e7d7ab4c6b6c87 (patch) | |
tree | 5719fc02abac7fefe93c96198d4ecd98dd06a342 | |
parent | 5982780c3cc46f18dd3bd93022d61feb2972a843 (diff) | |
download | markdown-3d707bf4480c790bb824a97f57e7d7ab4c6b6c87.tar.gz markdown-3d707bf4480c790bb824a97f57e7d7ab4c6b6c87.tar.bz2 markdown-3d707bf4480c790bb824a97f57e7d7ab4c6b6c87.zip |
Fixed a typo in the docstring.
-rw-r--r-- | markdown.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown.py b/markdown.py index 116a974..f4e159c 100644 --- a/markdown.py +++ b/markdown.py @@ -12,7 +12,7 @@ Converts Markdown to HTML. Basic usage as a module: import markdown md = Markdown() - html = markdown.convert(your_text_string) + html = md.convert(your_text_string) See http://www.freewisdom.org/projects/python-markdown/ for more information and instructions on how to extend the functionality of the |