我想找到一种格式化HTML的方法 VScode </跨度> ,例如,如果我有一个像这样的长div:
&lt; div class =“signal-item-icon checkbox-signal signal-icon”[class.selected … signal-icon“ [class.selected] = “signal.isSelectedCheckSign” (点击)=“$ event.stopPropagation(); onSelectOneShadowSignal(信号);“&GT;
如果有可能,你呢?有延期吗? VScode </跨度> 这种实现存在吗?
谢谢 ! …
设置VSCode首选项 html.format.wrapAttributes 至 force 将从您的示例完成格式化。
html.format.wrapAttributes
force
您也可以结合使用它 html.format.wrapLineLength 。
html.format.wrapLineLength
html.format.wrapLineLength = 80; html.format.wrapAttributes": "auto",
在这种情况下,属性在行长度超过时开始换行 80 。当你有很多属性时它会很有用,它会填充右边的空白区域。
80