﻿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
10146	Support for contrib/markdown extension_configs in settings.py	bdejong	nobody	"Markdown has support for ""extension configs"". For example: the ""wikilink"" extension normally turns {{{[[link]]}}} into {{{<a href=""/link/"" class=""wikilink"">link</a>}}}, but if you want to change the link class or the prefix of the URL you need to do this through configuration of the extension.

This patch allows you to add the configuration in the settings.py file as such:

{{{
MARKDOWN_EXTENSION_CONFIGS = {
    'wikilink': [
                ('base_url', '/help/'),
                ('end_url', ''),
                ('html_class', 'wikilink')
                ]
}
}}}

It's a very small patch but helps a lot when using markdown extensions. Almost all extensions have some form of configuration available."	New feature	closed	contrib.markup	dev	Normal	wontfix	markdown config extensions extension_configs		Accepted	1	0	1	0	0	0
