Link not recognized for folder names with spaces

In the example below, since the folder name has a space, the Obsidian preview does not recognize it as a valid link.

[Software Development](Software Development/Software_Development.md)

yes that is right.
you should use %20 in place of the whitespace or angle brackets.

[Software Development](Software%20Development/Software_Development.md)

[Software Development](<Software Development/Software_Development.md>)

1 Like

I understand but would consider accepting it (Typora for instance does accept it). You maintain readability of the .md text file.

This is something that’s not in the markdown spec. We try to stick with the spec whenever possible.

Use angle brackets for readability.

1 Like

The angle brackets does it! Thanks