如果我有以下代码:
<div id="nla">hi</div><table>
<tr>
<td>hi</td></tr></table>
我想使用 Scite 或任何其他程序将其作为输入,并将其输出为:
<div id="nla">
hi
</div>
<table>
<tr>
<td>
hi
</td>
</tr></table>
答案1
HTML tidy 可以做到这一点。它生成
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="generator" content=
"HTML Tidy for Linux/x86 (vers 11 February 2007), see www.w3.org" />
<title></title>
</head>
<body>
<div id="nla">
hi
</div>
<table>
<tr>
<td>hi</td>
</tr>
</table>
</body>
</html>
您的样本有很多错误。请用整页纸来说明!