在 VS Code 中,我广泛使用 Beautify。但让我感到不安的是,结束标签总是与“浮动”文本或自动结束标签在同一行。例如,在 Beautify 之前:
<div class="wrap">
<img src="/wp-content/uploads/2018/08/image.png">
</div>
<div class="wrap">This is just some text
<strong>but it needs to be emphasized</strong>! And then some...
</div>
在美化之后:
<div class="wrap">
<img src="/wp-content/uploads/2018/08/image.png"> </div>
<div class="wrap">This is just some text
<strong>but it needs to be emphasized</strong>! And then some... </div>
是否有设置或其他扩展可以帮助使代码更接近第一个示例中的样子,或者我只是做错了?
大多数时候这并不重要,除了对我来说有点难看,但昨天我看到它实际上给 Wordpress 带来了问题,我不能再使用 Beautify,它有破坏格式的风险。