In Markdown is there a simple way to create a link to a file within the same repo?
That is, other than giving the full URL to the file.
In Markdown is there a simple way to create a link to a file within the same repo?
That is, other than giving the full URL to the file.
You can use relative URLs, e.g. if you have two files:
README.md
abc/test.md
In README.md
you could create a link like this:
Check my [test document](./abc/test.md)!
Thanks! That worked! (Well, I guess you knew it worked, but it was news to me, because it’s not strictly the URL, which includes the branch name and “blob”.)