Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@
################
# setup.py working directory
build
# sphinx build directory
doc/_build
doc/gallery

# setup.py dist directory
dist
# Egg metadata
Expand All @@ -58,9 +56,13 @@ lib/matplotlib/mpl-data/matplotlibrc

# Documentation generated files #
#################################
# sphinx build directory
doc/_build
doc/api/_as_gen
doc/examples
# autogenerated by sphinx-gallery
doc/examples
doc/gallery
doc/tutorials
doc/modules
doc/pyplots/tex_demo.png
doc/users/installing.rst
Expand Down
File renamed without changes
1 change: 1 addition & 0 deletions doc/_static/depsy_badge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion doc/_static/mpl.css
Original file line number Diff line number Diff line change
Expand Up @@ -798,6 +798,6 @@ p.caption {
font-weight: bold;
}

div#gallery.section {
div#gallery.section, div#tutorials.section {
overflow: hidden;
}
1 change: 1 addition & 0 deletions doc/_templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ <h3>{{ _('Navigation') }}</h3>

<li><a href="{{ pathto('index') }}">home</a>|&nbsp;</li>
<li><a href="{{ pathto('gallery/index') }}">examples</a>|&nbsp;</li>
<li><a href="{{ pathto('tutorials/index') }}">tutorials</a>|&nbsp;</li>
<li><a href="{{ pathto('api/pyplot_summary') }}">pyplot</a>|&nbsp;</li>
<li><a href="{{ pathto('contents') }}">docs</a> &raquo;</li>

Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@

# Sphinx gallery configuration
sphinx_gallery_conf = {
'examples_dirs': '../examples',
'examples_dirs': ['../examples', '../tutorials'],
'filename_pattern': '^((?!sgskip).)*$',
'gallery_dirs': 'gallery',
'gallery_dirs': ['gallery', 'tutorials'],
'doc_module': ('matplotlib',),
'reference_url': {'matplotlib': None,
'numpy': 'http://docs.scipy.org/doc/numpy/reference',
Expand Down
1 change: 0 additions & 1 deletion doc/faq/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ The Matplotlib FAQ
:maxdepth: 2

installing_faq.rst
usage_faq.rst
howto_faq.rst
troubleshooting_faq.rst
environment_variables_faq.rst
Expand Down
Loading