aboutsummaryrefslogtreecommitdiffstats
path: root/markdown.py
diff options
context:
space:
mode:
Diffstat (limited to 'markdown.py')
-rw-r--r--markdown.py2
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