aboutsummaryrefslogtreecommitdiffstats
path: root/docs/extensions/toc.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/extensions/toc.md')
-rw-r--r--docs/extensions/toc.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/extensions/toc.md b/docs/extensions/toc.md
index a1c583f..e358132 100644
--- a/docs/extensions/toc.md
+++ b/docs/extensions/toc.md
@@ -65,7 +65,7 @@ This allows one to insert the Table of Contents elsewhere in their page
template. For example:
```pycon
->>> md = markdown.Markdown(extensions=['markdown.extensions.toc'])
+>>> md = markdown.Markdown(extensions=['toc'])
>>> html = md.convert(text)
>>> page = render_some_template(context={'body': html, 'toc': md.toc})
```
@@ -73,8 +73,8 @@ template. For example:
Usage
-----
-See [Extensions](index.md) for general extension usage, specify `markdown.extensions.toc`
-as the name of the extension.
+See [Extensions](index.md) for general extension usage. Use `toc` as the name
+of the extension.
See the [Library Reference](../reference.md#extensions) for information about
configuring extensions.