Eclipse設定XML檔案的自動格式化配置

笑葉林發表於2014-06-06

Eclipse設定XML檔案的自動格式化配置

在Eclipse下編輯XML檔案時可以像Java檔案一樣進行格式化。
不過,預設的格式化設定效果不太理想,尤其是標籤屬性較多時。

通過以下設定可以達到一個相對理想的效果:
Window -> Preferences -> XML -> Editor -> Formatting :

設定每行寬度
Line width
設定為80到100個字元。

選中
Split multiple attributes each on a new line
這樣標籤的每個屬性都單獨一行顯示。

不選中
Align final bracket in multi-line element tags
這樣,標籤結束符不單獨佔用一行。

選中
Clear all blank lines
去掉所有空行。

選中
Insert whitespace before closing empty end-tags
在標籤結束符前新增空格。

選中
Indent using spaces
縮排使用空格代替tab。

設定縮排寬度
Indentation size
設定為4,即縮排4個空格。

相關文章