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 31
31
# Add any Sphinx extension module names here, as strings. They can be
32
32
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
33
33
# ones.
34
+
35
+ from recommonmark .parser import CommonMarkParser
36
+
37
+ source_parsers = {
38
+ '.md' : CommonMarkParser ,
39
+ }
40
+
34
41
extensions = ['sphinx.ext.autodoc' ,
35
42
'sphinx.ext.doctest' ,
36
43
'sphinx.ext.todo' ,
44
51
# The suffix(es) of source filenames.
45
52
# You can specify multiple suffix as a list of string:
46
53
#
47
- # source_suffix = ['.rst', '.md']
48
- source_suffix = '.rst'
54
+ source_suffix = ['.rst' , '.md' ]
55
+ # source_suffix = '.rst'
49
56
50
57
# The master toctree document.
51
58
master_doc = 'index'
60
67
# built documents.
61
68
#
62
69
# The short X.Y version.
63
- version = ''
70
+ version = '1.0.0 '
64
71
# The full version, including alpha/beta/rc tags.
65
- release = ''
72
+ release = 'v1.0.0 '
66
73
67
74
# The language for content autogenerated by Sphinx. Refer to documentation
68
75
# for a list of supported languages.
You can’t perform that action at this time.
0 commit comments