8

我使用 atom-beautify 格式化 html,但它总是将所有属性放在一行中。如何设置 atom-beautify 以将属性保持在不同的行中。

<!--What I want-->
<a class="btn btn-default" 
   ng-click="history.more=!history.more">
   More
</a>

<!--The current format result-->
<a class="btn btn-default" ng-click="history.more=!history.more">
   More
</a>

我当前的 HTML 配置

4

1 回答 1

5
html_wrap_attributes: "force"

看来您的配置已经将 Wrap 属性设置为“force”,这样就足够了。如果没有,您可以运行 atom-beautify 调试(Packages->Atom Beautify->Debug)来确定用于美化您的 html 的最终组合和转换选项。

于 2016-03-25T18:15:19.613 回答