aboutsummaryrefslogtreecommitdiffstats
path: root/docs/extensions/index.txt
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2014-08-29 10:57:18 -0400
committerWaylan Limberg <waylan.limberg@icloud.com>2014-08-29 10:57:18 -0400
commitc27cbd154050c1181eac195a4b0bb19a6bbaf048 (patch)
treeb933195724feff404499dd07f39cd51fa6c17af7 /docs/extensions/index.txt
parentb1643eb058f44a05523b118632c7b8181b2ffbe7 (diff)
downloadmarkdown-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.txt38
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`
-&nbsp; &nbsp; [Abbreviations][] | `abbr`
-&nbsp; &nbsp; [Attribute Lists][] | `attr_list`
-&nbsp; &nbsp; [Definition Lists][] | `def_list`
-&nbsp; &nbsp; [Fenced Code Blocks][] | `fenced_code`
-&nbsp; &nbsp; [Footnotes][] | `footnotes`
-&nbsp; &nbsp; [Tables][] | `tables`
-&nbsp; &nbsp; [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`
+&nbsp; &nbsp; [Abbreviations][] | `markdown.extensions.abbr`
+&nbsp; &nbsp; [Attribute Lists][] | `markdown.extensions.attr_list`
+&nbsp; &nbsp; [Definition Lists][] | `markdown.extensions.def_list`
+&nbsp; &nbsp; [Fenced Code Blocks][] | `markdown.extensions.fenced_code`
+&nbsp; &nbsp; [Footnotes][] | `markdown.extensions.footnotes`
+&nbsp; &nbsp; [Tables][] | `markdown.extensions.tables`
+&nbsp; &nbsp; [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