1
0
Fork 0
forked from github/pelican

Merge pull request #253 from danawoodman/patch-1

`MD_EXTENSIONS` should be a list not a tuple.
This commit is contained in:
Alexis Metaireau 2012-03-15 14:12:23 -07:00
commit 5890ae7bcd

View file

@ -46,7 +46,7 @@ Setting name (default value) What does it do?
`MARKUP` (``('rst', 'md')``) A list of available markup languages you want
to use. For the moment, the only available values
are `rst` and `md`.
`MD_EXTENSIONS` (``('codehilite','extra')``) A list of the extensions that the Markdown processor
`MD_EXTENSIONS` (``['codehilite','extra']``) A list of the extensions that the Markdown processor
will use. Refer to the extensions chapter in the
Python-Markdown documentation for a complete list of
supported extensions.