diff options
author | James Bourbeau <jrbourbeau@gmail.com> | 2017-08-13 11:09:08 -0500 |
---|---|---|
committer | James Bourbeau <jrbourbeau@gmail.com> | 2017-08-13 11:09:08 -0500 |
commit | 1ffaa200cdca7a461f03adb21a9acf1f2f7163ca (patch) | |
tree | b9983c706c8123c6046058723ce245fe74818409 /doc/source/conf.py | |
parent | 965890dc6035f4f400f304ea5e990a88de127eb7 (diff) | |
download | numpy-1ffaa200cdca7a461f03adb21a9acf1f2f7163ca.tar.gz |
DOC: removes broken docstring example (source code, png, pdf) links
Currently the (source code, png, pdf) links for docstring examples
are pointing to missing files and give 404 errors (see issue #9500).
This commit removes those links by modifying doc/source/conf.py.
Diffstat (limited to 'doc/source/conf.py')
-rw-r--r-- | doc/source/conf.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py index bf2935536..9ac729961 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -126,6 +126,8 @@ htmlhelp_basename = 'numpy' pngmath_use_preview = True pngmath_dvipng_args = ['-gamma', '1.5', '-D', '96', '-bg', 'Transparent'] +plot_html_show_formats = False +plot_html_show_source_link = False # ----------------------------------------------------------------------------- # LaTeX output |