You are not logged in.
Hello
is it possible to output HTML or Xhtml code ?
I tried Xhina and looked for a config variable but i only get xhtml code back from Xinha.
Is it possible to tell Xinha to output HTML 4.01 code ?
BR/Torsten
Offline
No, it's not possible to change that. Do you refer to the closing slashes in img and br tags? That's valid in 4.01, too. Try validating this at http://validator.w3.org
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Untitled Document</title>
</head>
<body>
<p>
<img src="/i.gif" alt="test" />
<br/>
</p>
<form action="/">
<p>
<input disabled="disabled" type="text" />
</p>
</form>
</body>
</html>
Offline