我正在编写我在Google表格中开发的功能的文档。这是JSDoc代码:
/**
* Render the results in a string template.
*
* @param {"This is {{item1}}."} template
* string template for rendering results
* @customfunction
*/
{{item1}}
文字导致问题。当我开始在Google表格中输入我的功能名称,激活自动完成功能时,我会看到"对象"列为我的参数的示例,而不是包含{{item1}}
的文本。
我试图找出如何逃避花括号,以便它们在自动完成文本中呈现。我已尝试过多种方法,包括各种地方的反斜杠和HTML实体,但还没有找到所需的语法。