Skip to content

Commit d4699d9

Browse files
committed
First version
1 parent 2d39734 commit d4699d9

File tree

5 files changed

+82
-11
lines changed

5 files changed

+82
-11
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,5 +126,5 @@ dmypy.json
126126
.pyre/
127127

128128
_build/
129-
extensions.rst
129+
extensions.md
130130
j*.md

conf.py

+9-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
# List all organization extensions
1818
import os
1919
import pathlib
20+
import recommonmark
2021
import requests
22+
from recommonmark.transform import AutoStructify
2123

2224
HERE = pathlib.Path(__file__).parent
2325
GET_REPOS = "https://api.github.com/orgs/jupyterlab-contrib/repos"
@@ -52,15 +54,15 @@
5254
)
5355
filename = repo["name"]
5456
(HERE / (filename + ".md")).write_text(readme.text)
55-
extensions += f"\n {filename}"
57+
extensions += f"\n* [{filename.replace('_', ' ')}]({filename}.md)"
5658
except BaseException as err:
5759
print(err)
5860
print(f"Fail to get README for {filename}.")
5961
except BaseException as err:
6062
print(err)
6163
print("Fail to get organization repositories")
6264
finally:
63-
(HERE / "extensions.rst").write_text(extensions)
65+
(HERE / "extensions.md").write_text(extensions)
6466

6567

6668
# -- Project information -----------------------------------------------------
@@ -163,3 +165,8 @@
163165
# If True, show hidden TOC entries
164166
"globaltoc_includehidden": False,
165167
}
168+
169+
170+
def setup(app):
171+
app.add_config_value("recommonmark_config", {"enable_auto_toc_tree": True}, True)
172+
app.add_transform(AutoStructify)

contributing.md

+10
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
11
# Help supporting the extensions
2+
3+
There are various ways you can help:
4+
5+
- Answer issues raised
6+
- Propose fix for issues and/or feature requests (through Pull Request)
7+
- Propose new features (through Pull Request)
8+
- Get more involved by [becoming a project maintainer](https://github.com/jupyterlab-contrib/jupyterlab-contrib.github.io/issues/new?template=help-with-maintenance.md)
9+
- If you have no time but money, [ask on the community forum](https://discourse.jupyter.org/c/meta/8); people are always looking to contribute to Jupyter through paid jobs
10+
11+
You can involve yourself in only one project or multiple ones depending your appetite (or is it your time).

extensions.tpl

+58-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,60 @@
1-
List of extensions and tools
2-
----------------------------
1+
# List of extensions and tools
32

4-
This a list of nice JupyterLab extensions not part of ``jupyterlab-contrib`` organization:
3+
## Extensions from elsewhere
54

6-
.. toctree::
7-
:maxdepth: 1
8-
:caption: jupyterlab-contrib extensions:
9-
5+
This a list of nice JupyterLab extensions not part of ``jupyterlab-contrib`` organization.
6+
7+
> Feel free to edit this page to add more information by clicking on **Edit on GitHub** in the
8+
> top right corner of this page.
9+
10+
### Editors
11+
12+
- [Spellchecker](https://github.com/ijmbarr/jupyterlab_spellchecker) - Spellchecker for markdown cells
13+
- [LaTeX](https://github.com/jupyterlab/jupyterlab-latex) - An extension for JupyterLab which allows for live-editing of LaTeX documents.
14+
- [DrawIO](https://github.com/QuantStack/jupyterlab-drawio) - An extension to draw diagrams in JupyterLab.
15+
- [Table of Contents](https://github.com/ian-r-rose/jupyterlab-toc) - Generates a table of content for your notebook and markdown documents.
16+
- [Collapsable Headings](https://github.com/aquirdTurtle/Collapsible_Headings) - Allows to collapse an entire group of cells under the same header
17+
- [Go to definition](https://github.com/krassowski/jupyterlab-go-to-definition) - Allows you to <kbd>Alt</kbd> + <kbd>click</kbd> on a variable to jump to its definition.
18+
- [Code Formatter](https://github.com/ryantam626/jupyterlab_code_formatter) - Easily beautifies Python code inside JupyterLab using one of the formatters: Black/YAPF/AutoPEP8.
19+
- [LSP](https://github.com/krassowski/jupyterlab-lsp) - brings VS Code features (code navigation, hover suggestions, linters, autocompletion, etc.) to JupyterLab
20+
- [Dash](https://github.com/plotly/jupyter-dash) - Extension for the Interactive development of Dash apps in JupyterLab.
21+
- [Vim](https://github.com/jwkvam/jupyterlab-vim) - Notebook cell vim bindings.
22+
23+
### Version Control
24+
25+
- [Git](https://github.com/jupyterlab/jupyterlab-git) - Git extension (currently in alpha)
26+
- [GitHub](https://github.com/jupyterlab/jupyterlab-github) - GitHub extension
27+
- [neptune-notebooks](https://docs.neptune.ml/notebooks/introduction.html) - An extension that lets you version, diff, and share your JupyterLab and Jupyter notebooks on [neptune.ml](https://neptune.ml/).
28+
29+
### Viewers/Renderers
30+
31+
- [Bokeh](https://github.com/bokeh/jupyterlab_bokeh) - An extension rendering Bokeh content
32+
- [ipywidgets](https://github.com/jupyter-widgets/ipywidgets) - Interactive widgets for the Jupyter Notebook
33+
- [fasta,geojson,katex,plotly,vega2](https://github.com/jupyterlab/jupyter-renderers) - Multiple package repo that consists of generic renderers for common file types and mime types as well as renderer extensions for JupyterLab.
34+
- [voyager](https://github.com/altair-viz/jupyterlab_voyager) - A JupyterLab MIME renderer extension to view CSV and JSON data in [Voyager 2](https://github.com/vega/voyager#voyager-2).
35+
- [Dash](https://github.com/plotly/jupyterlab-dash) - An extension for rendering [Plotly Dash](https://plot.ly/products/dash/) apps as a separate window.
36+
- [ipysheet](https://github.com/QuantStack/ipysheet) - Interactive spreadsheet in JupyterLab.
37+
38+
### Themes
39+
40+
- [Light](https://github.com/jupyterlab/jupyterlab/tree/master/packages/theme-light-extension) - Default light-colored theme
41+
- [Dark](https://github.com/jupyterlab/jupyterlab/tree/master/packages/theme-dark-extension) - Default dark-colored theme
42+
- [Material Darker](https://github.com/oriolmirosa/jupyterlab_materialdarker) - Material Darker theme
43+
- [Darcula](https://github.com/telamonian/theme-darcula) - Darcula theme with scrollbars, based on IntelliJ
44+
- [Atom Dark](https://github.com/BurglarBenson/Jupyter-Atom-Dark-Theme) - Atom Dark theme
45+
- [AixViPMaP](https://github.com/AixViPMaP/jlab-theme) - AixViPMaP theme
46+
- [Gruvbox](https://github.com/Rahlir/theme-gruvbox) - Gruvbox theme
47+
48+
### Other
49+
- [jupyterlab_debugger](https://github.com/jupyterlab/debugger) - JupyterLab extension to allow visual debuggeing of Jupyter notebooks, consoles, and source files.
50+
- [jupyterlab_table of contents](https://github.com/jupyterlab/jupyterlab-toc) - A JupyterLab extension to create Table of Contents.
51+
- [lantern](https://github.com/timkpaine/lantern) - Data exploration kit
52+
- [ML Workspace](https://github.com/ml-tooling/ml-workspace) - All-in-one web IDE for machine learning and data science. Combines Jupyterlab, VS Code, Tensorflow, and many other tools/libraries into one Docker image.
53+
- [scriptedforms](https://github.com/SimonBiggs/scriptedforms) - Quickly create live-update GUIs for Python packages using Markdown and simple HTML elements.
54+
- [Variable inspector](https://github.com/lckr/jupyterlab-variableInspector) - Nice interactive variable inspector for your notebook
55+
- [Dask](https://github.com/dask/dask-labextension) - Manage Dask clusters, as well as embed Dask's dashboard plots directly into JupyterLab panes.
56+
- [jupyterlab-autoplay](https://github.com/remborg/autoplay) - Run and hide code cells automatically when opening a notebook.
57+
58+
## Extensions in this organization
59+
60+
The extensions hosted in this organization.

migrate_from_classical.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

33
The following table will help you find the equivalent extensions when migrating
44
from [jupyter_contrib_nbextensions](https://jupyter-contrib-nbextensions.readthedocs.io/)
5-
to [JupyterLab](https://jupyterlab.readthedocs.io/en/stable/):
5+
to [JupyterLab](https://jupyterlab.readthedocs.io/en/stable/).
6+
7+
> Feel free to edit this page to add more information by clicking on **Edit on GitHub** in the
8+
> top right corner of this page.
69
710
| Classical notebook | JupyterLab |
811
| --- | --- |

0 commit comments

Comments
 (0)