Snapshot / Snapshot Demos Repo ↗
using PlutoUI

A static report

Not every notebook needs to be interactive. This one just computes some numbers and shows them — a clean, read-only page. Snapshot labels it static in the sidebar (it uses no @bind), and it still runs the real Julia to produce the values below.

The floating panel on the right is a PlutoUI.TableOfContents() — it builds itself from the markdown headers in the notebook.

The data

data = [4, 8, 15, 16, 23, 42]
stats = (
    n    = length(data),
    sum  = sum(data),
    mean = round(sum(data) / length(data); digits = 2),
    min  = minimum(data),
    max  = maximum(data),
)

Summary

Summary of data = 4815162342:

metricvalue
count6
sum108
mean18.0
min4
max42

Computed when this notebook was published — then frozen as static HTML.