HTML not well formed as XML

  • Version 4 created HTML, which was well formed as XML. In Version 6 this seems not to be the case. We have now overlapping tags

    Version 4 <p><b>some text</b></p>

    Version 6 <p><b>some text</p></b>

    Is there any way to force the HTML-Output to be wellformed (XML)?

  • 6.07 is already much better, though not perfect. I still need a correction routine to make it well formed (the problem is that we embed it directly in XML, cant change that because the other side can't easily do it)

    If you want, i can try to give you examples

    chuck