diff options
Diffstat (limited to 'docs/extensions/smart_strong.txt')
-rw-r--r-- | docs/extensions/smart_strong.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/extensions/smart_strong.txt b/docs/extensions/smart_strong.txt index 06b9c9a..e2e5458 100644 --- a/docs/extensions/smart_strong.txt +++ b/docs/extensions/smart_strong.txt @@ -23,19 +23,19 @@ Example >>> import markdown >>> markdown.markdown('Text with double__underscore__words.', \ - extensions=['smart_strong']) + extensions=['markdown.extensions.smart_strong']) u'<p>Text with double__underscore__words.</p>' >>> markdown.markdown('__Strong__ still works.', \ - extensions=['smart_strong']) + extensions=['markdown.extensions.smart_strong']) u'<p><strong>Strong</strong> still works.</p>' >>> markdown.markdown('__this__works__too__.', \ - extensions=['smart_strong']) + extensions=['markdown.extensions.smart_strong']) u'<p><strong>this__works__too</strong>.</p>' Usage ----- -See [Extensions](index.html) for general extension usage, specify `smart_strong` +See [Extensions](index.html) for general extension usage, specify `markdown.extensions.smart_strong` as the name of the extension. This extension does not accept any special configuration options. |