فهرست منبع

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: