Hi team!
As you know, TagSoup 1.2.1 doesn't support correct HTML5 tag nesting. For example, this string <b><p>Test</p></b> will be parsed as <b/><p><b></b></p><b/>
But html5 code <b><aside>Test</aside></b> will be parsed as is.
How to implement in BaseX the html5 support? I've found this project, but not sure that it's possible to add it into basex code https://github.com/UniversityofWarwick/tagsoup-html5
Thanks!