graph = html`<div class="explorer">
<div style="overflow-y: scroll;">
<h2>Explorer</h2>
${dot`digraph {
rankdir=TB;
${data
.map(
d =>
`x${d['Comment Video']}[label="'${d.comment
.split(' ')
.reduce((a, v, i) => {
return (a += v + ((i + 1) % 5 === 0 ? '\n' : ' '));
}, '')}'"]; ${
d['Source Video']
? `x${d['Source Video']} -> x${d['Comment Video']};`
: ''
}`
)
.join('\n')}
}`}</div>
<div>
<h2 id="tiktok-title"></h2>
<iframe width=420 height=900, style="border: none;">
</div>
</div>`