aboutsummaryrefslogtreecommitdiffstats
path: root/docs/extensions/smart_strong.md
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2018-08-02 14:51:16 -0400
committerWaylan Limberg <waylan.limberg@icloud.com>2018-08-03 19:18:34 -0400
commit833574a9da27874614f7184f85f7993a539f3df1 (patch)
tree0870c17b8cb5deedee5dbd13f02469d2cc92c455 /docs/extensions/smart_strong.md
parent1e7fd3f236f63f9ca9b85de9cd172b77e7f9be80 (diff)
downloadmarkdown-833574a9da27874614f7184f85f7993a539f3df1.tar.gz
markdown-833574a9da27874614f7184f85f7993a539f3df1.tar.bz2
markdown-833574a9da27874614f7184f85f7993a539f3df1.zip
Update 3.0 release notes
And other docs cleanup.
Diffstat (limited to 'docs/extensions/smart_strong.md')
-rw-r--r--docs/extensions/smart_strong.md36
1 files changed, 0 insertions, 36 deletions
diff --git a/docs/extensions/smart_strong.md b/docs/extensions/smart_strong.md
deleted file mode 100644
index 65c88d6..0000000
--- a/docs/extensions/smart_strong.md
+++ /dev/null
@@ -1,36 +0,0 @@
-title: Smart Strong Extension
-
-Smart_Strong
-============
-
-Summary
--------
-
-The Smart_Strong extension adds smarter handling of double underscores within
-words. This does for double underscores what [smart_emphasis][] does for single
-underscores.
-
-The Smart_Strong extension is included in the standard Markdown library.
-
-[smart_emphasis]: ../reference.md#smart_emphasis
-
-Example
--------
-
-```pycon
->>> import markdown
->>> 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'])
-u'<p><strong>Strong</strong> still works.</p>'
->>> markdown.markdown('__this__works__too__.', extensions=['smart_strong'])
-u'<p><strong>this__works__too</strong>.</p>'
-```
-
-Usage
------
-
-See [Extensions](index.md) for general extension usage. Use `smart_strong` as
-the name of the extension.
-
-This extension does not accept any special configuration options.