Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.5k views
in Technique[技术] by (71.8m points)

visual studio code - Format specific html element tags onsave

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...