julien-c's picture
julien-c HF staff
npm run build
2dfc950 verified
raw
history blame
307 Bytes
import * as Plot from "https://cdn.jsdelivr.net/npm/@observablehq/plot@0.6.13/+esm";
export function tree(tags, {width, height} = {}) {
return Plot.plot({
axis: null,
width,
height,
margin: 10,
marginLeft: 40,
marginRight: 120,
marks: [
Plot.tree(tags, {textStroke: "white"})
]
});
}