Lines Matching full:markdown
7 An extension to Python-Markdown that adds footnote syntax. This extension has
8 been included with Python-Markdown since 1.7 and should be available to anyone
9 who has a typical install of Python-Markdown.
14 Python-Markdown's Footnote syntax follows the generally accepted syntax of the
15 Markdown community at large and almost exactly matches [PHP Markdown Extra][]'s
19 [PHP Markdown Extra]: http://michelf.com/projects/php-markdown/extra/#footnotes
30 blockquotes and most any other markdown syntax. The additional line simply
47 markdown document (See how to configure this text below):
56 >>> html = markdown.markdown(text, ['footnotes'])
59 use any existing markdown syntax):
61 >>> html = markdown.markdown(text, ['footnotes(PLACE_MARKER=+++my marker+++)'])