1

下面的 Google Apps 脚本指南暗示标题文本可以着色。

当我尝试使用一些 HTML 标记(例如<span color>)时,它们中的任何一个都确实有效。

我应该使用哪个标签来实现这一点?

突出显示部分标题

更新

以下是我实现节标题的代码。<b>标签对有效,但我尝试应用颜色的任何尝试都失败了。

CardService.newCardBuilder()
  .addSection(
    CardService.newCardSection()
    .setHeader('<b>header text</b>')
  )
  .build();
4

1 回答 1

5

Google Apps 脚本卡片参考并没有包含太多关于如何处理卡片设计的内容,但 Google Workspace 插件网站指出使用G Suite 插件设计工具包

关于 HTML 的使用,支持的标签只有少数。要评估字体颜色,请使用以下内容:

CardService.newCardBuilder()
  .addSection(
    CardService.newCardSection()
    .setHeader('<font color="#ea9999">header text</font>')
  )
  .build();

参考

资源

于 2020-11-06T19:01:25.420 回答