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: README.md
+57-81Lines changed: 57 additions & 81 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,23 +52,23 @@ You may find it easier to learn how to create extensions _by examples_, instead
52
52
53
53
Start with the [Hello World](hello-world) and then jump to the topic you are interested in.
54
54
55
-
-[Hello World](hello-world)
56
-
-[Signals](signals)
57
-
-[Datagrid](datagrid)
58
-
-[Command Palette](command-palette)
59
55
-[Commands](commands)
56
+
-[Command Palette](command-palette)
57
+
-[Context Menu](context-menu)
58
+
-[Custom Log Console](custom-log-console)
59
+
-[Datagrid](datagrid)
60
+
-[Hello World](hello-world)
61
+
-[Kernel Messaging](kernel-messaging)
62
+
-[Kernel Output](kernel-output)
60
63
-[Launcher](launcher)
64
+
-[Log Messages](log-messages)
61
65
-[Main Menu](main-menu)
66
+
-[React Widget](react-widget)
67
+
-[Server Hello World](server-extension)
62
68
-[Settings](settings)
69
+
-[Signals](signals)
63
70
-[State](state)
64
-
-[React Widget](react-widget)
65
71
-[Widgets](widgets)
66
-
-[Log Messages](log-messages)
67
-
-[Custom Log Console](custom-log-console)
68
-
-[Context Menu](context-menu)
69
-
-[Kernel Output](kernel-output)
70
-
-[Kernel Messaging](kernel-messaging)
71
-
-[Server Hello World](server-extension)
72
72
73
73
You can expect from each example:
74
74
@@ -81,131 +81,107 @@ We have structured the examples based on the [extension points](https://jupyterl
81
81
82
82
You are welcome to open any [issue](https://github.com/jupyterlab/extension-examples/issues) or [pull request](https://github.com/jupyterlab/extension-examples/pulls).
83
83
84
-
##Basic
84
+
### [Commands](commands)
85
85
86
-
### [Hello World](hello-world)
86
+
Extend the main app with a Command.
87
87
88
-
Set up the development environment and print to the console.
Copy file name to clipboardExpand all lines: custom-log-console/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ The default log console extension in JupyterLab obtains log outputs from the ker
11
11
1. Obtain the current active notebook and send message to his `Logger` instance (see the [log message](https://github.com/jupyterlab/extension-examples/tree/master/log-messages) example).
12
12
2. Create your custom log console (covered in this example).
13
13
14
-
> It is strongly recommended to read [commands](https://github.com/jupyterlab/extension-examples/tree/master/commands), [command-palette](https://github.com/jupyterlab/extension-examples/tree/master/command-palette), [main-menu](https://github.com/jupyterlab/extension-examples/tree/master/main-menu), [widget-tracker](https://github.com/jupyterlab/extension-examples/tree/master/widget-tracker) and [react-widget](https://github.com/jupyterlab/extension-examples/tree/master/react-widget) examples before diving into this one.
14
+
> It is strongly recommended to read [commands](https://github.com/jupyterlab/extension-examples/tree/master/commands), [command-palette](https://github.com/jupyterlab/extension-examples/tree/master/command-palette), [main-menu](https://github.com/jupyterlab/extension-examples/tree/master/main-menu), [widgets](https://github.com/jupyterlab/extension-examples/tree/master/widgets) and [react-widget](https://github.com/jupyterlab/extension-examples/tree/master/react-widget) examples before diving into this one.
15
15
16
16
To implement this log console you need to install the following packages:
0 commit comments