Skip to content

Commit f86e603

Browse files
committed
Link to the low level docs
1 parent ce95560 commit f86e603

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

docs/source/examples/Widget Custom.ipynb

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,6 @@
2424
"cell_type": "markdown",
2525
"metadata": {},
2626
"source": [
27-
"The widget framework is built on top of the Comm framework (short for communication). The Comm framework is a framework that allows the kernel to send/receive JSON messages to/from the front end (as seen below).\n",
28-
"\n",
29-
"![Widget layer](images/WidgetArch.png)\n",
30-
"\n",
31-
"To create a custom widget, you need to define the widget both in the browser and in the Python kernel.\n",
32-
"\n",
3327
"This tutorial shows how to build a simple email widget using the TypeScript widget cookiecutter: https://github.com/jupyter-widgets/widget-ts-cookiecutter"
3428
]
3529
},
@@ -172,7 +166,15 @@
172166
}
173167
},
174168
"source": [
175-
"## Implementing the widget"
169+
"## Implementing the widget\n",
170+
"\n",
171+
"The widget framework is built on top of the Comm framework (short for communication). The Comm framework is a framework that allows the kernel to send/receive JSON messages to/from the front end (as seen below).\n",
172+
"\n",
173+
"![Widget layer](images/WidgetArch.png)\n",
174+
"\n",
175+
"To learn more about how the underlying Widget protocol works, check out the [Low Level Widget](Widget%20Low%20Level.ipynb) documentation.\n",
176+
"\n",
177+
"To create a custom widget, you need to define the widget both in the browser and in the Python kernel.\n"
176178
]
177179
},
178180
{

0 commit comments

Comments
 (0)