如何设置Atom-Beautify包装HTML属性

时间:2016-01-20 15:13:11

标签: html atom-editor js-beautify

我使用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>

My current HTML config

1 个答案:

答案 0 :(得分:4)

html_wrap_attributes: "force"

看来你的配置已经将Wrap属性设置为“force”,所以这应该足够了。如果没有,你可以运行atom-beautify debug(Packages-&gt; Atom Beautify-&gt; Debug)来确定用于美化你的html的最终组合和转换选项。