– System Setup ——————————-
Operating System and version: Windows XP SP1
Eclipse version: 3.0.1
Eclipse build id: 200409161125
Fresh Eclipse install (y/n): y
If not, was it upgraded to its current version using the update manager?
Other installed external plugins:
Number of plugins in the <eclipse>/plugins directory that begin with org.eclipse.pde.*: 6
MyEclipse version: 3.8.4 + QF2 (BuildID: 200501171200-3.8.4)
Eclipse JDK version: j2sdk1.4.2_06
Application Server JDK version:
Are there any exceptions in the Eclipse log file?
no
If this is a DB related question please answer the following:
RDBMS vendor and version:
JDBC driver vendor and version, and access type (thin, type-2, etc):
Connection URL:
Eclipse error logs related to com.genuitec.eclipse.sqlexplorer packages:
– Message Body ——————————-
Hello,
i have a HTML file with a simple (unordered) list:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Test</title>
</head>
<body>
<ul>
<li>Test</li>
<li>Test1</li>
<li>Test2</li>
</ul>
</body>
</html>
When i switch to the Design-Tab and insert another listitem, all end listitem tags (</li>) are deleted, only the last one remains:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Test</title>
</head>
<body>
<ul>
<li>Test
<li>Test1
<li>Test2
<LI> </LI>
</ul>
</body>
</html>
How can i preserve my listitem end-tag?
Bernhard Berbuir