i'm documenting my project with 'compodoc' and i like this tool but i get a error visual when i try insert a quote.
i have this comment
/**
* 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
*/
i expect this
example:
1| *ngFor="let item of 2 | numberToArray"
but the actual output is
example:
1| *ngFor="let item of 2 | numberToArray"