typescript-go
typescript-go copied to clipboard
Backticked JSDOC `{@link}`s in tagless descriptions docblocks are broken
Does this issue occur when all extensions are disabled?: Yes
- VS Code Version: 1.96.4
- OS Version: Windows 11 24H2
Steps to Reproduce:
- 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;
- Hover over consts to reveal docblock popup.
Results: