aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--markdown/extensions/smart_strong.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/markdown/extensions/smart_strong.py b/markdown/extensions/smart_strong.py
index 0be40ed..4f112d6 100644
--- a/markdown/extensions/smart_strong.py
+++ b/markdown/extensions/smart_strong.py
@@ -7,14 +7,14 @@ This extention adds smarter handling of double underscores within words.
Simple Usage:
>>> import markdown
- >>> markdown.markdown('Text with double__underscore__words.', \
- extensions=['smart_strong'])
+ >>> markdown.markdown('Text with double__underscore__words.',
+ ... extensions=['smart_strong'])
u'<p>Text with double__underscore__words.</p>'
- >>> markdown.markdown('__Strong__ still works.', \
- extensions=['smart_strong'])
+ >>> markdown.markdown('__Strong__ still works.',
+ ... extensions=['smart_strong'])
u'<p><strong>Strong</strong> still works.</p>'
- >>> markdown.markdown('__this__works__too__.', \
- extensions=['smart_strong'])
+ >>> markdown.markdown('__this__works__too__.',
+ ... extensions=['smart_strong'])
u'<p><strong>this__works__too</strong>.</p>'
Copyright 2011