我正在用'compodoc‘记录我的项目,我喜欢这个工具,但当我尝试插入引号时,我得到了一个错误视觉。
我有这样的评论
/**
* crea un arreglo de tamaño n
*
* @example
* *ngFor="let item of 2 | numberToArray"
*
* @param length tamaño del nuevo arreglo
*
* @returns un arreglo de tamaño n
*/我期待着这一切
example:
1| *ngFor="let item of 2 | numberToArray"但是实际的输出是
example:
1| *ngFor="let item of 2 | numberToArray"发布于 2019-06-18 00:30:03
我有点困惑,因为你的例子中有你的expected output is the same as the actual output。尝试转义引号\"Foo bar\"
https://stackoverflow.com/questions/56635332
复制相似问题