I can prevent extra blank lines in the HTML part of my file with this:
"html.format.extraLiners": " "
but how can I prevent extra blank lines between styles from the style section at the top of the file?
<html>
<head>
<style>
#c {
background-color: red;
}
#b {
background-color: green;
}
#c {
background-color: blue;
}
</style>
</head>
<body>
<div id="a">A</div>
<div id="b">B</div>
<div id="c">C</div>
</body>
</html>
Thanks.