如何在google apps脚本的html模板中使用在字符串中返回html的函数?
例如,这是我的code.gs:
function doGet() {
return HtmlService.createTemplateFromFile('test').evaluate();
}
function getHtml(){
return "<b> hello there </b>";
}
在我的html文件'test.html'中我有以下内容:
<html>
<?= getHtml() ?>
</html>
你会看到结果是这样的:
如何更改此设置,以便以粗体显示hello,而不显示标签?
非常感谢