From e9a37bce0d19d92acb4883396a5520b1f5b289b0 Mon Sep 17 00:00:00 2001 From: Kenso Trabing Date: Mon, 22 Apr 2019 01:22:43 -0400 Subject: [PATCH] Fix link to Sphinx-Gallery The link does not work because Sphinx-Gallery's documentation is no longer hosted on Read the Docs. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5f58eb1544e..f3e16646f55 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ All the tutorials are now presented as sphinx style documentation at: # Contributing -We use sphinx-gallery's [notebook styled examples](https://sphinx-gallery.readthedocs.io/en/latest/tutorials/plot_notebook.html#sphx-glr-tutorials-plot-notebook-py) to create the tutorials. Syntax is very simple. In essence, you write a slightly well formatted python file and it shows up as documentation page. +We use sphinx-gallery's [notebook styled examples](https://sphinx-gallery.github.io/tutorials/plot_notebook.html#sphx-glr-tutorials-plot-notebook-py) to create the tutorials. Syntax is very simple. In essence, you write a slightly well formatted python file and it shows up as documentation page. Here's how to create a new tutorial: 1. Create a notebook styled python file. If you want it executed while inserted into documentation, save the file with suffix `tutorial` so that file name is `your_tutorial.py`.