Hosting interactive jupyter HTML file (with ipywidgets) on github as web page?

Yeah so according to this

which is better illustrated with VS code intelesense:

what is that manager state attribute mean anyway?

The code in “this” basically concatinates and embeds the widgets into an HTML template and exports this to a functional export.HTML file which defeats the whole purpose of Jupyter notebooks but that’s a getting started point.

And say I wanted to link and add an interactive matplotly graph to a slider how’d you do that?

and how’d you achive this function of Jupyter notebooks?:

a = widgets.FloatText()
b = widgets.FloatSlider()

display(a,b)

mylink = widgets.jslink((a, 'value'), (b, 'value'))

I guess such example could explain the whole independent HTML hosting and considered a solution.