You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| 0062 |**Accepted**|[Cell ID Addition to Notebook Format](62-cell-id/cell-id.md)|[#62](https://github.com/jupyter/enhancement-proposals/pull/62)|
37
38
| 0072 |**Accepted**|[Language server protocol (LSP)](72-language-server-protocol/language-server-protocol.md)|[#72](https://github.com/jupyter/enhancement-proposals/pull/72)|
39
+
| 0079 |**Submitted**| Build Jupyter Notebook v7 off of JupyterLab components |[#79](https://github.com/jupyter/enhancement-proposals/pull/79)|
38
40
39
41
## How do I submit a JEP?
40
42
@@ -44,3 +46,31 @@ In addition, read
44
46
[the JEP proposal template](jupyter-enhancement-proposal-guidelines/JEP-TEMPLATE.md)
45
47
for guidance on the questions you should answer before officially submitting
46
48
the JEP.
49
+
50
+
## Build the enhancement proposal docs
51
+
52
+
The Enhancement Proposal documentation is structured as a [Sphinx documentation site](https://www.sphinx-doc.org/) that uses a them and configuration inspired by [Jupyter Book](https://jupyterbook.org).
53
+
54
+
To build the documentation locally, use [the `nox` automation and environment management tool](https://nox.thea.codes/).
55
+
Follow these steps:
56
+
57
+
- Install `nox`:
58
+
59
+
```console
60
+
$ pip install nox
61
+
```
62
+
- Build the docs from the `enhancement-proposals` folder:
63
+
64
+
```console
65
+
$ nox -s docs
66
+
```
67
+
68
+
This will automatically install the environment needed to build the documentation, and then place the output HTML in the `_build/html` folder.
69
+
70
+
To build the documentation with a live reload server, run:
71
+
72
+
```console
73
+
$ nox -s docs-live
74
+
```
75
+
76
+
To manually install and build the documentation with Sphinx, install the requirements in `requirements.txt` and then run `sphinx-build . _build/html`.
0 commit comments