sindresorhus/refined-github

The issue has been closed
Linkify relative URLs in Markdown files #4081
fregante posted onGitHub
We linkify full URLs in every piece of code, for example:
<a href="https://fregante.com">
But we don't linkify relative URLs because they're harder to detect and sometimes we can't really resolve them.
I think however that we could detect some URLs, for example in Markdown files:

[Contribute](./docs/contributing/)
[Cool stuff][demo-url]
[demo-url]: ./demo/
The linkifier part would be a function in dom-formatters.ts
and would need to have tests.
This feature might be a little difficult to implement. Maybe you can query .pl-e
and parse the textNode that immediately follows instead of parsing everything