3939# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
4040# ones.
4141extensions = [
42- 'sphinx.ext.autodoc' ,
43- 'sphinx.ext.todo' ,
44- 'sphinx.ext.imgmath' ,
45- 'sphinx.ext.githubpages' ,
4642]
4743
4844# Add any paths that contain templates here, relative to this directory.
49- templates_path = ['ntemplates ' ]
45+ templates_path = ['_templates ' ]
5046
5147# The suffix(es) of source filenames.
5248# You can specify multiple suffix as a list of string:
5349#
5450# source_suffix = ['.rst', '.md']
55- from recommonmark .parser import CommonMarkParser
56-
57- source_parsers = {
58- '.md' : CommonMarkParser ,
59- }
60-
61- source_suffix = ['.rst' , '.md' ]
62-
51+ source_suffix = '.rst'
6352
6453# The master toctree document.
6554master_doc = 'index'
7463# List of patterns, relative to source directory, that match files and
7564# directories to ignore when looking for source files.
7665# This pattern also affects html_static_path and html_extra_path .
77- exclude_patterns = []
66+ exclude_patterns = ['_build' , 'Thumbs.db' , '.DS_Store' ]
7867
7968# The name of the Pygments (syntax highlighting) style to use.
8069pygments_style = 'sphinx'
9685# Add any paths that contain custom static files (such as style sheets) here,
9786# relative to this directory. They are copied after the builtin static files,
9887# so a file named "default.css" will overwrite the builtin "default.css".
99- html_static_path = ['nstatic ' ]
88+ html_static_path = ['_static ' ]
10089
10190# Custom sidebar templates, must be a dictionary that maps document names
10291# to template names.
163152 (master_doc , 'JpProject' , 'Jp Project Documentation' ,
164153 author , 'JpProject' , 'One line description of project.' ,
165154 'Miscellaneous' ),
166- ]
167-
168-
169- # -- Extension configuration -------------------------------------------------
170-
171- # -- Options for todo extension ----------------------------------------------
172-
173- # If true, `todo` and `todoList` produce output, else they produce nothing.
174- todo_include_todos = True
155+ ]
0 commit comments