Enable markdown support in Sphinx configuration

The upstream Contributor Covenant is a markdown document.  Since we
prefer to keep things close to the original, enabling markdown support
to render that document seems like a good idea.
This commit is contained in:
Sajith Sasidharan 2021-01-08 13:45:16 -05:00
parent 1063ee1c1f
commit f1cf948356

View File

@ -28,7 +28,7 @@ import os
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = []
extensions = ['recommonmark']
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
@ -36,7 +36,7 @@ templates_path = ['_templates']
# 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']
# The encoding of source files.
#source_encoding = 'utf-8-sig'