Home | History | Annotate | Download | only in extensions

Lines Matching full:markdown

4 This section adds footnote handling to markdown.  It can be used as
5 an example for extending python-markdown with relatively complex
8 module. Not that all markdown classes above are ignorant about
10 then added to the markdown instance at the run time.
26 import re, markdown
27 from markdown import etree
34 class FootnoteExtension(markdown.Extension):
56 """ Add pieces to Markdown. """
77 self.footnotes = markdown.odict.OrderedDict()
147 class FootnotePreprocessor(markdown.preprocessors.Preprocessor):
255 class FootnotePattern(markdown.inlinepatterns.Pattern):
259 markdown.inlinepatterns.Pattern.__init__(self, pattern)
273 class FootnoteTreeprocessor(markdown.treeprocessors.Treeprocessor):
297 class FootnotePostprocessor(markdown.postprocessors.Postprocessor):