我正在使用 html-tidy,我的一些评论从文档的头部移到了根目录。有没有办法避免这种行为?
(我正在尝试将一些非常非常糟糕的标记转换为 xhtml 投诉代码)哦,另外它使用内部开发的半服务器端脚本语言,该语言使用注释在 html 中放置数据,非常非常非标准......我很想彻底改变它......但你知道雇主是如何......
这是问题所在:
整理前:
<head>
...
<!-- BODY_ON_LOAD_SECTION -->
<script type="text/javascript" language="Javascript">
function init() {
openWin('BODY_ON_LOAD_SECTION_REFERENCE','','resizable=yes,width=400,height=400,left=50,top=50');
}
</script>
<!-- END_BODY_ON_LOAD_SECTION -->
</head>
整理后:
<script type="text/javascript" language="Javascript">
function init() {
openWin('BODY_ON_LOAD_SECTION_REFERENCE','','resizable=yes,width=400,height=400,left=50,top=50');
}
</script>
</head><!-- BODY_ON_LOAD_SECTION --> <!-- END_BODY_ON_LOAD_SECTION -->