{
const container = DOM.svg(500, 500)
const parser = new DOMParser();
const svgNode = parser.parseFromString(fr_cartogram_txt, "image/svg+xml").documentElement;
container.append(() => svgNode);
const d3Svg = d3.select(container).select("svg");
d3Svg.append("rect")
.attr("x", 10)
.attr("y", 10)
.attr("width", 50)
.attr("height", 30)
.attr("fill", "blue");
return container;
}