File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed
Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change 3131# Add any Sphinx extension module names here, as strings. They can be
3232# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
3333# ones.
34+
35+ from recommonmark .parser import CommonMarkParser
36+
37+ source_parsers = {
38+ '.md' : CommonMarkParser ,
39+ }
40+
3441extensions = ['sphinx.ext.autodoc' ,
3542 'sphinx.ext.doctest' ,
3643 'sphinx.ext.todo' ,
4451# The suffix(es) of source filenames.
4552# You can specify multiple suffix as a list of string:
4653#
47- # source_suffix = ['.rst', '.md']
48- source_suffix = '.rst'
54+ source_suffix = ['.rst' , '.md' ]
55+ # source_suffix = '.rst'
4956
5057# The master toctree document.
5158master_doc = 'index'
6067# built documents.
6168#
6269# The short X.Y version.
63- version = ''
70+ version = '1.0.0 '
6471# The full version, including alpha/beta/rc tags.
65- release = ''
72+ release = 'v1.0.0 '
6673
6774# The language for content autogenerated by Sphinx. Refer to documentation
6875# for a list of supported languages.
You can’t perform that action at this time.
0 commit comments