File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change 64
64
65
65
autodoc_default_options = {"special-members" : True }
66
66
67
+ # The suffix of source filenames.
68
+ source_suffix = {
69
+ ".rst" : "restructuredtext" ,
70
+ }
71
+
67
72
# Unless we only generate the basic manpage we need the plugin for generating
68
73
# the Python API documentation.
69
74
if not building_man_page :
83
88
# a list of builtin themes.
84
89
html_theme = "furo"
85
90
91
+ # Since man pages do not use markdown, we do not need to register a markdown
92
+ # parser.
93
+ source_suffix [".md" ] = "markdown"
94
+
86
95
# Add any paths that contain templates here, relative to this directory.
87
96
templates_path = ["_templates" ]
88
97
89
- # The suffix of source filenames.
90
- source_suffix = {
91
- ".rst" : "restructuredtext" ,
92
- ".md" : "markdown" ,
93
- }
94
-
95
98
# The encoding of source files.
96
99
# source_encoding = 'utf-8-sig'
97
100
You can’t perform that action at this time.
0 commit comments