Given the following example: `<a>foo <b>bar <c>baz</c></b>bad</a>` **Issue: The text "bad" is lost when parsed.** The actual output is: ``` { declaration: undefined, root: { name: 'a', attributes: {}, children: [ { name: 'b', attributes: {}, children: [ { name: 'c', attributes: {}, children: [], content: 'baz' } ], content: 'bar ' } ], content: 'foo ' } } ```
Given the following example:
<a>foo <b>bar <c>baz</c></b>bad</a>Issue: The text "bad" is lost when parsed.
The actual output is: