﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
2910	[patch] Add extension support to Markdown filter	waylan@…	Waylan Limberg	"Starting with [http://www.freewisdom.org/projects/python-markdown/ Markdown] 1.6 (released Oct 12, 2006) including extentions has become much easier. It would be nice to easily utilize that functionality in Django. Therefore, I propose that [http://achinghead.com/archives/70/django-blog-and-markdown/ my suggestion], which Yuri [http://www.freewisdom.org/projects/python-markdown/index.php#Django expounded upon], be included in the markup contrib app. (Note that I am leaving out the use of `escape` and `linebreaks` on `import` failure here - that is another issue for another ticket)

'''Usage:'''

* Load extensions by listing them in quotes separated by comas:

    {{{
    {{ post.body|markdown:""imagelinks,footnotes"" }}
    }}}

* To disable HTML, include ""safe"" as the first argument:

    {{{
    {{ post.body|markdown:""safe"" }}
    }}}

* For no extensions (backword compatible) just do the same as before:

    {{{
    {{ post.body|markdown }}
    }}}
"	enhancement	closed	Contrib apps	dev	normal	fixed	markup markdown	waylan@… gajon@…	Ready for checkin	1	0	0	0	0	0
