Hello,
In HTML templates we had the ability to write something like this: <ul class="dwnavigation" id="mainNavigation"> // This comment will be shown in the output <!--@DwNavigation--> </ul> - The smart thing about this, was to put content above and below this tag, and the content wasn't erased as it would if we did something like this: <ul class="dwnavigation" id="mainNavigation"> // This comment will NOT be shown in the output </ul>
The Question is: How can we do this in Razor?