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 27
27
28
28
# Add any Sphinx extension module names here, as strings. They can be extensions
29
29
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
30
- extensions = []
30
+ extensions = [
31
+ 'sphinx.ext.autodoc' , 'sphinx.ext.autosummary' , 'sphinx.ext.githubpages' ,
32
+ 'sphinx.ext.autosummary' , 'sphinx.ext.doctest' , 'sphinx.ext.todo' ,
33
+ 'sphinx.ext.linkcode' , 'sphinx.ext.viewcode'
34
+ ]
31
35
32
36
# Add any paths that contain templates here, relative to this directory.
33
37
templates_path = ['_templates' ]
34
38
35
39
# The suffix of source filenames.
36
- source_suffix = '.md'
40
+ source_suffix = {
41
+ '.rst' : 'restructuredtext' ,
42
+ '.md' : 'markdown' ,
43
+ }
37
44
38
- # The encoding of source files.
39
- source_encoding = 'utf-8'
45
+ # The encoding of source files. Official sphinx docs reccomend utf-8-sig.
46
+ source_encoding = 'utf-8-sig '
40
47
41
48
# The master toctree document.
42
49
master_doc = 'index'
You can’t perform that action at this time.
0 commit comments