File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change
1
+ # SPDX-License-Identifier: Apache-2.0
1
2
python-markdown-math == 0.2
2
3
3
4
alabaster == 0.7.8
@@ -12,3 +13,4 @@ six==1.10.0
12
13
snowballstemmer == 1.2.1
13
14
Sphinx == 1.4.4
14
15
sphinx-rtd-theme == 0.1.9
16
+ recommonmark == 0.4.0
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
2
#
3
+ # SPDX-License-Identifier: Apache-2.0
4
+ #
3
5
# hyperledger-fabricdocs documentation build configuration file, created by
4
6
# sphinx-quickstart on Mon Feb 20 16:11:53 2017.
5
7
#
43
45
# Add any paths that contain templates here, relative to this directory.
44
46
templates_path = ['_templates' ]
45
47
48
+ # recommonmark is a python utility that allows markdown to be used within
49
+ # Sphinx projects.
50
+ # Installed version as per directive in docs/requirement.txt
51
+ from recommonmark .parser import CommonMarkParser
52
+
53
+ source_parsers = {
54
+ '.md' : CommonMarkParser ,
55
+ }
56
+
46
57
# The suffix(es) of source filenames.
47
58
# You can specify multiple suffix as a list of string:
48
59
#
49
60
# source_suffix = ['.rst', '.md']
50
- source_suffix = '.rst'
61
+ source_suffix = [ '.rst' , '.md' ]
51
62
52
63
# The master toctree document.
53
64
master_doc = 'index'
You can’t perform that action at this time.
0 commit comments