I'm looking for a way to set up a format on save rule for specific HTML elements or for specific cases.
Specific Elements
on save all h2 elements format to a single line.
From this:
<h2>
My great heading
</h2>
To this:
<h2>My great heading</h2>
Specific Cases
on save if an element has 4 or more attributes place each attribute on a new line.
From this:
<div attrib1=value1 attrib2=value2 attrib3=value3 attrib4=value4> Content </div>
To this:
<div attrib1=value1
attrib2=value2
attrib3=value3>
Content
</div>
I assume that editor.formatOnSave
would be the correct setting but I wasn't able to find a solution in the documentation.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…