瀏覽代碼

Merge pull request #3137 from fperez/readme-install-block

Make the install block in the README a regular Markdown code block.
Steven Silvester 7 年之前
父節點
當前提交
da47056204
共有 1 個文件被更改,包括 10 次插入8 次删除
  1. 10 8
      CONTRIBUTING.md

+ 10 - 8
CONTRIBUTING.md

@@ -68,14 +68,16 @@ pip install notebook
 Fork the JupyterLab [repository](https://github.com/jupyterlab/jupyterlab).
 
 Once you have installed the dependencies mentioned above, use the following
-steps::
-
-    git clone https://github.com/<your-github-username>/jupyterlab.git
-    cd jupyterlab
-    pip install -e . # will take a long time to build everything
-    npm install
-    npm run build:main
-    jupyter serverextension enable --py jupyterlab
+steps:
+
+```bash
+git clone https://github.com/<your-github-username>/jupyterlab.git
+cd jupyterlab
+pip install -e . # will take a long time to build everything
+npm install
+npm run build:main
+jupyter serverextension enable --py jupyterlab
+```
 
 Notes: