Skip to content

Commit afae8e0

Browse files
committed
Fix source-suffix warning in sphinx build.
1 parent 7a33e4a commit afae8e0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docs/source/conf.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,10 @@
8383
exclude_patterns = []
8484

8585
# The suffix(es) of source filenames.
86-
source_suffix = ['.rst', '.md']
86+
source_suffix = {
87+
'.rst': 'restructuredtext',
88+
'.md': 'markdown',
89+
}
8790

8891
# The master toctree document.
8992
master_doc = 'index'

0 commit comments

Comments
 (0)