소스 검색

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: