How could I easly generate next code in Visual Studio Community 2017 in an ASP.NET MVC project?
<h1 id="welcome"></h1>
<div class="row">
<section class="col-md-4">
<h2><h2>
<p></p>
</section>
<section class="col-md-4">
<h2><h2>
<p></p>
</section>
<section class="col-md-4">
<h2><h2>
<p></p>
</section>
</div>
using next snippet
h1#welcome+div.row>(section.col-md-4>(h2+p))*3
Like on this image
This must work inside a .cshtml (HTML with razor code) and .html file
