Reputation: 3863
I use <code>
as an inline code styling. Formatting :
<p>In Unity if you select "Loop" in <code>AudioSource</code>, the song will loop to beginning when it reaches the very end.</p>
Results in :
<p>In Unity if you select "Loop" in
<code>AudioSource</code>, the song will loop to beginning when it reaches the very end.</p>
The webpage still display fine, but I don't want this new line in my HTML file how to exclude some tags?
"html.format.extraLiners": "head, body, /html",
seems to be for "including" not excluding.
Upvotes: 2
Views: 1416
Reputation: 3863
Oh.. never mind. It's "html.format.unformatted": "code"
(I swear I tried that, but trying again and it works...)
Upvotes: 3