~~ lineWidth: 40, textWrap: always ~~
!! should format html !!
<dl>
    <dt>Definition list</dt>
    <dd>Testing</dd>
    <dd>Testing</dd>
<dd>Testing</dd>
this should not be wrapped because it is inside html
</dl>


this should be wrapped because it is outside the html

[expect]
<dl>
    <dt>Definition list</dt>
    <dd>Testing</dd>
    <dd>Testing</dd>
<dd>Testing</dd>
this should not be wrapped because it is inside html
</dl>

this should be wrapped because it is
outside the html

!! should handle inline html !!
Some inline html <em>Testing</em> testing this out.

Testing <b>test</b>.

[expect]
Some inline html <em>Testing</em>
testing this out.

Testing <b>test</b>.
