Maybe you are right and i forgot to say that you need <br> tags behind the </td>.
Maybe it's not the best solution but what would you say to this:
1. delete all "<li>"-tags
2. replace all "</li>" with "<br>"
When there is a list where some lines are under each other, you have to put a "<br>" in front of the first row too.
Here is an example:
<html>
<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Neue Seite 1</title>
</head>
<body>
<li>111111111111111</li>
<li>222222222222222</li>
<li>333333333333333</li>
<li>444444444444444</li>
<br>111111111111111<br>
222222222222222<br>
333333333333333<br>
444444444444444<br>
</body>
</html>Or am i completely wrong?