Markdown 不呈现 html 个元素

Markdown not rendering html elements

这是我的 Markdown 变量

@{
    Layout="_Layout";
    var post =await Orchard.GetContentItemByHandleAsync($"alias:{Slug}");
    string markdown=post.Content.MarkdownBodyPart.Markdown;
    ViewData["Title"] = post;
    ViewData["Description"]=post.Content.Blogpost.Subtitle.Text;
    ViewData["Image"]=@Orchard.AssetUrl((string)post.Content.Blogpost.Image.Paths[0]);
   }

这就是我在页面中使用它的方式

@await Orchard.MarkdownToHtmlAsync(markdown)

但是所有这些都准备就绪后,html 个元素未呈现(即 ,等等)

这是无法呈现的页面 link,https://thinkwide.tech/post/blockchain

我终于让它工作了。我不得不将以下代码放在启动 class 下的服务中。

services.AddOrchardCms().ConfigureServices(tenantServices =>
             tenantServices.PostConfigure<MarkdownPipelineOptions>(o =>
             {
                 o.Configure.Clear();
             }));

有关降价管道的更多信息可在此处找到:https://docs.orchardcore.net/en/dev/docs/reference/modules/Markdown/