@model RegisterViewModel; @using System.Diagnostics; @foreach (var k in Model.Comments) {
@Html.Raw(k.ParsedComment)
@if (k.SubComments != null ) { @foreach (var sk in k.SubComments) {
@Html.Raw(sk.ParsedComment)
} } }