Public
Edited
Jul 9, 2023
Importers
Insert cell
Insert cell
wiki = (title) =>
htl.html`<a href="https://en.wikipedia.org/wiki/${encode(title)}" style="color: Maroon;">${title}</a>`
Insert cell
${wiki(title)}
Insert cell
title = "Interval (music)"
Insert cell
encode = (string) =>
encodeURI(string)
.replace(
/['()*]/g,
(c) => `%${c.charCodeAt(0).toString(16).toUpperCase()}`,
)
.split(" ")
.join("_")
// .toLowerCase()
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more