在eclipse中缩进标签

时间:2014-11-26 10:30:26

标签: html eclipse indentation auto-indent

当我按 Ctrl + Shift + F

时,我需要Eclipse(Kepler)在<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>

1 个答案:

答案 0 :(得分:0)

您可以尝试去: 窗口&gt;偏好&gt;网络&gt; HTML文件&gt;编辑器。

在内联字段中添加/删除要缩进的内容。从我看到它不包括head标签,所以尝试添加列表。