You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 18, 2024. It is now read-only.
Except were "short names" are explained in the docs, all references
to the buitlin extensions now use `markdown.extensions.*` in
anticipation of Python-Markdown#336.
Copy file name to clipboardExpand all lines: docs/extensions/extra.txt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ Usage
32
32
From the Python interpreter:
33
33
34
34
>>> import markdown
35
-
>>> html = markdown.markdown(text, ['extra'])
35
+
>>> html = markdown.markdown(text, ['markdown.extensions.extra'])
36
36
37
37
There may be [additional extensions](index.html) that are distributed with
38
38
Python-Markdown that are not included here in Extra. The features
@@ -45,7 +45,7 @@ your own clone of Extra under a different name
45
45
Markdown Inside HTML Blocks
46
46
---------------------------
47
47
48
-
Unlike the other Extra features, this feature is built into the markdown core and is turned on when `extra` is enabled.
48
+
Unlike the other Extra features, this feature is built into the markdown core and is turned on when `markdown.extensions.extra` is enabled.
49
49
50
50
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.
0 commit comments