Skip to content

Commit 4e3f269

Browse files
committed
[docs] fix indents for lists in CONTRIBUTING.md
1 parent 7fd79bd commit 4e3f269

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

CONTRIBUTING.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,23 @@ Here is an example issue of how @benelot did it that worked pretty smoothly: [#1
1111
## Setup development
1212

1313
1. __Fork and clone__
14-
First fork this repo, then clone your fork. In this way you become prepared to make a pull request.
14+
First fork this repo, then clone your fork. In this way you become prepared to make a pull request.
15+
16+
```shell
17+
# clone your fork
18+
git clone https://github.com/<your-github-username>/jupyter_contrib_nbextensions.git
19+
cd jupyter_contrib_nbextensions
20+
```
1521

16-
```shell
17-
# clone your fork
18-
git clone https://github.com/<your-github-username>/jupyter_contrib_nbextensions.git
19-
cd jupyter_contrib_nbextensions
20-
```
2122
2. __Setup__
22-
```shell
23-
# run from the main directory, where setup.py is
24-
pip install --editable .
2523

26-
# on windows, remove the --symlink flag and run the command after code updates
27-
jupyter-contrib-nbextension install --sys-prefix --symlink
28-
```
24+
```shell
25+
# run from the main directory, where setup.py is
26+
pip install --editable .
27+
28+
# on windows, remove the --symlink flag and re-run the command each time you make changes
29+
jupyter-contrib-nbextension install --sys-prefix --symlink
30+
```
2931

3032
## Create an extension
3133

0 commit comments

Comments
 (0)