当我按
<head>...</head>
内缩进html标签
目前,这个:
<html>
<head>
<title>Insert title here</title>
<script type="text/javascript">
function func() {
console.log("Hello world");
}
</script>
</head>
<body>
<p onclick="func()">Some text</p>
</body>
</html>
当我按下组合键时,变成了这个。
<html>
<head>
<title>Insert title here</title>
<script type="text/javascript">
function func() {
console.log("Hello world");
}
</script>
</head>
<body>
<p onclick="func()">Some text</p>
</body>
</html>
我需要缩进<head>...</head>
中的所有内容以及<html>...</html>
中的所有标记。
理想情况下这样:
function func() {
console.log("Hello world");
}
<html>
<head>
<title>Insert title here</title>
<script type="text/javascript">
/* function */
</script>
</head>
<body>
<p onclick="func()">Some text</p>
</body>
</html>
答案 0 :(得分:0)
您可以尝试去: 窗口&gt;偏好&gt;网络&gt; HTML文件&gt;编辑器。
在内联字段中添加/删除要缩进的内容。从我看到它不包括head标签,所以尝试添加列表。