网站首页 网站源码
website
站点相关全部源代码,隐藏了一些关于服务器的信息
@if (!string.IsNullOrEmpty(Content?.ReplyId) && !string.IsNullOrEmpty(Content?.ReplyNickName))
{
    <a href="javascript:">@@@(Content.ReplyNickName)</a>
}
@((MarkupString)_content)

@code {
    [Parameter]
    public CommentContentModel Content { get; set; }

    string _content = "";
    
    protected override void OnParametersSet()
    {
        _content = Content?.CommentText?.MarkdownToHtml() ?? "";
        base.OnParametersSet();
    }

}
loading