Open chrisbottin opened 7 years ago
Given the following example: <a>foo <b>bar <c>baz</c></b>bad</a>
<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 ' } }
Any chance this could be supported soon?
I wanted to use your library but I'm facing this blocker.
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: