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/extra.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/extensions/extra.txt') diff --git a/docs/extensions/extra.txt b/docs/extensions/extra.txt index ace801b..bf4d12f 100644 --- a/docs/extensions/extra.txt +++ b/docs/extensions/extra.txt @@ -32,7 +32,7 @@ Usage From the Python interpreter: >>> import markdown - >>> html = markdown.markdown(text, ['extra']) + >>> html = markdown.markdown(text, ['markdown.extensions.extra']) There may be [additional extensions](index.html) that are distributed with Python-Markdown that are not included here in Extra. The features @@ -45,7 +45,7 @@ your own clone of Extra under a different name Markdown Inside HTML Blocks --------------------------- -Unlike the other Extra features, this feature is built into the markdown core and is turned on when `extra` is enabled. +Unlike the other Extra features, this feature is built into the markdown core and is turned on when `markdown.extensions.extra` is enabled. The content of any raw html block element can be Markdown-formatted simply by adding a `markdown` attribute to the opening tag. The markdown attribute will be stripped from the output, but all other attributes will be preserved. -- cgit v1.2.3