• Home
  • Raw
  • Download

Lines Matching full:extensions

1 title: Extensions
3 # Extensions chapter
9 To use an extension, pass it to markdown with the `extensions` keyword.
12 markdown.markdown(some_text, extensions=[MyExtClass(), 'myext', 'path.to.my.ext:MyExtClass'])
15 See the [Library Reference](../reference.md#extensions) for more details.
26 If you would like to write your own extensions, see the
29 Officially Supported Extensions
32 The extensions listed below are included with (at least) the most recent release
35 have a typical install of Python-Markdown, these extensions are already
40 [Extra] | `extra` | `markdown.extensions.extra`
41     [Abbreviations] | `abbr` | `markdown.extensions.abbr`
42     [Attribute Lists] | `attr_list` | `markdown.extensions.attr_list`
43     [Definition Lists] | `def_list` | `markdown.extensions.def_list`
44     [Fenced Code Blocks] | `fenced_code` | `markdown.extensions.fenced_code`
45     [Footnotes] | `footnotes` | `markdown.extensions.footnotes`
46     [Markdown in HTML] | `md_in_html` | `markdown.extensions.md_in_html`
47     [Tables] | `tables` | `markdown.extensions.tables`
48 [Admonition] | `admonition` | `markdown.extensions.admonition`
49 [CodeHilite] | `codehilite` | `markdown.extensions.codehilite`
50 [Legacy Attributes] | `legacy_attrs` | `markdown.extensions.legacy_attrs`
51 [Legacy Emphasis] | `legacy_em` | `markdown.extensions.legacy_em`
52 [Meta-Data] | `meta` | `markdown.extensions.meta`
53 [New Line to Break] | `nl2br` | `markdown.extensions.nl2br`
54 [Sane Lists] | `sane_lists` | `markdown.extensions.sane_lists`
55 [SmartyPants] | `smarty` | `markdown.extensions.smarty`
56 [Table of Contents] | `toc` | `markdown.extensions.toc`
57 [WikiLinks] | `wikilinks` | `markdown.extensions.wikilinks`
78 Third Party Extensions
81 Various individuals and/or organizations have developed extensions which they
82 have made available to the public. A [list of third party extensions][list]
84 offers no official support for these extensions. Please see the developer of
87 [list]: https://github.com/Python-Markdown/markdown/wiki/Third-Party-Extensions