|
@@ -47,6 +47,7 @@ extensions = [
|
|
'sphinx.ext.ifconfig',
|
|
'sphinx.ext.ifconfig',
|
|
'sphinx.ext.viewcode',
|
|
'sphinx.ext.viewcode',
|
|
'sphinx.ext.githubpages',
|
|
'sphinx.ext.githubpages',
|
|
|
|
+ 'recommonmark'
|
|
]
|
|
]
|
|
|
|
|
|
# Add any paths that contain templates here, relative to this directory.
|
|
# Add any paths that contain templates here, relative to this directory.
|
|
@@ -56,7 +57,10 @@ templates_path = ['_templates']
|
|
# You can specify multiple suffix as a list of string:
|
|
# You can specify multiple suffix as a list of string:
|
|
#
|
|
#
|
|
# source_suffix = ['.rst', '.md']
|
|
# source_suffix = ['.rst', '.md']
|
|
-source_suffix = '.md'
|
|
|
|
|
|
+source_suffix = {
|
|
|
|
+ '.rst': 'restructuredtext',
|
|
|
|
+ '.md': 'markdown',
|
|
|
|
+}
|
|
|
|
|
|
# The master toctree document.
|
|
# The master toctree document.
|
|
master_doc = 'index'
|
|
master_doc = 'index'
|