-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
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
fix(tools): doc block links not clickable in VS Code #12336
Conversation
@@ -898,7 +898,7 @@ export default class CodeGenerator { | |||
this.code.line('/**'); | |||
before.forEach(line => this.code.line(` * ${line}`.trimRight())); | |||
if (link) { | |||
this.code.line(` * @see ${link}`); | |||
this.code.line(` * @link ${link}`); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I actually think that the right JSDoc should be {@link http://...}
Thank you for contributing! Your pull request will be updated from master and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
Thank you for contributing! Your pull request will be updated from master and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
Before <img src="https://user-images.githubusercontent.com/12623249/103578859-959d9600-4ed7-11eb-9879-7a6e86870bbd.png" width="500" /> After <img src="https://user-images.githubusercontent.com/12623249/103578879-9f26fe00-4ed7-11eb-9a81-87a01c4a4115.png" width="500" /> ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
Before <img src="https://user-images.githubusercontent.com/12623249/103578859-959d9600-4ed7-11eb-9879-7a6e86870bbd.png" width="500" /> After <img src="https://user-images.githubusercontent.com/12623249/103578879-9f26fe00-4ed7-11eb-9a81-87a01c4a4115.png" width="500" /> ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
Before
After
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license