final document = html(
c: [
div(c: [text('<p>title<strong>asdf</strong></p>')])
],
);
expected:
<div>
<p>title<strong>asdf</strong></p>
</div>
actual:
<div>
<p>title<strong>asdf</strong></p>
</div>
however this acts as a useful workaround for #14