Skip to content
Snippets Groups Projects
Commit 2ee1f2ad authored by Antoine Lambert's avatar Antoine Lambert
Browse files

enable the use of markdown files in sphinx doc

parent 7ba6936b
No related branches found
Tags v0.3.6
No related merge requests found
......@@ -3,3 +3,4 @@
# dependency lines, see https://pip.readthedocs.org/en/1.1/requirements.html
vcversioner
sphinx >= 1.3
recommonmark
......@@ -22,8 +22,12 @@ 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']
# source_suffix = '.rst'
source_parsers = {
'.md': 'recommonmark.parser.CommonMarkParser',
}
# The master toctree document.
master_doc = 'index'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment