Remove .md support from website

This commit is contained in:
Michael Walker 2018-02-16 17:56:20 +00:00
parent 481bf1eca6
commit f0e9ffc652

View File

@ -21,7 +21,6 @@
# sys.path.insert(0, os.path.abspath('.'))
import os
from recommonmark.parser import CommonMarkParser
# -- General configuration ------------------------------------------------
@ -40,10 +39,9 @@ templates_path = ['_templates']
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
source_parsers = {
'.md': CommonMarkParser,
}
source_suffix = ['.rst', '.md']
source_suffix = ['.rst']
# The master toctree document.
master_doc = 'index'