Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 516 Bytes

2021-08-16-emmet-all-html-new-line.md

File metadata and controls

17 lines (16 loc) · 516 Bytes
layout title date notebook tags
post
Emmet все html элементы на своей строке
2021-08-16 00:00 +0000
frontend
emmet
html
vs code

Для встроенного в VS Code emmet. Чтобы все элементы создавались на новой строке, а не одной. Включая например ссылки внутри пунктов меню.

В settings.json добавьте

"emmet.syntaxProfiles": {
	"html": {
		"inline_break": 1
	}
},