plot = {
const box = new Textbox({
font: '14px/18px sans-serif',
width: width,
parser: Textbox.htmlparser,
createElement: React.createElement
});
const lines = box.linebreak(await FileAttachment("html.html").text());
const createElement = React.createElement;
const svg = createElement('svg', { width: width, height: lines.height + 20 },
createElement('g', null, lines.svg()));
let parent = html`<div>`;
ReactDOM.render(svg, parent);
return parent;
}