Skip to content

Commit

Permalink
More fixes to contributing documentation guide (#454)
Browse files Browse the repository at this point in the history
I meant to send this with #447 but I think I messed up the commit,
sorry!
  • Loading branch information
melissawm authored Jul 18, 2024
1 parent 9dabb9e commit 26710aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/developers/contributing/documentation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -293,17 +293,17 @@ you can speed up this build by running `make html-noplot` instead. This will ski
gallery build, which involves launching up napari and rendering all the examples.

```bash
make docs-install
make docs-install # only needed the first time
make html-noplot
```

The rendered HTML will be placed in `docs/_build`. Find `index.html` in this
The rendered HTML will be placed in `docs/_build/html`. Find `index.html` in this
folder and drag it into a browser to preview the website with your new document.
You can also run this Python one-liner to deploy a quick local server on
[http://localhost:8000](http://localhost:8000):

```shell
$ python3 -m http.server --directory docs/_build
$ python3 -m http.server --directory docs/_build/html
```

````{note}
Expand Down

0 comments on commit 26710aa

Please sign in to comment.