From 872f49b4a8e71d3e0fbaea972d964ae466eaeafe Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Sun, 24 Jul 2011 15:39:19 -0400 Subject: Fix syntax error in doctests which tripped up the 2to3 tool. --- markdown/extensions/smart_strong.py | 12 ++++++------ 1 file 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'

Text with double__underscore__words.

' - >>> markdown.markdown('__Strong__ still works.', \ - extensions=['smart_strong']) + >>> markdown.markdown('__Strong__ still works.', + ... extensions=['smart_strong']) u'

Strong still works.

' - >>> markdown.markdown('__this__works__too__.', \ - extensions=['smart_strong']) + >>> markdown.markdown('__this__works__too__.', + ... extensions=['smart_strong']) u'

this__works__too.

' Copyright 2011 -- cgit v1.2.3