diff options
author | Jakub Klinkovský <j.l.k@gmx.com> | 2014-02-15 19:49:34 +0100 |
---|---|---|
committer | Jakub Klinkovský <j.l.k@gmx.com> | 2014-02-15 19:49:34 +0100 |
commit | c030fb27166712f32971ecbeaa56f1c3e4c821f8 (patch) | |
tree | 0a8de67b4be946182c9d288ec79220aed0d4b1c8 /docs/extensions | |
parent | 587227a7d8751f4796196a18b7614612e4136da9 (diff) | |
download | markdown-c030fb27166712f32971ecbeaa56f1c3e4c821f8.tar.gz markdown-c030fb27166712f32971ecbeaa56f1c3e4c821f8.tar.bz2 markdown-c030fb27166712f32971ecbeaa56f1c3e4c821f8.zip |
docs: update sane_lists documentation
Diffstat (limited to 'docs/extensions')
-rw-r--r-- | docs/extensions/sane_lists.txt | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/docs/extensions/sane_lists.txt b/docs/extensions/sane_lists.txt index 7e67e1f..13fa9fe 100644 --- a/docs/extensions/sane_lists.txt +++ b/docs/extensions/sane_lists.txt @@ -10,7 +10,7 @@ Sane Lists Summary ------- -The Sane Lists Extension alters the behavior of the Markdown List syntax +The Sane Lists extension alters the behavior of the Markdown List syntax to be less surprising. This extension is included in the standard Markdown library. @@ -67,15 +67,7 @@ In all other ways, Sane Lists should behave as normal Markdown lists. Usage ----- -From the Python interpreter: +See [Extensions](index.html) for general extension usage, specify `sane_lists` +as the name of the extension. - >>> html = markdown.markdown(text, ['sane_lists']) - -To use with other extensions, just add them to the list, like this: - - >>> html = markdown.markdown(text, ['def_list', 'sane_lists']) - -The extension can also be called from the command line using Markdown's `-x` -parameter: - - python -m markdown -x sane_lists source.txt > output.html +This extension does not accept any special configuration options. |