我尝试使用应用脚本HtmlService执行一个(!)页面,但希望拥有特定的Web字体。
我添加了Web字体的CSS代码,并将其与我的CSS集成。它不起作用。
我怀疑 Google Caja (HtmlService正在通过Caja过滤器)无法使用网络字体。您是否知道我是否在使用HtmlService做错了什么,或者是否有其他方法通过过滤Caja来获取Web字体?
<link href='http://fonts.googleapis.com/css?family=Fugaz+One' rel='stylesheet' type='text/css'>
答案 0 :(得分:2)
The stylesheet you refer to使用@font-face
加载字体。 Caja目前不支持@font-face
,因为它引用Caja does not implement sanitization of and has not reviewed the risks of allowing through unchanged的外部内容(字体数据)。
如果您希望获得@font-face
支持,请在Caja's public issue tracker提出申请时提出问题。
(我是Caja团队的开发人员。)