We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7a4c8d commit ede9321Copy full SHA for ede9321
docs/conf.py
@@ -20,6 +20,11 @@
20
# import sys
21
# sys.path.insert(0, os.path.abspath('.'))
22
23
+from recommonmark.parser import CommonMarkParser
24
+
25
+source_parsers = {
26
+ '.md': CommonMarkParser,
27
+}
28
29
# -- General configuration ------------------------------------------------
30
@@ -38,8 +43,7 @@
38
43
# The suffix(es) of source filenames.
39
44
# You can specify multiple suffix as a list of string:
40
45
#
41
-# source_suffix = ['.rst', '.md']
42
-source_suffix = '.rst'
46
+source_suffix = ['.rst', '.md']
47
48
# The master toctree document.
49
master_doc = 'index'
0 commit comments