@model CommentContent
@if (!string.IsNullOrEmpty(Model.ReplyId) && !string.IsNullOrEmpty(Model.ReplyNickName))
{
    <a class="comment-item__reply-to" href="#@(Model.ReplyId)">@@@(Model.ReplyNickName)</a>
}
@Html.Raw(Model.CommentText?.MarkdownToHtml() ?? "")
评论加载中...