diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2014-08-29 10:57:18 -0400 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2014-08-29 10:57:18 -0400 |
commit | c27cbd154050c1181eac195a4b0bb19a6bbaf048 (patch) | |
tree | b933195724feff404499dd07f39cd51fa6c17af7 /docs/extensions/index.txt | |
parent | b1643eb058f44a05523b118632c7b8181b2ffbe7 (diff) | |
download | markdown-c27cbd154050c1181eac195a4b0bb19a6bbaf048.tar.gz markdown-c27cbd154050c1181eac195a4b0bb19a6bbaf048.tar.bz2 markdown-c27cbd154050c1181eac195a4b0bb19a6bbaf048.zip |
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.
Diffstat (limited to 'docs/extensions/index.txt')
-rw-r--r-- | docs/extensions/index.txt | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/docs/extensions/index.txt b/docs/extensions/index.txt index d6d41df..1052d15 100644 --- a/docs/extensions/index.txt +++ b/docs/extensions/index.txt @@ -14,13 +14,13 @@ actual source files. To use an extension, pass it to markdown with the `extensions` keyword. - markdown.markdown(some_text, extensions=[MyExtension(), 'path.to.my.ext', 'footnotes']) + markdown.markdown(some_text, extensions=[MyExtension(), 'path.to.my.ext', 'markdown.extensions.footnotes']) See the [Library Reference](../reference.html#extensions) for more details. From the command line, specify an extension with the `-x` option. - $ python -m markdown -x footnotes -x tables input.txt > output.html + $ python -m markdown -x markdown.extensions.footnotes -x markdown.extensions.tables input.txt > output.html See the [Command Line docs](../cli.html) or use the `--help` option for more details. @@ -39,23 +39,23 @@ available to you using the "name" listed in the second column below. Extension | "Name" ------------------------------------ | --------------- -[Extra] | `extra` - [Abbreviations][] | `abbr` - [Attribute Lists][] | `attr_list` - [Definition Lists][] | `def_list` - [Fenced Code Blocks][] | `fenced_code` - [Footnotes][] | `footnotes` - [Tables][] | `tables` - [Smart Strong][] | `smart_strong` -[Admonition][] | `admonition` -[CodeHilite][] | `codehilite` -[HeaderId] | `headerid` -[Meta-Data] | `meta` -[New Line to Break] | `nl2br` -[Sane Lists] | `sane_lists` -[SmartyPants] | `smarty` -[Table of Contents] | `toc` -[WikiLinks] | `wikilinks` +[Extra] | `markdown.extensions.extra` + [Abbreviations][] | `markdown.extensions.abbr` + [Attribute Lists][] | `markdown.extensions.attr_list` + [Definition Lists][] | `markdown.extensions.def_list` + [Fenced Code Blocks][] | `markdown.extensions.fenced_code` + [Footnotes][] | `markdown.extensions.footnotes` + [Tables][] | `markdown.extensions.tables` + [Smart Strong][] | `markdown.extensions.smart_strong` +[Admonition][] | `markdown.extensions.admonition` +[CodeHilite][] | `markdown.extensions.codehilite` +[HeaderId] | `markdown.extensions.headerid` +[Meta-Data] | `markdown.extensions.meta` +[New Line to Break] | `markdown.extensions.nl2br` +[Sane Lists] | `markdown.extensions.sane_lists` +[SmartyPants] | `markdown.extensions.smarty` +[Table of Contents] | `markdown.extensions.toc` +[WikiLinks] | `markdown.extensions.wikilinks` [Extra]: extra.html [Abbreviations]: abbreviations.html |