Blazor: 0.3.0 IDE: VSCode Steps to Reproduce: 1. Scaffold Blazor "hosted" (although I suspect any type will do). dotnet new blazorhosted 2. Open MainLayout.cshtml 3. Apply an HTML block comment to the inner div tag containing the @Body method. From: ``` <div class="content px-4"> @Body </div> ``` To: ``` <!-- <div class="content px-4"> @Body </div> --> ``` 4. Bug. ``` C:\...\Shared\MainLayout.cshtml(44,1): error BL9981: Unexpected closing tag 'div' with no matching start tag. [C:\....csproj] 0 Warning(s) 1 Error(s) ```