When writing jsDoc, if it contains an @ symbol, it throws off VSCode.
How can the symbol be escaped?
I do not want to use the HTML escape code @ because it is not rendered as @ inside codeblocks.
When writing jsDoc, if it contains an @ symbol, it throws off VSCode.
How can the symbol be escaped?
I do not want to use the HTML escape code @ because it is not rendered as @ inside codeblocks.
The only thing I've found to work is backticks:
/**
* @param {type} myVal My val with `@` in the description
*/
That stops the parser from adding line breaks but does make the @ render as fixed width.