File: README.md

package info (click to toggle)
jupyter-sphinx-theme 0.0.6%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 312 kB
  • ctags: 86
  • sloc: makefile: 173; python: 104; sh: 6
file content (22 lines) | stat: -rw-r--r-- 402 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# jupyter-sphinx-theme
A Jupyter [Sphinx](http://www.sphinx-doc.org/en/stable/) theme for narrative
documentation.

## Installation
Install the package using PIP:

```bash
pip install jupyter_sphinx_theme
```

Edit the "conf.py" configuration file to point to the jupyter theme:

```python
# At the top.
from jupyter_sphinx_theme import *
init_theme()

# ...

# Comment out the `html_theme =` line
```