如何在Gmail附加组件中使卡片标题标题变为粗体?

如何在Gmail附加组件中使卡片标题标题为粗体?我试过了,但是没用:

function mainCardBuild(content) {
    return CardService.newCardBuilder()
        .setHeader(
            CardService.newCardHeader().setTitle('<b> MY TITLE </b>')) //doesn`t work bold
        .addSection(content)
        .build();
}

我确定我们有机会这样做,因为在Slack Add-on中我看到了。 Bold card header in Slack

happy_moto 回答:如何在Gmail附加组件中使卡片标题标题变为粗体?

您不能在标题中插入HTML,但是可以在文本段落中插入基本HTML(请参阅:Informational widgetssupported text formatting)。 您的代码如下所示:

function mainCardBuild(content) {
    var boldHeaderSection = CardService.newCardSection()
      .addWidget(CardService.newTextParagraph().setText('<b>MY TITLE</b>'));
    return CardService.newCardBuilder()
        .addSection(boldHeaderSection)
        .addSection(content)
        .build();
}

如果需要进行更多自定义,建议您查看以下示例,该示例使用HTML创建视图Translate Add-on Quickstart

本文链接:https://www.f2er.com/3103037.html

大家都在问