On following example the @example of JSDoc is highlighted:
/**
* @example
*let a = 10; // This line is highlighted.
*/
But, if there's a space between the * and the code it doesn't highlight:
/**
* @example
* let a = 10; // This line is not highlighted.
*/