-
Notifications
You must be signed in to change notification settings - Fork 30.4k
[jQuery] Fixed documentation URLs to JSDoc #25235
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
Conversation
@AnnAngela Thank you for submitting this PR! 🔔 @leonard-thieu @borisyankov @choffmeister @Steve-Fenton @Diullei @tasoili @jasons-novaleaf @seanski @Guuz @ksummerlin @basarat @nwolverson @derekcicerone @AndrewGaspar @seikichi @benjaminjackman @s093294 @JoshStrobl @johnnyreilly @DickvdBrink @King2500 - please review this PR in the next few days. Be sure to explicitly select If no reviewer appears after a week, a DefinitelyTyped maintainer will review the PR instead. |
@AnnAngela The Travis CI build failed! Please review the logs for more information. Once you've pushed the fixes, the build will automatically re-run. Thanks! |
Hmmm |
@AnnAngela I haven't seen anything from you in a while and this PR currently has problems that prevent it from being merged. The PR will be closed tomorrow if there aren't new commits to fix the issues. |
Breaks in This will be fixed by #25422. |
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.
This workaround breaks WebStorm's support for links. It'd be nice if there's a solution that works in both but otherwise, I think it's better if the bug in VS Code would be fixed instead.
@AnnAngela To keep things tidy, we have to close PRs that aren't mergeable but don't have activity from their author. No worries, though - please open a new PR if you'd like to continue with this change. Thank you! |
npm test
.)npm run lint package-name
(ortsc
if notslint.json
is present).This PR only applied a change to fix a bug noticed by microsoft/TypeScript#16498, to make the link in JSDoc parsed correctly in VSCode.
This change is only a batch replacement base on regular expressions(
\{@link https?(:\/\/api\.jquery\.com\/)([^\/]+)\/[^\}]*\}
8000 =>[$2](https$1$2/)
), so maybe there are some links using incorrect title.This change also fix the link using
http
protocol tohttps
.Before the edit:


After the edit:
(Please forgive my poor English:)