diff --git a/lib/livebook/notebook/explore/intro_to_kino.livemd b/lib/livebook/notebook/explore/intro_to_kino.livemd index 7d69a3246..48a3925fc 100644 --- a/lib/livebook/notebook/explore/intro_to_kino.livemd +++ b/lib/livebook/notebook/explore/intro_to_kino.livemd @@ -19,6 +19,8 @@ Mix.install([ alias VegaLite, as: Vl ``` + + ## Kino.VegaLite In the [Plotting with VegaLite](/explore/notebooks/intro-to-vega-lite) notebook we show @@ -84,6 +86,8 @@ Kino.VegaLite.periodically(widget, 25, 0, fn i -> end) ``` + + ## Kino.ETS You can use `Kino.ETS.new/1` to render ETS tables and easily @@ -112,6 +116,8 @@ end Having the rows inserted, click on the "Refetch" icon in the table output above to see them. + + ## Kino.DataTable When it comes to tables, we are not limited to ETS! You can render @@ -149,6 +155,8 @@ Kino.DataTable.new( We can sort by the number of reductions to identify the most busy processes! + + ## Kino.Markdown Sometimes you may want to render arbitrary content as rich-text, @@ -176,6 +184,8 @@ A regular Markdown file. |> Kino.Markdown.new() ```` + + ## Kino.render/1 As we saw, Livebook automatically recognises widgets returned