elebetsamer / bootstrap-snippets-visual-studio

A collection of Twitter Bootstrap snippets for Visual Studio.
MIT License
299 stars 93 forks source link

Allow snippets to be inserted within Razor Code Blocks #13

Open danashurst opened 8 years ago

danashurst commented 8 years ago

When using Razor Syntax in a .cshtml file, please allow snippets to be inserted within code blocks, ie:

@using(Html.BeginForm(...))
{
    <div> <!-- Or Any HTML Element -->
        // Snippets work here
    </div>
}
@using(Html.BeginForm(...))
{
    // Snippets do not work here.
}

Thanks for this great tool! Saves me lots of time scaffolding Bootstrap HTML - Especially forms. :)