【发布时间】:2019-11-14 11:25:27
【问题描述】:
如何在 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
【问题讨论】:
标签: google-apps-script google-apps gmail-addons google-apps-script-addon