I am not able to see the link.
Asked
Active
Viewed 201 times
0

torek
- 448,244
- 59
- 642
- 775

Dhananjay Tawar
- 35
- 1
- 7
-
Does this answer your question? [GitHub relative link in Markdown file](https://stackoverflow.com/questions/7653483/github-relative-link-in-markdown-file) – Markus Meyer Jun 21 '22 at 17:44
-
remove the space in the link or use `` – rioV8 Jun 21 '22 at 17:45
1 Answers
1
This isn't specific to VSCode. Spaces may not appear in URLs, so your markdown is interpreted as literal characters, not the a link.
You need to encode the space as a +
or %20
:
[here](Day+1/day1.md)
[here](Day%201/day1.md)

user229044
- 232,980
- 40
- 330
- 338