diff options
author | Jakub Klinkovský <j.l.k@gmx.com> | 2014-02-15 18:44:53 +0100 |
---|---|---|
committer | Jakub Klinkovský <j.l.k@gmx.com> | 2014-02-15 18:44:53 +0100 |
commit | 045ef787b7019343f22dfede01fedf38181ad662 (patch) | |
tree | 9173f0e3c232adef6139992afd683c0ba2ccb2a2 /docs/extensions/smart_strong.txt | |
parent | fefe904ca9175ab390a8a0868e810a41945cdd8f (diff) | |
download | markdown-045ef787b7019343f22dfede01fedf38181ad662.tar.gz markdown-045ef787b7019343f22dfede01fedf38181ad662.tar.bz2 markdown-045ef787b7019343f22dfede01fedf38181ad662.zip |
docs: improved documentation of the extra/ extensions
Simplified, unified style, added some undocumented options.
NOTE: Footnotes/UNIQUE_IDS stays mostly undocumented
Diffstat (limited to 'docs/extensions/smart_strong.txt')
-rw-r--r-- | docs/extensions/smart_strong.txt | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/docs/extensions/smart_strong.txt b/docs/extensions/smart_strong.txt index fd3bae6..aa34ed7 100644 --- a/docs/extensions/smart_strong.txt +++ b/docs/extensions/smart_strong.txt @@ -10,14 +10,16 @@ Smart_Strong Summary ------- -The Markdown Smart_Strong Extension adds smarter handling of double underscores -within words. This does for double underscores what -[smart_emphasis](../reference.html#smart_emphasis) does for single underscores. +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. -Usage ------ +[smart_emphasis]: ../reference.html#smart_emphasis + +Example +------- >>> import markdown >>> markdown.markdown('Text with double__underscore__words.', \ @@ -30,8 +32,10 @@ Usage extensions=['smart_strong']) u'<p><strong>this__works__too</strong>.</p>' -This extension is also included with the [Extra](extra.html) Extension. You may -call that extension to get this behavior with all the other features of 'Extra'. +Usage +----- - >>> markdown.markdown(text, extensions=['extra']) +See [Extensions](./index.html) for general extension usage, specify `smart_strong` +as the name of the extension. +This extension does not accept any special configuration options. |