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