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/meta_data.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/extensions/meta_data.txt') diff --git a/docs/extensions/meta_data.txt b/docs/extensions/meta_data.txt index 7ac24e2..406755b 100644 --- a/docs/extensions/meta_data.txt +++ b/docs/extensions/meta_data.txt @@ -51,7 +51,7 @@ document prior to any further processing by Markdown. Usage ----- -See [Extensions](index.html) for general extension usage, specify `meta` +See [Extensions](index.html) for general extension usage, specify `markdown.extensions.meta` as the name of the extension. This extension does not accept any special configuration options. @@ -62,7 +62,7 @@ Accessing the Meta-Data The meta-data is made available as a python Dict in the `Meta` attribute of an instance of the Markdown class. For example, using the above document: - >>> md = markdown.Markdown(extensions = ['meta']) + >>> md = markdown.Markdown(extensions = ['markdown.extensions.meta']) >>> html = md.convert(text) >>> # Meta-data has been stripped from output >>> print html -- cgit v1.2.3