We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@link
.svelte
Doc comments with @link tags are no longer clickable links when rendered to their tooltip within a .svelte file.
The following interface:
interface FooBar { foo: 1 bar: 2 /** * Sum of {@link foo} and {@link bar} */ foo_bar: 3 }
When placed (or imported) into a .svelte file, no longer shows clickable links.
In a .ts file, foo and bar are clickable links:
.ts
foo
bar
Svelte for VS Code extension
No response
The text was updated successfully, but these errors were encountered:
I am marking this as a "feature request" because this feature is done in the VSCode typescript extension instead of typescript's language service. This means this isn't a misconfiguration or a simple function call, we needed to rewrite the feature to fit into our codebase. If anyone is interested in implementing it, it's in https://github.com/microsoft/vscode/blob/d012408e88ffabd6456c367df4d343654da2eb10/extensions/typescript-language-features/src/languageFeatures/util/textRendering.ts#L180
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Doc comments with
@link
tags are no longer clickable links when rendered to their tooltip within a.svelte
file.Reproduction
The following interface:
When placed (or imported) into a
.svelte
file, no longer shows clickable links.Expected behaviour
In a
.ts
file,foo
andbar
are clickable links:System Info
Which package is the issue about?
Svelte for VS Code extension
Additional Information, eg. Screenshots
No response
The text was updated successfully, but these errors were encountered: