对话框 HTML 支持

您好 Dan,

横幅支持 HTML。此主题是关于单击“创建主题”按钮时显示的对话框。

不,它支持 HTML。您的示例将如下所示::arrow_down_small:

要参与该类别,您需要 :a href="/g/groupname/members">申请</a>。

这应该可以在 Header 中使用,以支持对话框中的 HTML。:slightly_smiling_face:


<script type="text/discourse-plugin" version="0.8">
  const { htmlSafe } = require("@ember/template");

  api.modifyClass("component:d-navigation", {
    pluginId: "dialog-html-support",
        
    actions: {
      clickCreateTopicButton() {
        if (this.categoryReadOnlyBanner && !this.hasDraft) {
          this.dialog.alert({
            message: htmlSafe(this.categoryReadOnlyBanner),
          });
        } else {
          this.createTopic();
        }
      },
    },
  });
</script>
3 个赞