You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/source/extension/extension_dev.rst
+2-3
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,6 @@ Cookiecutters
55
55
We provide several cookiecutters to create JupyterLab extensions:
56
56
57
57
- `extension-cookiecutter-ts <https://github.com/jupyterlab/extension-cookiecutter-ts>`_: Create a JupyterLab extension in TypeScript
58
-
- `extension-cookiecutter-js <https://github.com/jupyterlab/extension-cookiecutter-js>`_: Create a JupyterLab extension in JavaScript
59
58
- `mimerender-cookiecutter-ts <https://github.com/jupyterlab/mimerender-cookiecutter-ts>`_: Create a MIME Renderer JupyterLab extension in TypeScript
60
59
61
60
API Reference Documentation
@@ -64,7 +63,7 @@ API Reference Documentation
64
63
Here is some autogenerated API documentation for JupyterLab and Lumino packages:
65
64
66
65
- `JupyterLab API Documentation <../api/>`_
67
-
- `Lumino API Documentation <https://lumino.readthedocs.io/en/1.x/api/>`_
66
+
- `Lumino API Documentation <https://lumino.readthedocs.io/en/latest/api/index.html>`_
68
67
69
68
70
69
Overview of Extensions
@@ -204,7 +203,7 @@ The extension package containing the theme plugin must include all static assets
204
203
205
204
See the `JupyterLab Light Theme <https://github.com/jupyterlab/jupyterlab/tree/master/packages/theme-light-extension>`__ for an example.
206
205
207
-
See the `TypeScript theme cookiecutter <https://github.com/jupyterlab/theme-cookiecutter>`__ for a quick start to developing a theme plugin.
206
+
See the `TypeScript extension cookiecutter <https://github.com/jupyterlab/extension-cookiecutter-ts>`__ (choosing ``theme`` as ``kind`` ) for a quick start to developing a theme plugin.
Copy file name to clipboardexpand all lines: packages/coreutils/src/path.ts
+4-4
Original file line number
Diff line number
Diff line change
@@ -82,18 +82,18 @@ export namespace PathExt {
82
82
* @param parts - The paths to join.
83
83
*
84
84
* #### Notes
85
-
* The right-most parameter is considered {to}. Other parameters are considered an array of {from}.
85
+
* The right-most parameter is considered \{to\}. Other parameters are considered an array of \{from\}.
86
86
*
87
-
* Starting from leftmost {from} parameter, resolves {to} to an absolute path.
87
+
* Starting from leftmost \{from\} parameter, resolves \{to\} to an absolute path.
88
88
*
89
-
* If {to} isn't already absolute, {from} arguments are prepended in right to left order, until an absolute path is found. If after using all {from} paths still no absolute path is found, the current working directory is used as well. The resulting path is normalized, and trailing slashes are removed unless the path gets resolved to the root directory.
89
+
* If \{to\} isn't already absolute, \{from\} arguments are prepended in right to left order, until an absolute path is found. If after using all \{from\} paths still no absolute path is found, the current working directory is used as well. The resulting path is normalized, and trailing slashes are removed unless the path gets resolved to the root directory.
0 commit comments