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
In continuation of the conversation #34 (comment)
We're using the Linkinator in our Neon docs.
On the page https://neon.tech/docs/reference/api-reference/ there are two relative links:
You can check, that them are perfectly working in browser. Also, these links are web-correct.
And when I'm checking this page by the Linkinator:
npm run check:broken-links -- https://neon.tech/docs/reference/api-reference
I'm getting errors:
{ "links": [ { "url": "https://neon.tech/manage/api-keys", "status": 404, "state": "BROKEN", "parent": "https://neon.tech/docs/reference/api-reference" }, { "url": "https://neon.tech/manage/branches/", "status": 404, "state": "BROKEN", "parent": "https://neon.tech/docs/reference/api-reference" } ], "passed": false }
But! If I'm passing to the Linkinator the same link with trailing slash:
npm run check:broken-links -- https://neon.tech/docs/reference/api-reference/
There are no errors:
{ "links": [], "passed": true }
I think the problem is that the Linkinator is cutting end part of path for relative links before concat it with relative href:
https://neon.tech/docs/reference/api-reference > https://neon.tech/docs/reference/ > https://neon.tech/docs/reference/ + ../../manage/api-keys = https://neon.tech/manage/api-keys
https://neon.tech/docs/reference/api-reference
https://neon.tech/docs/reference/
https://neon.tech/docs/reference/ + ../../manage/api-keys
https://neon.tech/manage/api-keys
The text was updated successfully, but these errors were encountered:
+1, also happens here.
Example:
https://engine.needle.tools/samples-uploads/pencil-sword
https://engine.needle.tools/samples-uploads/pencil-sword/
Sorry, something went wrong.
@JustinBeckwith mind taking a look? :)
No branches or pull requests
In continuation of the conversation #34 (comment)
We're using the Linkinator in our Neon docs.
On the page https://neon.tech/docs/reference/api-reference/ there are two relative links:
![Снимок экрана 2022-12-13 в 08 36 05](https://user-images.githubusercontent.com/4469056/207227747-ee24dc4e-fa76-419c-bfce-c440e8fa1cd8.png)
![Снимок экрана 2022-12-13 в 08 36 15](https://user-images.githubusercontent.com/4469056/207227793-18a128dc-e1cc-4d18-8eb5-c9baec419415.png)
You can check, that them are perfectly working in browser. Also, these links are web-correct.
And when I'm checking this page by the Linkinator:
I'm getting errors:
But! If I'm passing to the Linkinator the same link with trailing slash:
There are no errors:
I think the problem is that the Linkinator is cutting end part of path for relative links before concat it with relative href:
https://neon.tech/docs/reference/api-reference
>https://neon.tech/docs/reference/
>https://neon.tech/docs/reference/ + ../../manage/api-keys
=https://neon.tech/manage/api-keys
The text was updated successfully, but these errors were encountered: