typescript-go icon indicating copy to clipboard operation
typescript-go copied to clipboard

Backticked JSDOC `{@link}`s in tagless descriptions docblocks are broken

Open alystair opened this issue 11 months ago • 0 comments

Does this issue occur when all extensions are disabled?: Yes

  • VS Code Version: 1.96.4
  • OS Version: Windows 11 24H2

Steps to Reproduce:

  1. Create a file with the following (saving not necessary):
/** This `{@link}` in backticks is rendered improperly (does not appear).*/
const borked = false;

/**
 * @summary This JSDOC `{@link}` tags renders as expected
 */
const works = true;

/**
 * Improperly rendered JSDOC `{@link sample}` tags
 * @todo `{@link foo}` works.
 */
const partial = false;
  1. Hover over consts to reveal docblock popup.

Results: Image

Image

Image

alystair avatar Jan 20 '25 23:01 alystair