Google Colab has some unique embedded markdown features which are not present in Jupyter markdown.
For example, this produces a slider:
#@title SEIR Model with Social Distancing { run: "auto" }
#@markdown
#@markdown Reproduction number
R0 = 2.4 #@param {type:"slider", min:0.9, max:5, step:0.1}
Attempts to run Colab locally seem to be negative: CoLab notebooks must pass through the Google CoLab website to operate.
What is the best way to produce the equivalent of the @param markup from CoLab in an open-source way that works on Jupyter in a locally run notebook without going through an external website?