How do I enable line wrapping within HTML tags to stay that way?
<input
class="someClass"
id="someId"
name="someName"
ng-model="vm.model"
ng-click="vm.someAction()"/>
When formatting text in Visual Code (Alt + Shift + F) it leaves HTML tags like this:
<input class="someClass" id="someId" name="someName" value="someValue" ng-model="vm.model" ng-click="vm.someAction"/>
It removes all line breaks I've inserted. In NetBeans I do not have this problem. I have already changed the Code settings, downloaded extensions and nothing works.