I am working on a sample Angular 5 project in Visual Studio Code. I need to comment a line of html out. I have tried both clicking on the edit menu and the keyboard shortcut ctrl+/ and get the same result from both. What I get is:
{% comment %} <input type="text" class="form-control" [(ngModel)]="newServerName"> {% endcomment %}
What I am trying to get is:
<!-- <input type="text" class="form-control" [(ngModel)]="newServerName"> -->
Thank you in advance for your assistance.