From c27cbd154050c1181eac195a4b0bb19a6bbaf048 Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Fri, 29 Aug 2014 10:57:18 -0400 Subject: 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. --- docs/extensions/toc.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/extensions/toc.txt') diff --git a/docs/extensions/toc.txt b/docs/extensions/toc.txt index 4d2d3c0..7b5d119 100644 --- a/docs/extensions/toc.txt +++ b/docs/extensions/toc.txt @@ -44,7 +44,7 @@ would generate the following output: Usage ----- -See [Extensions](index.html) for general extension usage, specify `toc` +See [Extensions](index.html) for general extension usage, specify `markdown.extensions.toc` as the name of the extension. See the [Library Reference](../reference.html#extensions) for information about @@ -65,7 +65,7 @@ The following options are provided to configure the output: ## Header 2 ''' - >>> md = markdown.Markdown(extensions=['toc']) + >>> md = markdown.Markdown(extensions=['markdown.extensions.toc']) >>> html = md.convert(text) >>> render_some_template(context={'body': html, 'toc': md.toc}) -- cgit v1.2.3