From c27cbd154050c1181eac195a4b0bb19a6bbaf048 Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Fri, 29 Aug 2014 10:57:18 -0400 Subject: Docs now use dot notation for all extensions. Except were "short names" are explained in the docs, all references to the buitlin extensions now use `markdown.extensions.*` in anticipation of #336. --- docs/extensions/smart_strong.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/extensions/smart_strong.txt') 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'

Text with double__underscore__words.

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

Strong still works.

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

this__works__too.

' 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. -- cgit v1.2.3