add markdown parser

This commit is contained in:
Christophe Siraut 2017-10-30 18:28:04 +01:00
parent a34d8bad16
commit e841a30cf6
1 changed files with 6 additions and 2 deletions

View File

@ -34,11 +34,15 @@ extensions = []
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
source_parsers = {
'.md': 'recommonmark.parser.CommonMarkParser',
}
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'
source_suffix = ['.rst', '.md']
# source_suffix = '.rst'
# The encoding of source files.
#