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
tags containing : text are split into two tag items example:
:
/** * @see https://reactjs.org/docs/context.html#classcontexttype */ export class Component{ static contextType?: Context<any>; }
symbol.getJsDocTags() will return two @see items:
@see
[ { name: "see", text: [ { text: "https", kind: "text", }, { text: "://reactjs.org/docs/context.html#classcontexttype", kind: "text", }, ], }, ]
⭐ Suggestion
If possible keep the link line into a single tag item
A test repo to reproduce the issue: https://github.com/atanasster/ts-issues/blob/master/tests/see-https.test.ts
The text was updated successfully, but these errors were encountered:
closing, this can be fixed using the jsdoc compiler api: #44930
Sorry, something went wrong.
sandersn
No branches or pull requests
tags containing
:
text are split into two tag itemsexample:
symbol.getJsDocTags() will return two
@see
items:⭐ Suggestion
If possible keep the link line into a single tag item
A test repo to reproduce the issue: https://github.com/atanasster/ts-issues/blob/master/tests/see-https.test.ts
The text was updated successfully, but these errors were encountered: