Published
Edited
Apr 17, 2021
Importers
Insert cell
Insert cell
Insert cell
Table(data, {
columns: ["num", "handle", "title", "level", "versions"],
format: {
title(t) {
return t;
}
}
})
Insert cell
Insert cell
Insert cell
// only render these columns
formatter = ({id, num, title, level, ...rest}) => {
return {id, num, title, level}
}
Insert cell
Insert cell
data = fetch(datasource)
.then(res => res.json())
.then(json => flattenWCAG(json.principles))
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
import { Table } from "@observablehq/inputs"
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