{
const src = `svg = DOM.svg(width, 200);
let text = d3.select(svg).selectAll("text")
.data([src])
.enter()
.append("text");
text.selectAll("tspan.text")
.data(d => d.split("\\n"))
.enter()
.append("tspan")
.attr("style", "font-size:12px")
.text(d => d)
.attr("xml:space", "preserve")
.attr("x", 0)
.attr("dy", 12);
`;
svg, DOM, d3, width;
eval(src);
return svg;
}