We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I couldn't reopen #4261, so here it is as a new issue:
It looks like there's a regression, as if VSCode would no longer respect html.format.extraLiners config.
html.format.extraLiners
Steps to Reproduce:
"html.format.extraLiners"
"head,body,div,p,/html"
ctrl+n
<!DOCTYPE html> <html lang="en"> <head> <title></title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="css/style.css" rel="stylesheet"> </head> <body> <div>foo</div> <div>foo</div> <div>foo</div> <p>foo</p> <p>foo</p> <p>foo</p> </body> </html>
ctrl+shift+f
Format Document
Lines are inserted also after p and div elements.
p
div
Missing new lines after div or p.
The text was updated successfully, but these errors were encountered:
It looks like you have extensions installed that does the formatting: https://github.com/HookyQR/VSCodeBeautify.
Please file the issue there.
Sorry, something went wrong.
Oh that's embarrassing, I forgot I even installed it. 😆 Thanks!
aeschli
No branches or pull requests
I couldn't reopen #4261, so here it is as a new issue:
It looks like there's a regression, as if VSCode would no longer respect
html.format.extraLiners
config.Steps to Reproduce:
"html.format.extraLiners"
to"head,body,div,p,/html"
.ctrl+n
.ctrl+shift+f
to executeFormat Document
command.Expected
Lines are inserted also after
p
anddiv
elements.Actual
Missing new lines after
div
orp
.The text was updated successfully, but these errors were encountered: